/AWS1/IF_QLD=>TAGRESOURCE()¶
About TagResource¶
Adds one or more tags to a specified Amazon QLDB resource.
A resource can have up to 50 tags. If you try to create more than 50 tags for a resource, your request fails and returns an error.
Method Signature¶
METHODS /AWS1/IF_QLD~TAGRESOURCE
IMPORTING
!IV_RESOURCEARN TYPE /AWS1/QLDARN OPTIONAL
!IT_TAGS TYPE /AWS1/CL_QLDTAGS_W=>TT_TAGS OPTIONAL
RETURNING
VALUE(OO_OUTPUT) TYPE REF TO /aws1/cl_qldtagresourcersp
RAISING
/AWS1/CX_QLDINVALIDPARAMETEREX
/AWS1/CX_QLDRESOURCENOTFOUNDEX
/AWS1/CX_QLDCLIENTEXC
/AWS1/CX_QLDSERVEREXC
/AWS1/CX_RT_TECHNICAL_GENERIC
/AWS1/CX_RT_SERVICE_GENERIC.
IMPORTING¶
Required arguments:¶
iv_resourcearn TYPE /AWS1/QLDARN /AWS1/QLDARN¶
The Amazon Resource Name (ARN) to which you want to add the tags. For example:
arn:aws:qldb:us-east-1:123456789012:ledger/exampleLedger
it_tags TYPE /AWS1/CL_QLDTAGS_W=>TT_TAGS TT_TAGS¶
The key-value pairs to add as tags to the specified QLDB resource. Tag keys are case sensitive. If you specify a key that already exists for the resource, your request fails and returns an error. Tag values are case sensitive and can be null.
RETURNING¶
oo_output TYPE REF TO /aws1/cl_qldtagresourcersp /AWS1/CL_QLDTAGRESOURCERSP¶
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->tagresource(
it_tags = VALUE /aws1/cl_qldtags_w=>tt_tags(
(
VALUE /aws1/cl_qldtags_w=>ts_tags_maprow(
key = |string|
value = new /aws1/cl_qldtags_w( |string| )
)
)
)
iv_resourcearn = |string|
).
This is an example of reading all possible response values
lo_result = lo_result.
IF lo_result IS NOT INITIAL.
ENDIF.