/AWS1/CL_NEP=>DESCRDBCLUSTERSNAPSHOTATTRS()
¶
About DescribeDBClusterSnapshotAttributes¶
Returns a list of DB cluster snapshot attribute names and values for a manual DB cluster snapshot.
When sharing snapshots with other Amazon accounts,
DescribeDBClusterSnapshotAttributes
returns the restore
attribute
and a list of IDs for the Amazon accounts that are authorized to copy or restore the manual DB
cluster snapshot. If all
is included in the list of values for the
restore
attribute, then the manual DB cluster snapshot is public and can be
copied or restored by all Amazon accounts.
To add or remove access for an Amazon account to copy or restore a manual DB cluster snapshot, or to make the manual DB cluster snapshot public or private, use the ModifyDBClusterSnapshotAttribute API action.
Method Signature¶
IMPORTING¶
Required arguments:¶
iv_dbclustersnapshotid
TYPE /AWS1/NEPSTRING
/AWS1/NEPSTRING
¶
The identifier for the DB cluster snapshot to describe the attributes for.
RETURNING¶
oo_output
TYPE REF TO /aws1/cl_nepdscdbclstsnapatt01
/AWS1/CL_NEPDSCDBCLSTSNAPATT01
¶
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_nep~descrdbclustersnapshotattrs( |string| ).
This is an example of reading all possible response values
lo_result = lo_result.
IF lo_result IS NOT INITIAL.
lo_dbclustersnapshotattrib = lo_result->get_dbclustersnapattrsresult( ).
IF lo_dbclustersnapshotattrib IS NOT INITIAL.
lv_string = lo_dbclustersnapshotattrib->get_dbclustersnapshotid( ).
LOOP AT lo_dbclustersnapshotattrib->get_dbclustersnapshotattrs( ) into lo_row.
lo_row_1 = lo_row.
IF lo_row_1 IS NOT INITIAL.
lv_string = lo_row_1->get_attributename( ).
LOOP AT lo_row_1->get_attributevalues( ) into lo_row_2.
lo_row_3 = lo_row_2.
IF lo_row_3 IS NOT INITIAL.
lv_string = lo_row_3->get_value( ).
ENDIF.
ENDLOOP.
ENDIF.
ENDLOOP.
ENDIF.
ENDIF.