Interface CfnDistribution.S3OriginConfigProperty

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

@Stability(Stable) public static interface CfnDistribution.S3OriginConfigProperty extends software.amazon.jsii.JsiiSerializable
A complex type that contains information about the Amazon S3 origin.

If the origin is a custom origin or an S3 bucket that is configured as a website endpoint, use the CustomOriginConfig element instead.

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.*;
 S3OriginConfigProperty s3OriginConfigProperty = S3OriginConfigProperty.builder()
         .originAccessIdentity("originAccessIdentity")
         .build();
 

See Also: