/AWS1/CL_S3=>DELETEBUCKETWEBSITE()
¶
About DeleteBucketWebsite¶
This operation is not supported for directory buckets.
This action removes the website configuration for a bucket. Amazon S3 returns a 200 OK
response upon successfully deleting a website configuration on the specified bucket. You will get a
200 OK
response if the website configuration you are trying to delete does not exist on
the bucket. Amazon S3 returns a 404
response if the bucket specified in the request does not
exist.
This DELETE action requires the S3:DeleteBucketWebsite
permission. By default, only the
bucket owner can delete the website configuration attached to a bucket. However, bucket owners can grant
other users permission to delete the website configuration by writing a bucket policy granting them the
S3:DeleteBucketWebsite
permission.
For more information about hosting websites, see Hosting Websites on Amazon S3.
The following operations are related to DeleteBucketWebsite
:
Method Signature¶
IMPORTING¶
Required arguments:¶
iv_bucket
TYPE /AWS1/S3_BUCKETNAME
/AWS1/S3_BUCKETNAME
¶
The bucket name for which you want to remove the website configuration.
Optional arguments:¶
iv_expectedbucketowner
TYPE /AWS1/S3_ACCOUNTID
/AWS1/S3_ACCOUNTID
¶
The account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).
Examples¶
Syntax Example¶
This is an example of the syntax for calling the method. It includes every possible argument and initializes every possible value. The data provided is not necessarily semantically accurate (for example the value "string" may be provided for something that is intended to be an instance ID, or in some cases two arguments may be mutually exclusive). The syntax shows the ABAP syntax for creating the various data structures.
lo_client->/aws1/if_s3~deletebucketwebsite(
iv_bucket = |string|
iv_expectedbucketowner = |string|
).
To delete bucket website configuration¶
The following example deletes bucket website configuration.
lo_client->/aws1/if_s3~deletebucketwebsite( iv_bucket = |examplebucket| ) .