delete_bucket
(**kwargs)¶Deletes the S3 bucket. All objects (including all object versions and delete markers) in the bucket must be deleted before the bucket itself can be deleted.
Related Resources
See also: AWS API Documentation
Request Syntax
response = client.delete_bucket(
Bucket='string',
ExpectedBucketOwner='string'
)
[REQUIRED]
Specifies the bucket being deleted.
403 Forbidden
(access denied).None
Examples
The following example deletes the specified bucket.
response = client.delete_bucket(
Bucket='forrandall2',
)
print(response)
Expected Output:
{
'ResponseMetadata': {
'...': '...',
},
}