You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::KinesisAnalyticsV2::Types::AddApplicationOutputRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::KinesisAnalyticsV2::Types::AddApplicationOutputRequest
- Defined in:
- (unknown)
Overview
When passing AddApplicationOutputRequest as input to an Aws::Client method, you can use a vanilla Hash:
{
application_name: "ApplicationName", # required
current_application_version_id: 1, # required
output: { # required
name: "InAppStreamName", # required
kinesis_streams_output: {
resource_arn: "ResourceARN", # required
},
kinesis_firehose_output: {
resource_arn: "ResourceARN", # required
},
lambda_output: {
resource_arn: "ResourceARN", # required
},
destination_schema: { # required
record_format_type: "JSON", # required, accepts JSON, CSV
},
},
}
Instance Attribute Summary collapse
-
#application_name ⇒ String
The name of the application to which you want to add the output configuration.
-
#current_application_version_id ⇒ Integer
The version of the application to which you want to add the output configuration.
-
#output ⇒ Types::Output
An array of objects, each describing one output configuration.
Instance Attribute Details
#application_name ⇒ String
The name of the application to which you want to add the output configuration.
#current_application_version_id ⇒ Integer
The version of the application to which you want to add the output
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.
#output ⇒ Types::Output
An array of objects, each describing one output configuration. In the output configuration, you specify the name of an in-application stream, a destination (that is, a Kinesis data stream, a Kinesis Data Firehose delivery stream, or an AWS Lambda function), and record the formation to use when writing to the destination.