/AWS1/IF_KNS=>LISTSTREAMCONSUMERS()¶
About ListStreamConsumers¶
Lists the consumers registered to receive data from a stream using enhanced fan-out, and provides information about each consumer.
This operation has a limit of 5 transactions per second per stream.
Method Signature¶
METHODS /AWS1/IF_KNS~LISTSTREAMCONSUMERS
IMPORTING
!IV_STREAMARN TYPE /AWS1/KNSSTREAMARN OPTIONAL
!IV_NEXTTOKEN TYPE /AWS1/KNSNEXTTOKEN OPTIONAL
!IV_MAXRESULTS TYPE /AWS1/KNSLISTSTRMCONSINPLIMIT OPTIONAL
!IV_STREAMCREATIONTIMESTAMP TYPE /AWS1/KNSTIMESTAMP OPTIONAL
RETURNING
VALUE(OO_OUTPUT) TYPE REF TO /aws1/cl_knsliststreamconsout
RAISING
/AWS1/CX_KNSEXPIREDNEXTTOKENEX
/AWS1/CX_KNSINVALIDARGUMENTEX
/AWS1/CX_KNSLIMITEXCEEDEDEX
/AWS1/CX_KNSRESOURCEINUSEEX
/AWS1/CX_KNSRESOURCENOTFOUNDEX
/AWS1/CX_KNSCLIENTEXC
/AWS1/CX_KNSSERVEREXC
/AWS1/CX_RT_TECHNICAL_GENERIC
/AWS1/CX_RT_SERVICE_GENERIC.
IMPORTING¶
Required arguments:¶
iv_streamarn TYPE /AWS1/KNSSTREAMARN /AWS1/KNSSTREAMARN¶
The ARN of the Kinesis data stream for which you want to list the registered consumers. For more information, see Amazon Resource Names (ARNs) and Amazon Web Services Service Namespaces.
Optional arguments:¶
iv_nexttoken TYPE /AWS1/KNSNEXTTOKEN /AWS1/KNSNEXTTOKEN¶
When the number of consumers that are registered with the data stream is greater than the default value for the
MaxResultsparameter, or if you explicitly specify a value forMaxResultsthat is less than the number of consumers that are registered with the data stream, the response includes a pagination token namedNextToken. You can specify thisNextTokenvalue in a subsequent call toListStreamConsumersto list the next set of registered consumers.Don't specify
StreamNameorStreamCreationTimestampif you specifyNextTokenbecause the latter unambiguously identifies the stream.You can optionally specify a value for the
MaxResultsparameter when you specifyNextToken. If you specify aMaxResultsvalue that is less than the number of consumers that the operation returns if you don't specifyMaxResults, the response will contain a newNextTokenvalue. You can use the newNextTokenvalue in a subsequent call to theListStreamConsumersoperation to list the next set of consumers.Tokens expire after 300 seconds. When you obtain a value for
NextTokenin the response to a call toListStreamConsumers, you have 300 seconds to use that value. If you specify an expired token in a call toListStreamConsumers, you getExpiredNextTokenException.
iv_maxresults TYPE /AWS1/KNSLISTSTRMCONSINPLIMIT /AWS1/KNSLISTSTRMCONSINPLIMIT¶
The maximum number of consumers that you want a single call of
ListStreamConsumersto return. The default value is 100. If you specify a value greater than 100, at most 100 results are returned.
iv_streamcreationtimestamp TYPE /AWS1/KNSTIMESTAMP /AWS1/KNSTIMESTAMP¶
Specify this input parameter to distinguish data streams that have the same name. For example, if you create a data stream and then delete it, and you later create another data stream with the same name, you can use this input parameter to specify which of the two streams you want to list the consumers for.
You can't specify this parameter if you specify the NextToken parameter.
RETURNING¶
oo_output TYPE REF TO /aws1/cl_knsliststreamconsout /AWS1/CL_KNSLISTSTREAMCONSOUT¶
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->liststreamconsumers(
iv_maxresults = 123
iv_nexttoken = |string|
iv_streamarn = |string|
iv_streamcreationtimestamp = '20150101000000.0000000'
).
This is an example of reading all possible response values
lo_result = lo_result.
IF lo_result IS NOT INITIAL.
LOOP AT lo_result->get_consumers( ) into lo_row.
lo_row_1 = lo_row.
IF lo_row_1 IS NOT INITIAL.
lv_consumername = lo_row_1->get_consumername( ).
lv_consumerarn = lo_row_1->get_consumerarn( ).
lv_consumerstatus = lo_row_1->get_consumerstatus( ).
lv_timestamp = lo_row_1->get_consumercreationtsmp( ).
ENDIF.
ENDLOOP.
lv_nexttoken = lo_result->get_nexttoken( ).
ENDIF.