1. Packages
  2. Packages
  3. AWS
  4. API Docs
  5. signer
  6. SigningProfile
Viewing docs for AWS v5.43.0 (Older version)
published on Tuesday, Mar 10, 2026 by Pulumi
aws logo
Viewing docs for AWS v5.43.0 (Older version)
published on Tuesday, Mar 10, 2026 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

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var testSp = new Aws.Signer.SigningProfile("testSp", new()
        {
            PlatformId = "AWSLambda-SHA384-ECDSA",
        });
    
        var prodSp = new Aws.Signer.SigningProfile("prodSp", new()
        {
            NamePrefix = "prod_sp_",
            PlatformId = "AWSLambda-SHA384-ECDSA",
            SignatureValidityPeriod = new Aws.Signer.Inputs.SigningProfileSignatureValidityPeriodArgs
            {
                Type = "YEARS",
                Value = 5,
            },
            Tags = 
            {
                { "tag1", "value1" },
                { "tag2", "value2" },
            },
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v5/go/aws/signer"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := signer.NewSigningProfile(ctx, "testSp", &signer.SigningProfileArgs{
    			PlatformId: pulumi.String("AWSLambda-SHA384-ECDSA"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = signer.NewSigningProfile(ctx, "prodSp", &signer.SigningProfileArgs{
    			NamePrefix: pulumi.String("prod_sp_"),
    			PlatformId: pulumi.String("AWSLambda-SHA384-ECDSA"),
    			SignatureValidityPeriod: &signer.SigningProfileSignatureValidityPeriodArgs{
    				Type:  pulumi.String("YEARS"),
    				Value: pulumi.Int(5),
    			},
    			Tags: pulumi.StringMap{
    				"tag1": pulumi.String("value1"),
    				"tag2": pulumi.String("value2"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    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()        
                .namePrefix("prod_sp_")
                .platformId("AWSLambda-SHA384-ECDSA")
                .signatureValidityPeriod(SigningProfileSignatureValidityPeriodArgs.builder()
                    .type("YEARS")
                    .value(5)
                    .build())
                .tags(Map.ofEntries(
                    Map.entry("tag1", "value1"),
                    Map.entry("tag2", "value2")
                ))
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const testSp = new aws.signer.SigningProfile("testSp", {platformId: "AWSLambda-SHA384-ECDSA"});
    const prodSp = new aws.signer.SigningProfile("prodSp", {
        namePrefix: "prod_sp_",
        platformId: "AWSLambda-SHA384-ECDSA",
        signatureValidityPeriod: {
            type: "YEARS",
            value: 5,
        },
        tags: {
            tag1: "value1",
            tag2: "value2",
        },
    });
    
    import pulumi
    import pulumi_aws as aws
    
    test_sp = aws.signer.SigningProfile("testSp", platform_id="AWSLambda-SHA384-ECDSA")
    prod_sp = aws.signer.SigningProfile("prodSp",
        name_prefix="prod_sp_",
        platform_id="AWSLambda-SHA384-ECDSA",
        signature_validity_period=aws.signer.SigningProfileSignatureValidityPeriodArgs(
            type="YEARS",
            value=5,
        ),
        tags={
            "tag1": "value1",
            "tag2": "value2",
        })
    
    resources:
      testSp:
        type: aws:signer:SigningProfile
        properties:
          platformId: AWSLambda-SHA384-ECDSA
      prodSp:
        type: aws:signer:SigningProfile
        properties:
          namePrefix: prod_sp_
          platformId: AWSLambda-SHA384-ECDSA
          signatureValidityPeriod:
            type: YEARS
            value: 5
          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,
                       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.

    Constructor 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,
        },
        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),
    	},
    	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())
        .tags(Map.of("string", "string"))
        .build());
    
    signing_profile_resource = aws.signer.SigningProfile("signingProfileResource",
        platform_id="string",
        name="string",
        name_prefix="string",
        signature_validity_period={
            "type": "string",
            "value": 0,
        },
        tags={
            "string": "string",
        })
    
    const signingProfileResource = new aws.signer.SigningProfile("signingProfileResource", {
        platformId: "string",
        name: "string",
        namePrefix: "string",
        signatureValidityPeriod: {
            type: "string",
            value: 0,
        },
        tags: {
            string: "string",
        },
    });
    
    type: aws:signer:SigningProfile
    properties:
        name: string
        namePrefix: string
        platformId: string
        signatureValidityPeriod:
            type: string
            value: 0
        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

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    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.
    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.
    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.
    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.
    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.
    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.
    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.
    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.
    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.
    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.
    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.
    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.
    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,
            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)
    resources:  _:    type: aws:signer:SigningProfile    get:      id: ${id}
    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.
    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.
    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.
    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.
    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.
    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.
    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.
    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.
    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.
    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.
    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.
    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.
    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

    Import

    Signer signing profiles can be imported using the name, e.g.,

     $ 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
    Viewing docs for AWS v5.43.0 (Older version)
    published on Tuesday, Mar 10, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial