@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:42.229Z") @Stability(value=Stable) public interface CfnSigningProfileProps extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.signer.*;
CfnSigningProfileProps cfnSigningProfileProps = CfnSigningProfileProps.builder()
.platformId("platformId")
// the properties below are optional
.signatureValidityPeriod(SignatureValidityPeriodProperty.builder()
.type("type")
.value(123)
.build())
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnSigningProfileProps.Builder
A builder for
CfnSigningProfileProps |
static class |
CfnSigningProfileProps.Jsii$Proxy
An implementation for
CfnSigningProfileProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnSigningProfileProps.Builder |
builder() |
String |
getPlatformId()
The ID of a platform that is available for use by a signing profile.
|
default Object |
getSignatureValidityPeriod()
The validity period override for any signature generated using this signing profile.
|
default List<CfnTag> |
getTags()
A list of tags associated with the signing profile.
|
@Stability(value=Stable) @NotNull String getPlatformId()
@Stability(value=Stable) @Nullable default Object getSignatureValidityPeriod()
If unspecified, the default is 135 months.
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) static CfnSigningProfileProps.Builder builder()
CfnSigningProfileProps.Builder of CfnSigningProfilePropsCopyright © 2022. All rights reserved.