PutPublicAccessBlock #
Overview #
Creates or modifies the PublicAccessBlock configuration for an AWS account.
AWS API Reference: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_PutPublicAccessBlock.html
Method #
PUTPUBLICACCESSBLOCK
Import Parameters #
The request uses the following import parameters.
-
i_bucket_name (bucket in AWS)
Name of the bucket to create.
-
i_region (Required)
AWS Region of the Amazon S3 Bucket.
-
i_x_amz_account_id(x-amz-account-id) (Required)
The AWS account ID for the owner of the bucket for which you want to create an access point.
-
i_blockpublicacls()
Specifies whether Amazon S3 should block public access control lists (ACLs) for buckets in this account.
-
i_ignorepublicacls(IgnorePublicAcls in AWS)
Specifies whether Amazon S3 should ignore public ACLs for buckets in this account.
-
i_retrisctpublicbuckets(RestrictPublicBuckets in AWS)
Specifies whether Amazon S3 should restrict public bucket policies for buckets in this account.
Export Parameters #
This method use the following export parameters:
-
e_http_status
HTTP Status code.
-
e_response_headers
Returns information about the request in format Name/Value pair values.
-
e_response_content
Response content in string format.
Example #
DATA: lo_s3 TYPE REF TO /lnkc/cl_sdk_aws_s3,
lv_http_status TYPE i,
lt_response_headers TYPE tihttpnvp,
lv_response_content TYPE string.
TRY.
CREATE OBJECT lo_s3
EXPORTING
i_user_name = 'user_awsconnector'
i_access_key = 'acces_key_value'
i_secret_access_key = 'secret_acceskey_value'.
ENDTRY.
TRY.
CALL METHOD lo_s3_control->putpublicaccessblock
EXPORTING
i_bucket_name = 'i_bucket_name'
i_region = 'i_region'
i_x_amz_account_id = 'i_x_amz_account_id'
i_blockpublicacls = 'i_blockpublicacls'
i_blockpublicpolicy = 'i_blockpublicpolicy'
i_ignorepublicacls = 'i_ignorepublicacls'
i_restrictpublicbuckets = 'i_restrictpublicbuckets'
IMPORTING
e_http_status = lv_http_status
e_response_headers = lt_response_headers
e_response_content = lv_response_content.
CATCH /lnkc/cx_sdk_aws .
" Error Message
ENDTRY.