/AWS1/CL_S3=>GETBUCKETMETADATATABLECONF()
¶
About GetBucketMetadataTableConfiguration¶
We recommend that you retrieve your S3 Metadata configurations by using the V2
GetBucketMetadataTableConfiguration API operation. We no longer recommend using the V1
GetBucketMetadataTableConfiguration
API operation.
If you created your S3 Metadata configuration before July 15, 2025, we recommend that you delete and re-create your configuration by using CreateBucketMetadataConfiguration so that you can expire journal table records and create a live inventory table.
Retrieves the V1 S3 Metadata configuration for a general purpose bucket. For more information, see Accelerating data discovery with S3 Metadata in the Amazon S3 User Guide.
You can use the V2 GetBucketMetadataConfiguration
API operation with V1 or V2
metadata table configurations. However, if you try to use the V1
GetBucketMetadataTableConfiguration
API operation with V2 configurations, you
will receive an HTTP 405 Method Not Allowed
error.
Make sure that you update your processes to use the new V2 API operations
(CreateBucketMetadataConfiguration
, GetBucketMetadataConfiguration
, and
DeleteBucketMetadataConfiguration
) instead of the V1 API operations.
- Permissions
-
To use this operation, you must have the
s3:GetBucketMetadataTableConfiguration
permission. For more information, see Setting up permissions for configuring metadata tables in the Amazon S3 User Guide.
The following operations are related to GetBucketMetadataTableConfiguration
:
Method Signature¶
IMPORTING¶
Required arguments:¶
iv_bucket
TYPE /AWS1/S3_BUCKETNAME
/AWS1/S3_BUCKETNAME
¶
The general purpose bucket that corresponds to the metadata table configuration that you want to retrieve.
Optional arguments:¶
iv_expectedbucketowner
TYPE /AWS1/S3_ACCOUNTID
/AWS1/S3_ACCOUNTID
¶
The expected owner of the general purpose bucket that you want to retrieve the metadata table configuration for.
RETURNING¶
oo_output
TYPE REF TO /aws1/cl_s3_getbktmettblconf01
/AWS1/CL_S3_GETBKTMETTBLCONF01
¶
Domain /AWS1/RT_ACCOUNT_ID Primitive Type NUMC
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.
DATA(lo_result) = lo_client->/aws1/if_s3~getbucketmetadatatableconf(
iv_bucket = |string|
iv_expectedbucketowner = |string|
).
This is an example of reading all possible response values
lo_result = lo_result.
IF lo_result IS NOT INITIAL.
lo_getbucketmetadatatablec = lo_result->get_getbktmettableconfresult( ).
IF lo_getbucketmetadatatablec IS NOT INITIAL.
lo_metadatatableconfigurat = lo_getbucketmetadatatablec->get_metadatatableconfresult( ).
IF lo_metadatatableconfigurat IS NOT INITIAL.
lo_s3tablesdestinationresu = lo_metadatatableconfigurat->get_s3tablesdstresult( ).
IF lo_s3tablesdestinationresu IS NOT INITIAL.
lv_s3tablesbucketarn = lo_s3tablesdestinationresu->get_tablebucketarn( ).
lv_s3tablesname = lo_s3tablesdestinationresu->get_tablename( ).
lv_s3tablesarn = lo_s3tablesdestinationresu->get_tablearn( ).
lv_s3tablesnamespace = lo_s3tablesdestinationresu->get_tablenamespace( ).
ENDIF.
ENDIF.
lv_metadatatablestatus = lo_getbucketmetadatatablec->get_status( ).
lo_errordetails = lo_getbucketmetadatatablec->get_error( ).
IF lo_errordetails IS NOT INITIAL.
lv_errorcode = lo_errordetails->get_errorcode( ).
lv_errormessage = lo_errordetails->get_errormessage( ).
ENDIF.
ENDIF.
ENDIF.