class Aws::KinesisAnalytics::Types::Output

Describes application output configuration in which you identify an in-application stream and a destination where you want the in-application stream data to be written. The destination can be an Amazon Kinesis stream or an Amazon Kinesis Firehose delivery stream.

For limits on how many destinations an application can write and other limitations, see [Limits].

[1]: docs.aws.amazon.com/kinesisanalytics/latest/dev/limits.html

@note When making an API call, you may pass Output

data as a hash:

    {
      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
      },
    }

@!attribute [rw] name

Name of the in-application stream.
@return [String]

@!attribute [rw] kinesis_streams_output

Identifies an Amazon Kinesis stream as the destination.
@return [Types::KinesisStreamsOutput]

@!attribute [rw] kinesis_firehose_output

Identifies an Amazon Kinesis Firehose delivery stream as the
destination.
@return [Types::KinesisFirehoseOutput]

@!attribute [rw] lambda_output

Identifies an AWS Lambda function as the destination.
@return [Types::LambdaOutput]

@!attribute [rw] destination_schema

Describes the data format when records are written to the
destination. For more information, see [Configuring Application
Output][1].

[1]: https://docs.aws.amazon.com/kinesisanalytics/latest/dev/how-it-works-output.html
@return [Types::DestinationSchema]

@see docs.aws.amazon.com/goto/WebAPI/kinesisanalytics-2015-08-14/Output AWS API Documentation

Constants

SENSITIVE