Copyright | (c) 2013-2021 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay <brendan.g.hay+amazonka@gmail.com> |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | None |
Sets the cors
configuration for your bucket. If the configuration
exists, Amazon S3 replaces it.
To use this operation, you must be allowed to perform the
s3:PutBucketCORS
action. By default, the bucket owner has this
permission and can grant it to others.
You set this configuration on a bucket so that the bucket can service
cross-origin requests. For example, you might want to enable a request
whose origin is http://www.example.com
to access your Amazon S3
bucket at my.example.bucket.com
by using the browser's
XMLHttpRequest
capability.
To enable cross-origin resource sharing (CORS) on a bucket, you add the
cors
subresource to the bucket. The cors
subresource is an XML
document in which you configure rules that identify origins and the HTTP
methods that can be executed on your bucket. The document is limited to
64 KB in size.
When Amazon S3 receives a cross-origin request (or a pre-flight OPTIONS
request) against a bucket, it evaluates the cors
configuration on the
bucket and uses the first CORSRule
rule that matches the incoming
browser request to enable a cross-origin request. For a rule to match,
the following conditions must be met:
- The request's
Origin
header must matchAllowedOrigin
elements. - The request method (for example, GET, PUT, HEAD, and so on) or the
Access-Control-Request-Method
header in case of a pre-flightOPTIONS
request must be one of theAllowedMethod
elements. - Every header specified in the
Access-Control-Request-Headers
request header of a pre-flight request must match anAllowedHeader
element.
For more information about CORS, go to Enabling Cross-Origin Resource Sharing in the Amazon S3 User Guide.
Related Resources
Synopsis
- data PutBucketCors = PutBucketCors' {}
- newPutBucketCors :: BucketName -> CORSConfiguration -> PutBucketCors
- putBucketCors_contentMD5 :: Lens' PutBucketCors (Maybe Text)
- putBucketCors_expectedBucketOwner :: Lens' PutBucketCors (Maybe Text)
- putBucketCors_bucket :: Lens' PutBucketCors BucketName
- putBucketCors_cORSConfiguration :: Lens' PutBucketCors CORSConfiguration
- data PutBucketCorsResponse = PutBucketCorsResponse' {
- newPutBucketCorsResponse :: PutBucketCorsResponse
Creating a Request
data PutBucketCors Source #
See: newPutBucketCors
smart constructor.
PutBucketCors' | |
|
Instances
Create a value of PutBucketCors
with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:contentMD5:PutBucketCors'
, putBucketCors_contentMD5
- The base64-encoded 128-bit MD5 digest of the data. This header must be
used as a message integrity check to verify that the request body was
not corrupted in transit. For more information, go to
RFC 1864.
For requests made using the Amazon Web Services Command Line Interface (CLI) or Amazon Web Services SDKs, this field is calculated automatically.
$sel:expectedBucketOwner:PutBucketCors'
, putBucketCors_expectedBucketOwner
- The account ID of the expected bucket owner. If the bucket is owned by a
different account, the request will fail with an HTTP
403 (Access Denied)
error.
$sel:bucket:PutBucketCors'
, putBucketCors_bucket
- Specifies the bucket impacted by the cors
configuration.
$sel:cORSConfiguration:PutBucketCors'
, putBucketCors_cORSConfiguration
- Describes the cross-origin access configuration for objects in an Amazon
S3 bucket. For more information, see
Enabling Cross-Origin Resource Sharing
in the Amazon S3 User Guide.
Request Lenses
putBucketCors_contentMD5 :: Lens' PutBucketCors (Maybe Text) Source #
The base64-encoded 128-bit MD5 digest of the data. This header must be used as a message integrity check to verify that the request body was not corrupted in transit. For more information, go to RFC 1864.
For requests made using the Amazon Web Services Command Line Interface (CLI) or Amazon Web Services SDKs, this field is calculated automatically.
putBucketCors_expectedBucketOwner :: Lens' PutBucketCors (Maybe Text) Source #
The account ID of the expected bucket owner. If the bucket is owned by a
different account, the request will fail with an HTTP
403 (Access Denied)
error.
putBucketCors_bucket :: Lens' PutBucketCors BucketName Source #
Specifies the bucket impacted by the cors
configuration.
putBucketCors_cORSConfiguration :: Lens' PutBucketCors CORSConfiguration Source #
Describes the cross-origin access configuration for objects in an Amazon S3 bucket. For more information, see Enabling Cross-Origin Resource Sharing in the Amazon S3 User Guide.
Destructuring the Response
data PutBucketCorsResponse Source #
See: newPutBucketCorsResponse
smart constructor.
Instances
Eq PutBucketCorsResponse Source # | |
Defined in Amazonka.S3.PutBucketCors (==) :: PutBucketCorsResponse -> PutBucketCorsResponse -> Bool # (/=) :: PutBucketCorsResponse -> PutBucketCorsResponse -> Bool # | |
Read PutBucketCorsResponse Source # | |
Show PutBucketCorsResponse Source # | |
Defined in Amazonka.S3.PutBucketCors showsPrec :: Int -> PutBucketCorsResponse -> ShowS # show :: PutBucketCorsResponse -> String # showList :: [PutBucketCorsResponse] -> ShowS # | |
Generic PutBucketCorsResponse Source # | |
Defined in Amazonka.S3.PutBucketCors type Rep PutBucketCorsResponse :: Type -> Type # | |
NFData PutBucketCorsResponse Source # | |
Defined in Amazonka.S3.PutBucketCors rnf :: PutBucketCorsResponse -> () # | |
type Rep PutBucketCorsResponse Source # | |
newPutBucketCorsResponse :: PutBucketCorsResponse Source #
Create a value of PutBucketCorsResponse
with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.