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: