You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::KinesisAnalytics::Types::AddApplicationOutputRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::KinesisAnalytics::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
role_arn: "RoleARN", # required
},
kinesis_firehose_output: {
resource_arn: "ResourceARN", # required
role_arn: "RoleARN", # required
},
lambda_output: {
resource_arn: "ResourceARN", # required
role_arn: "RoleARN", # required
},
destination_schema: { # required
record_format_type: "JSON", # required, accepts JSON, CSV
},
},
}
Instance Attribute Summary collapse
-
#application_name ⇒ String
Name of the application to which you want to add the output configuration.
-
#current_application_version_id ⇒ Integer
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
Name of the application to which you want to add the output configuration.
#current_application_version_id ⇒ Integer
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, an Amazon Kinesis stream, an Amazon Kinesis Firehose delivery stream, or an AWS Lambda function), and record the formation to use when writing to the destination.