aws-cdk-lib.aws_signer.CfnSigningProfileProps

interface CfnSigningProfileProps

LanguageType name
.NETAmazon.CDK.AWS.Signer.CfnSigningProfileProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awssigner#CfnSigningProfileProps
Javasoftware.amazon.awscdk.services.signer.CfnSigningProfileProps
Pythonaws_cdk.aws_signer.CfnSigningProfileProps
TypeScript aws-cdk-lib » aws_signer » CfnSigningProfileProps

Properties for defining a CfnSigningProfile.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_signer as signer } from 'aws-cdk-lib';
const cfnSigningProfileProps: signer.CfnSigningProfileProps = {
  platformId: 'platformId',

  // the properties below are optional
  signatureValidityPeriod: {
    type: 'type',
    value: 123,
  },
  tags: [{
    key: 'key',
    value: 'value',
  }],
};

Properties

NameTypeDescription
platformIdstringThe ID of a platform that is available for use by a signing profile.
signatureValidityPeriod?IResolvable | SignatureValidityPeriodPropertyThe validity period override for any signature generated using this signing profile.
tags?CfnTag[]A list of tags associated with the signing profile.

platformId

Type: string

The ID of a platform that is available for use by a signing profile.


signatureValidityPeriod?

Type: IResolvable | SignatureValidityPeriodProperty (optional)

The validity period override for any signature generated using this signing profile.

If unspecified, the default is 135 months.


tags?

Type: CfnTag[] (optional)

A list of tags associated with the signing profile.