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

Class: Aws::KinesisAnalytics::Types::Output

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

Overview

Note:

When passing Output as input to an Aws::Client method, you can use a vanilla 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
  },
}

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.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#destination_schemaTypes::DestinationSchema

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

Returns:

#kinesis_firehose_outputTypes::KinesisFirehoseOutput

Identifies an Amazon Kinesis Firehose delivery stream as the destination.

Returns:

#kinesis_streams_outputTypes::KinesisStreamsOutput

Identifies an Amazon Kinesis stream as the destination.

Returns:

#lambda_outputTypes::LambdaOutput

Identifies an AWS Lambda function as the destination.

Returns:

#nameString

Name of the in-application stream.

Returns:

  • (String)

    Name of the in-application stream.