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: