Interface CfnTrustStore.CaCertificatesBundleSourceProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnTrustStore.CaCertificatesBundleSourceProperty.Jsii$Proxy
Enclosing class:
CfnTrustStore

@Stability(Stable) public static interface CfnTrustStore.CaCertificatesBundleSourceProperty extends software.amazon.jsii.JsiiSerializable
A CA certificates bundle source.

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.cloudfront.*;
 CaCertificatesBundleSourceProperty caCertificatesBundleSourceProperty = CaCertificatesBundleSourceProperty.builder()
         .caCertificatesBundleS3Location(CaCertificatesBundleS3LocationProperty.builder()
                 .bucket("bucket")
                 .key("key")
                 .region("region")
                 // the properties below are optional
                 .version("version")
                 .build())
         .build();
 

See Also: