CfnSigningProfileMixinProps
- class aws_cdk.mixins_preview.aws_signer.mixins.CfnSigningProfileMixinProps(*, platform_id=None, profile_name=None, signature_validity_period=None, tags=None)
Bases:
objectProperties for CfnSigningProfilePropsMixin.
- Parameters:
platform_id (
Optional[str]) – The ID of a platform that is available for use by a signing profile.profile_name (
Optional[str]) – The name of the signing profile.signature_validity_period (
Union[IResolvable,SignatureValidityPeriodProperty,Dict[str,Any],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.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_signer import mixins as signer_mixins cfn_signing_profile_mixin_props = signer_mixins.CfnSigningProfileMixinProps( platform_id="platformId", profile_name="profileName", signature_validity_period=signer_mixins.CfnSigningProfilePropsMixin.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.
- profile_name
The name of the 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.