Interface CfnTrustStore.CaCertificatesBundleS3LocationProperty

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

@Stability(Stable) public static interface CfnTrustStore.CaCertificatesBundleS3LocationProperty extends software.amazon.jsii.JsiiSerializable
The CA certificates bundle location in Amazon S3.

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

See Also: