1. Packages
  2. AWS Classic
  3. API Docs
  4. signer
  5. SigningProfile

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.31.0 published on Monday, Apr 15, 2024 by Pulumi

aws.signer.SigningProfile

Explore with Pulumi AI

aws logo

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.31.0 published on Monday, Apr 15, 2024 by Pulumi

    Creates a Signer Signing Profile. A signing profile contains information about the code signing configuration parameters that can be used by a given code signing user.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const testSp = new aws.signer.SigningProfile("test_sp", {platformId: "AWSLambda-SHA384-ECDSA"});
    const prodSp = new aws.signer.SigningProfile("prod_sp", {
        platformId: "AWSLambda-SHA384-ECDSA",
        namePrefix: "prod_sp_",
        signatureValidityPeriod: {
            value: 5,
            type: "YEARS",
        },
        tags: {
            tag1: "value1",
            tag2: "value2",
        },
    });
    
    import pulumi
    import pulumi_aws as aws
    
    test_sp = aws.signer.SigningProfile("test_sp", platform_id="AWSLambda-SHA384-ECDSA")
    prod_sp = aws.signer.SigningProfile("prod_sp",
        platform_id="AWSLambda-SHA384-ECDSA",
        name_prefix="prod_sp_",
        signature_validity_period=aws.signer.SigningProfileSignatureValidityPeriodArgs(
            value=5,
            type="YEARS",
        ),
        tags={
            "tag1": "value1",
            "tag2": "value2",
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/signer"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := signer.NewSigningProfile(ctx, "test_sp", &signer.SigningProfileArgs{
    			PlatformId: pulumi.String("AWSLambda-SHA384-ECDSA"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = signer.NewSigningProfile(ctx, "prod_sp", &signer.SigningProfileArgs{
    			PlatformId: pulumi.String("AWSLambda-SHA384-ECDSA"),
    			NamePrefix: pulumi.String("prod_sp_"),
    			SignatureValidityPeriod: &signer.SigningProfileSignatureValidityPeriodArgs{
    				Value: pulumi.Int(5),
    				Type:  pulumi.String("YEARS"),
    			},
    			Tags: pulumi.StringMap{
    				"tag1": pulumi.String("value1"),
    				"tag2": pulumi.String("value2"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var testSp = new Aws.Signer.SigningProfile("test_sp", new()
        {
            PlatformId = "AWSLambda-SHA384-ECDSA",
        });
    
        var prodSp = new Aws.Signer.SigningProfile("prod_sp", new()
        {
            PlatformId = "AWSLambda-SHA384-ECDSA",
            NamePrefix = "prod_sp_",
            SignatureValidityPeriod = new Aws.Signer.Inputs.SigningProfileSignatureValidityPeriodArgs
            {
                Value = 5,
                Type = "YEARS",
            },
            Tags = 
            {
                { "tag1", "value1" },
                { "tag2", "value2" },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.signer.SigningProfile;
    import com.pulumi.aws.signer.SigningProfileArgs;
    import com.pulumi.aws.signer.inputs.SigningProfileSignatureValidityPeriodArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var testSp = new SigningProfile("testSp", SigningProfileArgs.builder()        
                .platformId("AWSLambda-SHA384-ECDSA")
                .build());
    
            var prodSp = new SigningProfile("prodSp", SigningProfileArgs.builder()        
                .platformId("AWSLambda-SHA384-ECDSA")
                .namePrefix("prod_sp_")
                .signatureValidityPeriod(SigningProfileSignatureValidityPeriodArgs.builder()
                    .value(5)
                    .type("YEARS")
                    .build())
                .tags(Map.ofEntries(
                    Map.entry("tag1", "value1"),
                    Map.entry("tag2", "value2")
                ))
                .build());
    
        }
    }
    
    resources:
      testSp:
        type: aws:signer:SigningProfile
        name: test_sp
        properties:
          platformId: AWSLambda-SHA384-ECDSA
      prodSp:
        type: aws:signer:SigningProfile
        name: prod_sp
        properties:
          platformId: AWSLambda-SHA384-ECDSA
          namePrefix: prod_sp_
          signatureValidityPeriod:
            value: 5
            type: YEARS
          tags:
            tag1: value1
            tag2: value2
    

    Create SigningProfile Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new SigningProfile(name: string, args: SigningProfileArgs, opts?: CustomResourceOptions);
    @overload
    def SigningProfile(resource_name: str,
                       args: SigningProfileArgs,
                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def SigningProfile(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       platform_id: Optional[str] = None,
                       name: Optional[str] = None,
                       name_prefix: Optional[str] = None,
                       signature_validity_period: Optional[SigningProfileSignatureValidityPeriodArgs] = None,
                       signing_material: Optional[SigningProfileSigningMaterialArgs] = None,
                       tags: Optional[Mapping[str, str]] = None)
    func NewSigningProfile(ctx *Context, name string, args SigningProfileArgs, opts ...ResourceOption) (*SigningProfile, error)
    public SigningProfile(string name, SigningProfileArgs args, CustomResourceOptions? opts = null)
    public SigningProfile(String name, SigningProfileArgs args)
    public SigningProfile(String name, SigningProfileArgs args, CustomResourceOptions options)
    
    type: aws:signer:SigningProfile
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args SigningProfileArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args SigningProfileArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args SigningProfileArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SigningProfileArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SigningProfileArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var signingProfileResource = new Aws.Signer.SigningProfile("signingProfileResource", new()
    {
        PlatformId = "string",
        Name = "string",
        NamePrefix = "string",
        SignatureValidityPeriod = new Aws.Signer.Inputs.SigningProfileSignatureValidityPeriodArgs
        {
            Type = "string",
            Value = 0,
        },
        SigningMaterial = new Aws.Signer.Inputs.SigningProfileSigningMaterialArgs
        {
            CertificateArn = "string",
        },
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := signer.NewSigningProfile(ctx, "signingProfileResource", &signer.SigningProfileArgs{
    	PlatformId: pulumi.String("string"),
    	Name:       pulumi.String("string"),
    	NamePrefix: pulumi.String("string"),
    	SignatureValidityPeriod: &signer.SigningProfileSignatureValidityPeriodArgs{
    		Type:  pulumi.String("string"),
    		Value: pulumi.Int(0),
    	},
    	SigningMaterial: &signer.SigningProfileSigningMaterialArgs{
    		CertificateArn: pulumi.String("string"),
    	},
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var signingProfileResource = new SigningProfile("signingProfileResource", SigningProfileArgs.builder()        
        .platformId("string")
        .name("string")
        .namePrefix("string")
        .signatureValidityPeriod(SigningProfileSignatureValidityPeriodArgs.builder()
            .type("string")
            .value(0)
            .build())
        .signingMaterial(SigningProfileSigningMaterialArgs.builder()
            .certificateArn("string")
            .build())
        .tags(Map.of("string", "string"))
        .build());
    
    signing_profile_resource = aws.signer.SigningProfile("signingProfileResource",
        platform_id="string",
        name="string",
        name_prefix="string",
        signature_validity_period=aws.signer.SigningProfileSignatureValidityPeriodArgs(
            type="string",
            value=0,
        ),
        signing_material=aws.signer.SigningProfileSigningMaterialArgs(
            certificate_arn="string",
        ),
        tags={
            "string": "string",
        })
    
    const signingProfileResource = new aws.signer.SigningProfile("signingProfileResource", {
        platformId: "string",
        name: "string",
        namePrefix: "string",
        signatureValidityPeriod: {
            type: "string",
            value: 0,
        },
        signingMaterial: {
            certificateArn: "string",
        },
        tags: {
            string: "string",
        },
    });
    
    type: aws:signer:SigningProfile
    properties:
        name: string
        namePrefix: string
        platformId: string
        signatureValidityPeriod:
            type: string
            value: 0
        signingMaterial:
            certificateArn: string
        tags:
            string: string
    

    SigningProfile Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The SigningProfile resource accepts the following input properties:

    PlatformId string
    The ID of the platform that is used by the target signing profile.
    Name string
    A unique signing profile name. By default generated by the provider. Signing profile names are immutable and cannot be reused after canceled.
    NamePrefix string
    A signing profile name prefix. The provider will generate a unique suffix. Conflicts with name.
    SignatureValidityPeriod SigningProfileSignatureValidityPeriod
    The validity period for a signing job.
    SigningMaterial SigningProfileSigningMaterial
    Tags Dictionary<string, string>
    A list of tags associated with the signing profile. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    PlatformId string
    The ID of the platform that is used by the target signing profile.
    Name string
    A unique signing profile name. By default generated by the provider. Signing profile names are immutable and cannot be reused after canceled.
    NamePrefix string
    A signing profile name prefix. The provider will generate a unique suffix. Conflicts with name.
    SignatureValidityPeriod SigningProfileSignatureValidityPeriodArgs
    The validity period for a signing job.
    SigningMaterial SigningProfileSigningMaterialArgs
    Tags map[string]string
    A list of tags associated with the signing profile. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    platformId String
    The ID of the platform that is used by the target signing profile.
    name String
    A unique signing profile name. By default generated by the provider. Signing profile names are immutable and cannot be reused after canceled.
    namePrefix String
    A signing profile name prefix. The provider will generate a unique suffix. Conflicts with name.
    signatureValidityPeriod SigningProfileSignatureValidityPeriod
    The validity period for a signing job.
    signingMaterial SigningProfileSigningMaterial
    tags Map<String,String>
    A list of tags associated with the signing profile. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    platformId string
    The ID of the platform that is used by the target signing profile.
    name string
    A unique signing profile name. By default generated by the provider. Signing profile names are immutable and cannot be reused after canceled.
    namePrefix string
    A signing profile name prefix. The provider will generate a unique suffix. Conflicts with name.
    signatureValidityPeriod SigningProfileSignatureValidityPeriod
    The validity period for a signing job.
    signingMaterial SigningProfileSigningMaterial
    tags {[key: string]: string}
    A list of tags associated with the signing profile. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    platform_id str
    The ID of the platform that is used by the target signing profile.
    name str
    A unique signing profile name. By default generated by the provider. Signing profile names are immutable and cannot be reused after canceled.
    name_prefix str
    A signing profile name prefix. The provider will generate a unique suffix. Conflicts with name.
    signature_validity_period SigningProfileSignatureValidityPeriodArgs
    The validity period for a signing job.
    signing_material SigningProfileSigningMaterialArgs
    tags Mapping[str, str]
    A list of tags associated with the signing profile. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    platformId String
    The ID of the platform that is used by the target signing profile.
    name String
    A unique signing profile name. By default generated by the provider. Signing profile names are immutable and cannot be reused after canceled.
    namePrefix String
    A signing profile name prefix. The provider will generate a unique suffix. Conflicts with name.
    signatureValidityPeriod Property Map
    The validity period for a signing job.
    signingMaterial Property Map
    tags Map<String>
    A list of tags associated with the signing profile. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the SigningProfile resource produces the following output properties:

    Arn string
    The Amazon Resource Name (ARN) for the signing profile.
    Id string
    The provider-assigned unique ID for this managed resource.
    PlatformDisplayName string
    A human-readable name for the signing platform associated with the signing profile.
    RevocationRecords List<SigningProfileRevocationRecord>
    Revocation information for a signing profile.
    Status string
    The status of the target signing profile.
    TagsAll Dictionary<string, string>
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    Version string
    The current version of the signing profile.
    VersionArn string
    The signing profile ARN, including the profile version.
    Arn string
    The Amazon Resource Name (ARN) for the signing profile.
    Id string
    The provider-assigned unique ID for this managed resource.
    PlatformDisplayName string
    A human-readable name for the signing platform associated with the signing profile.
    RevocationRecords []SigningProfileRevocationRecord
    Revocation information for a signing profile.
    Status string
    The status of the target signing profile.
    TagsAll map[string]string
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    Version string
    The current version of the signing profile.
    VersionArn string
    The signing profile ARN, including the profile version.
    arn String
    The Amazon Resource Name (ARN) for the signing profile.
    id String
    The provider-assigned unique ID for this managed resource.
    platformDisplayName String
    A human-readable name for the signing platform associated with the signing profile.
    revocationRecords List<SigningProfileRevocationRecord>
    Revocation information for a signing profile.
    status String
    The status of the target signing profile.
    tagsAll Map<String,String>
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    version String
    The current version of the signing profile.
    versionArn String
    The signing profile ARN, including the profile version.
    arn string
    The Amazon Resource Name (ARN) for the signing profile.
    id string
    The provider-assigned unique ID for this managed resource.
    platformDisplayName string
    A human-readable name for the signing platform associated with the signing profile.
    revocationRecords SigningProfileRevocationRecord[]
    Revocation information for a signing profile.
    status string
    The status of the target signing profile.
    tagsAll {[key: string]: string}
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    version string
    The current version of the signing profile.
    versionArn string
    The signing profile ARN, including the profile version.
    arn str
    The Amazon Resource Name (ARN) for the signing profile.
    id str
    The provider-assigned unique ID for this managed resource.
    platform_display_name str
    A human-readable name for the signing platform associated with the signing profile.
    revocation_records Sequence[SigningProfileRevocationRecord]
    Revocation information for a signing profile.
    status str
    The status of the target signing profile.
    tags_all Mapping[str, str]
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    version str
    The current version of the signing profile.
    version_arn str
    The signing profile ARN, including the profile version.
    arn String
    The Amazon Resource Name (ARN) for the signing profile.
    id String
    The provider-assigned unique ID for this managed resource.
    platformDisplayName String
    A human-readable name for the signing platform associated with the signing profile.
    revocationRecords List<Property Map>
    Revocation information for a signing profile.
    status String
    The status of the target signing profile.
    tagsAll Map<String>
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    version String
    The current version of the signing profile.
    versionArn String
    The signing profile ARN, including the profile version.

    Look up Existing SigningProfile Resource

    Get an existing SigningProfile resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: SigningProfileState, opts?: CustomResourceOptions): SigningProfile
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            arn: Optional[str] = None,
            name: Optional[str] = None,
            name_prefix: Optional[str] = None,
            platform_display_name: Optional[str] = None,
            platform_id: Optional[str] = None,
            revocation_records: Optional[Sequence[SigningProfileRevocationRecordArgs]] = None,
            signature_validity_period: Optional[SigningProfileSignatureValidityPeriodArgs] = None,
            signing_material: Optional[SigningProfileSigningMaterialArgs] = None,
            status: Optional[str] = None,
            tags: Optional[Mapping[str, str]] = None,
            tags_all: Optional[Mapping[str, str]] = None,
            version: Optional[str] = None,
            version_arn: Optional[str] = None) -> SigningProfile
    func GetSigningProfile(ctx *Context, name string, id IDInput, state *SigningProfileState, opts ...ResourceOption) (*SigningProfile, error)
    public static SigningProfile Get(string name, Input<string> id, SigningProfileState? state, CustomResourceOptions? opts = null)
    public static SigningProfile get(String name, Output<String> id, SigningProfileState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Arn string
    The Amazon Resource Name (ARN) for the signing profile.
    Name string
    A unique signing profile name. By default generated by the provider. Signing profile names are immutable and cannot be reused after canceled.
    NamePrefix string
    A signing profile name prefix. The provider will generate a unique suffix. Conflicts with name.
    PlatformDisplayName string
    A human-readable name for the signing platform associated with the signing profile.
    PlatformId string
    The ID of the platform that is used by the target signing profile.
    RevocationRecords List<SigningProfileRevocationRecord>
    Revocation information for a signing profile.
    SignatureValidityPeriod SigningProfileSignatureValidityPeriod
    The validity period for a signing job.
    SigningMaterial SigningProfileSigningMaterial
    Status string
    The status of the target signing profile.
    Tags Dictionary<string, string>
    A list of tags associated with the signing profile. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    TagsAll Dictionary<string, string>
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    Version string
    The current version of the signing profile.
    VersionArn string
    The signing profile ARN, including the profile version.
    Arn string
    The Amazon Resource Name (ARN) for the signing profile.
    Name string
    A unique signing profile name. By default generated by the provider. Signing profile names are immutable and cannot be reused after canceled.
    NamePrefix string
    A signing profile name prefix. The provider will generate a unique suffix. Conflicts with name.
    PlatformDisplayName string
    A human-readable name for the signing platform associated with the signing profile.
    PlatformId string
    The ID of the platform that is used by the target signing profile.
    RevocationRecords []SigningProfileRevocationRecordArgs
    Revocation information for a signing profile.
    SignatureValidityPeriod SigningProfileSignatureValidityPeriodArgs
    The validity period for a signing job.
    SigningMaterial SigningProfileSigningMaterialArgs
    Status string
    The status of the target signing profile.
    Tags map[string]string
    A list of tags associated with the signing profile. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    TagsAll map[string]string
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    Version string
    The current version of the signing profile.
    VersionArn string
    The signing profile ARN, including the profile version.
    arn String
    The Amazon Resource Name (ARN) for the signing profile.
    name String
    A unique signing profile name. By default generated by the provider. Signing profile names are immutable and cannot be reused after canceled.
    namePrefix String
    A signing profile name prefix. The provider will generate a unique suffix. Conflicts with name.
    platformDisplayName String
    A human-readable name for the signing platform associated with the signing profile.
    platformId String
    The ID of the platform that is used by the target signing profile.
    revocationRecords List<SigningProfileRevocationRecord>
    Revocation information for a signing profile.
    signatureValidityPeriod SigningProfileSignatureValidityPeriod
    The validity period for a signing job.
    signingMaterial SigningProfileSigningMaterial
    status String
    The status of the target signing profile.
    tags Map<String,String>
    A list of tags associated with the signing profile. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tagsAll Map<String,String>
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    version String
    The current version of the signing profile.
    versionArn String
    The signing profile ARN, including the profile version.
    arn string
    The Amazon Resource Name (ARN) for the signing profile.
    name string
    A unique signing profile name. By default generated by the provider. Signing profile names are immutable and cannot be reused after canceled.
    namePrefix string
    A signing profile name prefix. The provider will generate a unique suffix. Conflicts with name.
    platformDisplayName string
    A human-readable name for the signing platform associated with the signing profile.
    platformId string
    The ID of the platform that is used by the target signing profile.
    revocationRecords SigningProfileRevocationRecord[]
    Revocation information for a signing profile.
    signatureValidityPeriod SigningProfileSignatureValidityPeriod
    The validity period for a signing job.
    signingMaterial SigningProfileSigningMaterial
    status string
    The status of the target signing profile.
    tags {[key: string]: string}
    A list of tags associated with the signing profile. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tagsAll {[key: string]: string}
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    version string
    The current version of the signing profile.
    versionArn string
    The signing profile ARN, including the profile version.
    arn str
    The Amazon Resource Name (ARN) for the signing profile.
    name str
    A unique signing profile name. By default generated by the provider. Signing profile names are immutable and cannot be reused after canceled.
    name_prefix str
    A signing profile name prefix. The provider will generate a unique suffix. Conflicts with name.
    platform_display_name str
    A human-readable name for the signing platform associated with the signing profile.
    platform_id str
    The ID of the platform that is used by the target signing profile.
    revocation_records Sequence[SigningProfileRevocationRecordArgs]
    Revocation information for a signing profile.
    signature_validity_period SigningProfileSignatureValidityPeriodArgs
    The validity period for a signing job.
    signing_material SigningProfileSigningMaterialArgs
    status str
    The status of the target signing profile.
    tags Mapping[str, str]
    A list of tags associated with the signing profile. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tags_all Mapping[str, str]
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    version str
    The current version of the signing profile.
    version_arn str
    The signing profile ARN, including the profile version.
    arn String
    The Amazon Resource Name (ARN) for the signing profile.
    name String
    A unique signing profile name. By default generated by the provider. Signing profile names are immutable and cannot be reused after canceled.
    namePrefix String
    A signing profile name prefix. The provider will generate a unique suffix. Conflicts with name.
    platformDisplayName String
    A human-readable name for the signing platform associated with the signing profile.
    platformId String
    The ID of the platform that is used by the target signing profile.
    revocationRecords List<Property Map>
    Revocation information for a signing profile.
    signatureValidityPeriod Property Map
    The validity period for a signing job.
    signingMaterial Property Map
    status String
    The status of the target signing profile.
    tags Map<String>
    A list of tags associated with the signing profile. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tagsAll Map<String>
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    version String
    The current version of the signing profile.
    versionArn String
    The signing profile ARN, including the profile version.

    Supporting Types

    SigningProfileRevocationRecord, SigningProfileRevocationRecordArgs

    SigningProfileSignatureValidityPeriod, SigningProfileSignatureValidityPeriodArgs

    Type string
    Value int
    Type string
    Value int
    type String
    value Integer
    type string
    value number
    type str
    value int
    type String
    value Number

    SigningProfileSigningMaterial, SigningProfileSigningMaterialArgs

    Import

    Using pulumi import, import Signer signing profiles using the name. For example:

    $ pulumi import aws:signer/signingProfile:SigningProfile test_signer_signing_profile test_sp_DdW3Mk1foYL88fajut4mTVFGpuwfd4ACO6ANL0D1uIj7lrn8adK
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    AWS Classic pulumi/pulumi-aws
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the aws Terraform Provider.
    aws logo

    Try AWS Native preview for resources not in the classic version.

    AWS Classic v6.31.0 published on Monday, Apr 15, 2024 by Pulumi