Interface CfnSigningProfileMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSigningProfileMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:05.609Z")
@Stability(Stable)
public interface CfnSigningProfileMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnSigningProfilePropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.signer.*;
CfnSigningProfileMixinProps cfnSigningProfileMixinProps = CfnSigningProfileMixinProps.builder()
.platformId("platformId")
.profileName("profileName")
.signatureValidityPeriod(SignatureValidityPeriodProperty.builder()
.type("type")
.value(123)
.build())
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnSigningProfileMixinPropsstatic final classAn implementation forCfnSigningProfileMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe ID of a platform that is available for use by a signing profile.default StringThe name of the signing profile.default ObjectThe validity period override for any signature generated using this signing profile.getTags()A list of tags associated with the signing profile.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getPlatformId
The ID of a platform that is available for use by a signing profile.- See Also:
-
getProfileName
The name of the signing profile.- See Also:
-
getSignatureValidityPeriod
The validity period override for any signature generated using this signing profile.If unspecified, the default is 135 months.
Returns union: either
IResolvableorCfnSigningProfilePropsMixin.SignatureValidityPeriodProperty- See Also:
-
getTags
A list of tags associated with the signing profile.- See Also:
-
builder
-