interface SignatureValidityPeriodProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Signer.CfnSigningProfilePropsMixin.SignatureValidityPeriodProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssigner#CfnSigningProfilePropsMixin_SignatureValidityPeriodProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.signer.CfnSigningProfilePropsMixin.SignatureValidityPeriodProperty |
Python | aws_cdk.cfn_property_mixins.aws_signer.CfnSigningProfilePropsMixin.SignatureValidityPeriodProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_signer » CfnSigningProfilePropsMixin » SignatureValidityPeriodProperty |
The validity period for the signing job.
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/cfn-property-mixins';
const signatureValidityPeriodProperty: signer.CfnSigningProfilePropsMixin.SignatureValidityPeriodProperty = {
type: 'type',
value: 123,
};
Properties
| Name | Type | Description | ||
|---|---|---|---|---|
| type? | string | The time unit for signature validity: DAYS | MONTHS | YEARS. |
| value? | number | The numerical value of the time unit for signature validity. |
type?
Type:
string
(optional)
The time unit for signature validity: DAYS | MONTHS | YEARS.
value?
Type:
number
(optional)
The numerical value of the time unit for signature validity.

.NET
Go
Java
Python
TypeScript