Interface CfnTrustAnchor.SourceProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTrustAnchor.SourceProperty.Jsii$Proxy
- Enclosing class:
CfnTrustAnchor
@Stability(Stable)
public static interface CfnTrustAnchor.SourceProperty
extends software.amazon.jsii.JsiiSerializable
Object representing the TrustAnchor type and its related certificate data.
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.*; SourceProperty sourceProperty = SourceProperty.builder() .sourceData(SourceDataProperty.builder() .acmPcaArn("acmPcaArn") .x509CertificateData("x509CertificateData") .build()) .sourceType("sourceType") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnTrustAnchor.SourceProperty
static final class
An implementation forCfnTrustAnchor.SourceProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSourceData
A union object representing the data field of the TrustAnchor depending on its type. -
getSourceType
The type of the TrustAnchor. -
builder
-