interface CfnSigningProfileProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Signer.CfnSigningProfileProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssigner#CfnSigningProfileProps |
Java | software.amazon.awscdk.services.signer.CfnSigningProfileProps |
Python | aws_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
profileName: 'profileName',
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. |
| profile | string | The name of the signing profile. |
| signature | IResolvable | Signature | 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.
profileName?
Type:
string
(optional)
The name of the signing profile.
signatureValidityPeriod?
Type:
IResolvable | Signature
(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
Go
Java
Python
TypeScript