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
The trust anchor 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
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSourceData
The data field of the trust anchor depending on its type.- See Also:
-
getSourceType
The type of the TrustAnchor.AWS_ACM_PCAis not an allowed value in your region.- See Also:
-
builder
-