Interface CloudFrontOriginAccessIdentityConfig.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<CloudFrontOriginAccessIdentityConfig.Builder,CloudFrontOriginAccessIdentityConfig>
,SdkBuilder<CloudFrontOriginAccessIdentityConfig.Builder,CloudFrontOriginAccessIdentityConfig>
,SdkPojo
- Enclosing class:
- CloudFrontOriginAccessIdentityConfig
public static interface CloudFrontOriginAccessIdentityConfig.Builder extends SdkPojo, CopyableBuilder<CloudFrontOriginAccessIdentityConfig.Builder,CloudFrontOriginAccessIdentityConfig>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CloudFrontOriginAccessIdentityConfig.Builder
callerReference(String callerReference)
A unique value (for example, a date-time stamp) that ensures that the request can't be replayed.CloudFrontOriginAccessIdentityConfig.Builder
comment(String comment)
A comment to describe the origin access identity.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
callerReference
CloudFrontOriginAccessIdentityConfig.Builder callerReference(String callerReference)
A unique value (for example, a date-time stamp) that ensures that the request can't be replayed.
If the value of
CallerReference
is new (regardless of the content of theCloudFrontOriginAccessIdentityConfig
object), a new origin access identity is created.If the
CallerReference
is a value already sent in a previous identity request, and the content of theCloudFrontOriginAccessIdentityConfig
is identical to the original request (ignoring white space), the response includes the same information returned to the original request.If the
CallerReference
is a value you already sent in a previous request to create an identity, but the content of theCloudFrontOriginAccessIdentityConfig
is different from the original request, CloudFront returns aCloudFrontOriginAccessIdentityAlreadyExists
error.- Parameters:
callerReference
- A unique value (for example, a date-time stamp) that ensures that the request can't be replayed.If the value of
CallerReference
is new (regardless of the content of theCloudFrontOriginAccessIdentityConfig
object), a new origin access identity is created.If the
CallerReference
is a value already sent in a previous identity request, and the content of theCloudFrontOriginAccessIdentityConfig
is identical to the original request (ignoring white space), the response includes the same information returned to the original request.If the
CallerReference
is a value you already sent in a previous request to create an identity, but the content of theCloudFrontOriginAccessIdentityConfig
is different from the original request, CloudFront returns aCloudFrontOriginAccessIdentityAlreadyExists
error.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
comment
CloudFrontOriginAccessIdentityConfig.Builder comment(String comment)
A comment to describe the origin access identity. The comment cannot be longer than 128 characters.
- Parameters:
comment
- A comment to describe the origin access identity. The comment cannot be longer than 128 characters.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-