Interface S3BucketOriginBaseProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable, OriginOptions, OriginProps
All Known Subinterfaces:
S3BucketOriginWithOACProps, S3BucketOriginWithOAIProps
All Known Implementing Classes:
S3BucketOriginBaseProps.Jsii$Proxy, S3BucketOriginWithOACProps.Jsii$Proxy, S3BucketOriginWithOAIProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.104.0 (build e79254c)", date="2024-11-06T23:25:05.627Z") @Stability(Stable) public interface S3BucketOriginBaseProps extends software.amazon.jsii.JsiiSerializable, OriginProps
Properties for configuring a origin using a standard S3 bucket.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.*;
 import software.amazon.awscdk.services.cloudfront.origins.*;
 S3BucketOriginBaseProps s3BucketOriginBaseProps = S3BucketOriginBaseProps.builder()
         .connectionAttempts(123)
         .connectionTimeout(Duration.minutes(30))
         .customHeaders(Map.of(
                 "customHeadersKey", "customHeaders"))
         .originAccessControlId("originAccessControlId")
         .originId("originId")
         .originPath("originPath")
         .originShieldEnabled(false)
         .originShieldRegion("originShieldRegion")
         .build();