@Generated(value="jsii-pacmak/1.71.0 (build f1f58ae)", date="2022-12-07T17:24:37.871Z") @Stability(value=Stable) public interface CfnTrustAnchorProps 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.rolesanywhere.*;
CfnTrustAnchorProps cfnTrustAnchorProps = CfnTrustAnchorProps.builder()
.enabled(false)
.name("name")
.source(SourceProperty.builder()
.sourceData(SourceDataProperty.builder()
.acmPcaArn("acmPcaArn")
.x509CertificateData("x509CertificateData")
.build())
.sourceType("sourceType")
.build())
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnTrustAnchorProps.Builder
A builder for
CfnTrustAnchorProps |
static class |
CfnTrustAnchorProps.Jsii$Proxy
An implementation for
CfnTrustAnchorProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnTrustAnchorProps.Builder |
builder() |
default Object |
getEnabled()
Indicates whether the trust anchor is enabled.
|
default String |
getName()
The name of the trust anchor.
|
default Object |
getSource()
The trust anchor type and its related certificate data.
|
default List<CfnTag> |
getTags()
A list of tags to attach to the trust anchor.
|
@Stability(value=Stable) @Nullable default Object getEnabled()
@Stability(value=Stable) @Nullable default String getName()
@Stability(value=Stable) @Nullable default Object getSource()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) static CfnTrustAnchorProps.Builder builder()
CfnTrustAnchorProps.Builder of CfnTrustAnchorPropsCopyright © 2022. All rights reserved.