delete_bucket_cors
(**kwargs)¶Deletes the cors
configuration information set for the bucket.
To use this operation, you must have permission to perform the s3:PutBucketCORS
action. The bucket owner has this permission by default and can grant this permission to others.
For information about cors
, see Enabling Cross-Origin Resource Sharing in the Amazon S3 User Guide .
Related Resources:
See also: AWS API Documentation
Request Syntax
response = client.delete_bucket_cors(
Bucket='string',
ExpectedBucketOwner='string'
)
[REQUIRED]
Specifies the bucket whose cors
configuration is being deleted.
403 Forbidden
(access denied).None
Examples
The following example deletes CORS configuration on a bucket.
response = client.delete_bucket_cors(
Bucket='examplebucket',
)
print(response)
Expected Output:
{
'ResponseMetadata': {
'...': '...',
},
}