Interface S3OriginConfig.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<S3OriginConfig.Builder,S3OriginConfig>
,SdkBuilder<S3OriginConfig.Builder,S3OriginConfig>
,SdkPojo
- Enclosing class:
- S3OriginConfig
public static interface S3OriginConfig.Builder extends SdkPojo, CopyableBuilder<S3OriginConfig.Builder,S3OriginConfig>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description S3OriginConfig.Builder
originAccessIdentity(String originAccessIdentity)
The CloudFront origin access identity to associate with the origin.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
originAccessIdentity
S3OriginConfig.Builder originAccessIdentity(String originAccessIdentity)
The CloudFront origin access identity to associate with the origin. Use an origin access identity to configure the origin so that viewers can only access objects in an Amazon S3 bucket through CloudFront. The format of the value is:
origin-access-identity/cloudfront/ID-of-origin-access-identity
where
ID-of-origin-access-identity
is the value that CloudFront returned in theID
element when you created the origin access identity.If you want viewers to be able to access objects using either the CloudFront URL or the Amazon S3 URL, specify an empty
OriginAccessIdentity
element.To delete the origin access identity from an existing distribution, update the distribution configuration and include an empty
OriginAccessIdentity
element.To replace the origin access identity, update the distribution configuration and specify the new origin access identity.
For more information about the origin access identity, see Serving Private Content through CloudFront in the Amazon CloudFront Developer Guide.
- Parameters:
originAccessIdentity
- The CloudFront origin access identity to associate with the origin. Use an origin access identity to configure the origin so that viewers can only access objects in an Amazon S3 bucket through CloudFront. The format of the value is:origin-access-identity/cloudfront/ID-of-origin-access-identity
where
ID-of-origin-access-identity
is the value that CloudFront returned in theID
element when you created the origin access identity.If you want viewers to be able to access objects using either the CloudFront URL or the Amazon S3 URL, specify an empty
OriginAccessIdentity
element.To delete the origin access identity from an existing distribution, update the distribution configuration and include an empty
OriginAccessIdentity
element.To replace the origin access identity, update the distribution configuration and specify the new origin access identity.
For more information about the origin access identity, see Serving Private Content through CloudFront in the Amazon CloudFront Developer Guide.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-