Interface S3OriginConfig
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
S3OriginConfig.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:43.769Z")
@Stability(Stable)
public interface S3OriginConfig
extends software.amazon.jsii.JsiiSerializable
S3 origin configuration for CloudFront.
Example:
Bucket sourceBucket; ViewerCertificate viewerCertificate = ViewerCertificate.fromIamCertificate("MYIAMROLEIDENTIFIER", ViewerCertificateOptions.builder() .aliases(List.of("MYALIAS")) .build()); CloudFrontWebDistribution.Builder.create(this, "MyCfWebDistribution") .originConfigs(List.of(SourceConfiguration.builder() .s3OriginSource(S3OriginConfig.builder() .s3BucketSource(sourceBucket) .build()) .behaviors(List.of(Behavior.builder().isDefaultBehavior(true).build())) .build())) .viewerCertificate(viewerCertificate) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forS3OriginConfig
static final class
An implementation forS3OriginConfig
-
Method Summary
Modifier and TypeMethodDescriptionstatic S3OriginConfig.Builder
builder()
default IOriginAccessIdentity
The optional Origin Access Identity of the origin identity cloudfront will use when calling your s3 bucket.Any additional headers to pass to the origin.default String
The relative path to the origin root to use for sources.default String
When you enable Origin Shield in the AWS Region that has the lowest latency to your origin, you can get better network performance.The source bucket to serve content from.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getS3BucketSource
The source bucket to serve content from. -
getOriginAccessIdentity
The optional Origin Access Identity of the origin identity cloudfront will use when calling your s3 bucket.Default: No Origin Access Identity which requires the S3 bucket to be public accessible
-
getOriginHeaders
Any additional headers to pass to the origin.Default: - No additional headers are passed.
-
getOriginPath
The relative path to the origin root to use for sources.Default: /
-
getOriginShieldRegion
When you enable Origin Shield in the AWS Region that has the lowest latency to your origin, you can get better network performance.Default: - origin shield not enabled
-
builder
- Returns:
- a
S3OriginConfig.Builder
ofS3OriginConfig
-