You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::KinesisAnalyticsV2::Types::AddApplicationInputProcessingConfigurationRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing AddApplicationInputProcessingConfigurationRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  application_name: "ApplicationName", # required
  current_application_version_id: 1, # required
  input_id: "Id", # required
  input_processing_configuration: { # required
    input_lambda_processor: { # required
      resource_arn: "ResourceARN", # required
    },
  },
}

Instance Attribute Summary collapse

Instance Attribute Details

#application_nameString

The name of the application to which you want to add the input processing configuration.

Returns:

  • (String)

    The name of the application to which you want to add the input processing configuration.

#current_application_version_idInteger

The version of the application to which you want to add the input processing configuration. You can use the DescribeApplication operation to get the current application version. If the version specified is not the current version, the ConcurrentModificationException is returned.

Returns:

  • (Integer)

    The version of the application to which you want to add the input processing configuration.

#input_idString

The ID of the input configuration to add the input processing configuration to. You can get a list of the input IDs for an application using the DescribeApplication operation.

Returns:

  • (String)

    The ID of the input configuration to add the input processing configuration to.

#input_processing_configurationTypes::InputProcessingConfiguration

The InputProcessingConfiguration to add to the application.

Returns: