Interface CfnTrustAnchor.SourceDataProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTrustAnchor.SourceDataProperty.Jsii$Proxy
- Enclosing class:
CfnTrustAnchor
@Stability(Stable)
public static interface CfnTrustAnchor.SourceDataProperty
extends software.amazon.jsii.JsiiSerializable
A union object representing the data field of the TrustAnchor depending on its type.
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.*;
SourceDataProperty sourceDataProperty = SourceDataProperty.builder()
.acmPcaArn("acmPcaArn")
.x509CertificateData("x509CertificateData")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTrustAnchor.SourceDataPropertystatic final classAn implementation forCfnTrustAnchor.SourceDataProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAcmPcaArn
The root certificate of the AWS Private Certificate Authority specified by this ARN is used in trust validation for temporary credential requests.Included for trust anchors of type
AWS_ACM_PCA.This field is not supported in your region.
- See Also:
-
getX509CertificateData
The PEM-encoded data for the certificate anchor.Included for trust anchors of type
CERTIFICATE_BUNDLE.- See Also:
-
builder
-