interface CfnSigningProfileProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Signer.CfnSigningProfileProps |
Java | software.amazon.awscdk.services.signer.CfnSigningProfileProps |
Python | aws_cdk.aws_signer.CfnSigningProfileProps |
TypeScript | @aws-cdk/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 * as signer from '@aws-cdk/aws-signer';
const cfnSigningProfileProps: signer.CfnSigningProfileProps = {
platformId: 'platformId',
// the properties below are optional
signatureValidityPeriod: {
type: 'type',
value: 123,
},
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| platform | string | The ID of a platform that is available for use by a signing profile. |
| signature | Signature | IResolvable | The validity period override for any signature generated using this signing profile. |
| tags? | Cfn[] | 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:
Signature | IResolvable
(optional)
The validity period override for any signature generated using this signing profile.
If unspecified, the default is 135 months.
tags?
Type:
Cfn[]
(optional)
A list of tags associated with the signing profile.

.NET
Java
Python
TypeScript