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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTrustAnchor.SourcePropertystatic final classAn implementation forCfnTrustAnchor.SourceProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()A union object representing the data field of the TrustAnchor depending on its type.The type of the TrustAnchor.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.Returns union: either
IResolvableorCfnTrustAnchor.SourceDataProperty- See Also:
-
getSourceType
The type of the TrustAnchor.- See Also:
-
builder
-