Skip to content

/AWS1/IF_KNY=>ADDAPPLICATIONINPUT()

About AddApplicationInput

This documentation is for version 1 of the Amazon Kinesis Data Analytics API, which only supports SQL applications. Version 2 of the API supports SQL and Java applications. For more information about version 2, see Amazon Kinesis Data Analytics API V2 Documentation.

Adds a streaming source to your Amazon Kinesis application. For conceptual information, see Configuring Application Input.

You can add a streaming source either when you create an application or you can use this operation to add a streaming source after you create an application. For more information, see CreateApplication.

Any configuration update, including adding a streaming source using this operation, results in a new version of the application. You can use the DescribeApplication operation to find the current application version.

This operation requires permissions to perform the kinesisanalytics:AddApplicationInput action.

Method Signature

METHODS /AWS1/IF_KNY~ADDAPPLICATIONINPUT
  IMPORTING
    !IV_APPLICATIONNAME TYPE /AWS1/KNYAPPLICATIONNAME OPTIONAL
    !IV_CURRENTAPPLICATIONVRSID TYPE /AWS1/KNYAPPLICATIONVERSIONID OPTIONAL
    !IO_INPUT TYPE REF TO /AWS1/CL_KNYINPUT OPTIONAL
  RETURNING
    VALUE(OO_OUTPUT) TYPE REF TO /aws1/cl_knyaddapplicationin01
  RAISING
    /AWS1/CX_KNYCODEVALIDATIONEX
    /AWS1/CX_KNYCONCURRENTMODEX
    /AWS1/CX_KNYINVALIDARGUMENTEX
    /AWS1/CX_KNYRESOURCEINUSEEX
    /AWS1/CX_KNYRESOURCENOTFOUNDEX
    /AWS1/CX_KNYUNSUPPORTEDOPEX
    /AWS1/CX_KNYCLIENTEXC
    /AWS1/CX_KNYSERVEREXC
    /AWS1/CX_RT_TECHNICAL_GENERIC
    /AWS1/CX_RT_SERVICE_GENERIC.

IMPORTING

Required arguments:

iv_applicationname TYPE /AWS1/KNYAPPLICATIONNAME /AWS1/KNYAPPLICATIONNAME

Name of your existing Amazon Kinesis Analytics application to which you want to add the streaming source.

iv_currentapplicationvrsid TYPE /AWS1/KNYAPPLICATIONVERSIONID /AWS1/KNYAPPLICATIONVERSIONID

Current version of your Amazon Kinesis Analytics application. You can use the DescribeApplication operation to find the current application version.

io_input TYPE REF TO /AWS1/CL_KNYINPUT /AWS1/CL_KNYINPUT

The Input to add.

RETURNING

oo_output TYPE REF TO /aws1/cl_knyaddapplicationin01 /AWS1/CL_KNYADDAPPLICATIONIN01

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->addapplicationinput(
  io_input = new /aws1/cl_knyinput(
    io_inputparallelism = new /aws1/cl_knyinputparallelism( 123 )
    io_inputprocessingconf = new /aws1/cl_knyinputprocingconf(
      io_inputlambdaprocessor = new /aws1/cl_knyinputlambdaprocor(
        iv_resourcearn = |string|
        iv_rolearn = |string|
      )
    )
    io_inputschema = new /aws1/cl_knysourceschema(
      io_recordformat = new /aws1/cl_knyrecordformat(
        io_mappingparameters = new /aws1/cl_knymappingparameters(
          io_csvmappingparameters = new /aws1/cl_knycsvmappingparams(
            iv_recordcolumndelimiter = |string|
            iv_recordrowdelimiter = |string|
          )
          io_jsonmappingparameters = new /aws1/cl_knyjsonmappingparams( |string| )
        )
        iv_recordformattype = |string|
      )
      it_recordcolumns = VALUE /aws1/cl_knyrecordcolumn=>tt_recordcolumns(
        (
          new /aws1/cl_knyrecordcolumn(
            iv_mapping = |string|
            iv_name = |string|
            iv_sqltype = |string|
          )
        )
      )
      iv_recordencoding = |string|
    )
    io_kinesisfirehoseinput = new /aws1/cl_knykinesisfirehoseinp(
      iv_resourcearn = |string|
      iv_rolearn = |string|
    )
    io_kinesisstreamsinput = new /aws1/cl_knykinesisstrmsinput(
      iv_resourcearn = |string|
      iv_rolearn = |string|
    )
    iv_nameprefix = |string|
  )
  iv_applicationname = |string|
  iv_currentapplicationvrsid = 123
).

This is an example of reading all possible response values

lo_result = lo_result.
IF lo_result IS NOT INITIAL.
ENDIF.