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.116.0 (build 0eddcff)",
date="2025-10-29T11:15:34.450Z")
@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")
.responseCompletionTimeout(Duration.minutes(30))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forS3BucketOriginBasePropsstatic final classAn implementation forS3BucketOriginBaseProps -
Method Summary
Static MethodsMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJsonMethods inherited from interface software.amazon.awscdk.services.cloudfront.OriginOptions
getConnectionAttempts, getConnectionTimeout, getCustomHeaders, getOriginAccessControlId, getOriginId, getOriginShieldEnabled, getOriginShieldRegion, getResponseCompletionTimeoutMethods inherited from interface software.amazon.awscdk.services.cloudfront.OriginProps
getOriginPath
-
Method Details
-
builder
- Returns:
- a
S3BucketOriginBaseProps.BuilderofS3BucketOriginBaseProps
-