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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forS3BucketOriginBaseProps
static final class
An implementation forS3BucketOriginBaseProps
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
Methods inherited from interface software.amazon.awscdk.services.cloudfront.OriginOptions
getConnectionAttempts, getConnectionTimeout, getCustomHeaders, getOriginAccessControlId, getOriginId, getOriginShieldEnabled, getOriginShieldRegion
Methods inherited from interface software.amazon.awscdk.services.cloudfront.OriginProps
getOriginPath
-
Method Details
-
builder
- Returns:
- a
S3BucketOriginBaseProps.Builder
ofS3BucketOriginBaseProps
-