/AWS1/CL_DYN=>GETRESOURCEPOLICY()
¶
About GetResourcePolicy¶
Returns the resource-based policy document attached to the resource, which can be a table or stream, in JSON format.
GetResourcePolicy
follows an
eventually consistent
model. The following list
describes the outcomes when you issue the GetResourcePolicy
request
immediately after issuing another request:
-
If you issue a
GetResourcePolicy
request immediately after aPutResourcePolicy
request, DynamoDB might return aPolicyNotFoundException
. -
If you issue a
GetResourcePolicy
request immediately after aDeleteResourcePolicy
request, DynamoDB might return the policy that was present before the deletion request. -
If you issue a
GetResourcePolicy
request immediately after aCreateTable
request, which includes a resource-based policy, DynamoDB might return aResourceNotFoundException
or aPolicyNotFoundException
.
Because GetResourcePolicy
uses an eventually
consistent query, the metadata for your policy or table might not be
available at that moment. Wait for a few seconds, and then retry the
GetResourcePolicy
request.
After a GetResourcePolicy
request returns a policy created using the
PutResourcePolicy
request, the policy will be applied in the
authorization of requests to the resource. Because this process is eventually
consistent, it will take some time to apply the policy to all requests to a resource.
Policies that you attach while creating a table using the CreateTable
request will always be applied to all requests for that table.
Method Signature¶
IMPORTING¶
Required arguments:¶
iv_resourcearn
TYPE /AWS1/DYNRESOURCEARNSTRING
/AWS1/DYNRESOURCEARNSTRING
¶
The Amazon Resource Name (ARN) of the DynamoDB resource to which the policy is attached. The resources you can specify include tables and streams.
RETURNING¶
oo_output
TYPE REF TO /aws1/cl_dyngetresrcplyoutput
/AWS1/CL_DYNGETRESRCPLYOUTPUT
¶
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_dyn~getresourcepolicy( |string| ).
This is an example of reading all possible response values
lo_result = lo_result.
IF lo_result IS NOT INITIAL.
lv_resourcepolicy = lo_result->get_policy( ).
lv_policyrevisionid = lo_result->get_revisionid( ).
ENDIF.