CfnSigningProfileProps
- class aws_cdk.aws_signer.CfnSigningProfileProps(*, platform_id, signature_validity_period=None, tags=None)
Bases:
object
Properties for defining a
CfnSigningProfile
.- Parameters:
platform_id (
str
) – The ID of a platform that is available for use by a signing profile.signature_validity_period (
Union
[SignatureValidityPeriodProperty
,Dict
[str
,Any
],IResolvable
,None
]) – The validity period override for any signature generated using this signing profile. If unspecified, the default is 135 months.tags (
Optional
[Sequence
[Union
[CfnTag
,Dict
[str
,Any
]]]]) – A list of tags associated with the signing profile.
- Link:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_signer as signer cfn_signing_profile_props = signer.CfnSigningProfileProps( platform_id="platformId", # the properties below are optional signature_validity_period=signer.CfnSigningProfile.SignatureValidityPeriodProperty( type="type", value=123 ), tags=[CfnTag( key="key", value="value" )] )
Attributes
- platform_id
The ID of a platform that is available for use by a signing profile.
- signature_validity_period
The validity period override for any signature generated using this signing profile.
If unspecified, the default is 135 months.
- tags
A list of tags associated with the signing profile.