| « PreviousNext » | |
![]() ![]() | Did this page help you? Yes | No | Tell us about it... |
This action sets the configuration for a CloudFront origin access identity. You use this when updating the configuration (the only part of the configuration you can update is the comments). You must follow the same process when updating an identity's configuration as you do when updating a distribution's configuration. For more information, see PUT Distribution Config.
To set an origin access identity's configuration, you do a PUT on the
2012-07-01/origin-access-identity/CloudFront/<identity
ID>/config resource. The request body must include an XML document
with a CloudFrontOriginAccessIdentityConfig element. The new
CloudFrontOriginAccessIdentityConfig configuration replaces the existing
configuration.
If you try to change configuration items that cannot be changed (the caller reference),
CloudFront returns an IllegalUpdate error.
PUT /2012-07-01/origin-access-identity/cloudfront/<identity ID>/config HTTP/1.1 Host: cloudfront.amazonaws.com If-Match:value from ETag header in previous GET responseAuthorization:AWS authentication stringOther required headers<?xml version="1.0" encoding="UTF-8"?> <CloudFrontOriginAccessIdentityConfig xmlns="http://cloudfront.amazonaws.com/doc/2012-07-01/"> <CallerReference>ref</CallerReference> <Comment>The comment.<Comment> </CloudFrontOriginAccessIdentityConfig>
The following table lists the special request header the action uses in addition to the common request headers that all actions use. For more information, see Common REST Headers.
| Name | Description | Required |
|---|---|---|
|
|
The value of the Type: String |
Yes |
| Name | Description | Required |
|---|---|---|
|
|
The identity's configuration information. For more information, see CloudFrontOriginAccessIdentityConfig Complex Type. Type: |
Yes |
200 OK ETag:ETag value to use later when doing a DELETEx-amz-request-id:Request ID<?xml version="1.0" encoding="UTF-8"?> <CloudFrontOriginAccessIdentity xmlns="http://cloudfront.amazonaws.com/doc/2012-07-01/"> <Id/> <S3CanonicalUserId/> <CloudFrontOriginAccessIdentityConfig> <CallerReference>20120229090000</CallerReference> <Comment>The comment.</Comment> </CloudFrontOriginAccessIdentityConfig> </CloudFrontOriginAccessIdentity>
| Name | Description |
|---|---|
|
|
The current version of the configuration. For example:
Type: String |
| Name | Description |
|---|---|
|
|
The origin access identity's information. For more information, see CloudFrontOriginAccessIdentity Complex Type. Type: |
The following table lists the special errors returned in addition to the common errors that all actions return. For more information, see Errors.
| Error | Description | HTTP Status Code |
|---|---|---|
|
|
Origin and CallerReference cannot be updated. |
400 |
|
|
The If-Match version is missing or not valid. |
400 |
|
|
This operation requires a body. Ensure that the body is present and the Content-Type header is set. |
400 |
|
|
The specified origin access identity does not exist. |
404 |
|
|
The precondition given in one or more of the request-header fields
evaluated to |
412 |
The following example request updates the configuration for the CloudFront origin access identity with ID E74FTE3AEXAMPLE.
PUT /2012-07-01/origin-access-identity/cloudfront/E74FTE3AEXAMPLE/config HTTP/1.1 Host: cloudfront.amazonaws.com Authorization:AWS authentication stringDate: Thu, 17 May 2012 19:37:58 GMT If-Match: E2QWRUHEXAMPLEOther required headers<?xml version="1.0" encoding="UTF-8"?> <CloudFrontOriginAccessIdentityConfig xmlns="http://cloudfront.amazonaws.com/doc/2012-07-01/"> <CallerReference>20120229090000</CallerReference> <Comment>A different comment</Comment> </CloudFrontOriginAccessIdentityConfig>
200 OK
ETag: E9LHASXEXAMPLE
x-amz-request-id: request_id
<?xml version="1.0" encoding="UTF-8"?>
<CloudFrontOriginAccessIdentity xmlns="http://cloudfront.amazonaws.com/doc/2012-07-01/">
<Id>E74FTE3AEXAMPLE</Id>
<S3CanonicalUserId>
cd13868f797c227fbea2830611a26fe0a21ba1b826ab4bed9b7771c9aEXAMPLE
</S3CanonicalUserId>
<CloudFrontOriginAccessIdentityConfig>
<CallerReference>20120229090000</CallerReference>
<Comment>A different comment</Comment>
</CloudFrontOriginAccessIdentityConfig>
</CloudFrontOriginAccessIdentity>