Interface CfnStreamingDistribution.S3OriginProperty

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

@Stability(Stable) public static interface CfnStreamingDistribution.S3OriginProperty extends software.amazon.jsii.JsiiSerializable
A complex type that contains information about the Amazon S3 bucket from which you want CloudFront to get your media files for distribution.

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.*;
 S3OriginProperty s3OriginProperty = S3OriginProperty.builder()
         .domainName("domainName")
         .originAccessIdentity("originAccessIdentity")
         .build();
 

See Also: