Class: Aws::KinesisAnalytics::Types::Output
- Inherits:
-
Struct
- Object
- Struct
- Aws::KinesisAnalytics::Types::Output
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kinesisanalytics/types.rb
Overview
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
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#destination_schema ⇒ Types::DestinationSchema
Describes the data format when records are written to the destination.
-
#kinesis_firehose_output ⇒ Types::KinesisFirehoseOutput
Identifies an Amazon Kinesis Firehose delivery stream as the destination.
-
#kinesis_streams_output ⇒ Types::KinesisStreamsOutput
Identifies an Amazon Kinesis stream as the destination.
-
#lambda_output ⇒ Types::LambdaOutput
Identifies an AWS Lambda function as the destination.
-
#name ⇒ String
Name of the in-application stream.
Instance Attribute Details
#destination_schema ⇒ Types::DestinationSchema
Describes the data format when records are written to the destination. For more information, see [Configuring Application Output].
[1]: docs.aws.amazon.com/kinesisanalytics/latest/dev/how-it-works-output.html
1994 1995 1996 1997 1998 1999 2000 2001 2002 |
# File 'lib/aws-sdk-kinesisanalytics/types.rb', line 1994 class Output < Struct.new( :name, :kinesis_streams_output, :kinesis_firehose_output, :lambda_output, :destination_schema) SENSITIVE = [] include Aws::Structure end |
#kinesis_firehose_output ⇒ Types::KinesisFirehoseOutput
Identifies an Amazon Kinesis Firehose delivery stream as the destination.
1994 1995 1996 1997 1998 1999 2000 2001 2002 |
# File 'lib/aws-sdk-kinesisanalytics/types.rb', line 1994 class Output < Struct.new( :name, :kinesis_streams_output, :kinesis_firehose_output, :lambda_output, :destination_schema) SENSITIVE = [] include Aws::Structure end |
#kinesis_streams_output ⇒ Types::KinesisStreamsOutput
Identifies an Amazon Kinesis stream as the destination.
1994 1995 1996 1997 1998 1999 2000 2001 2002 |
# File 'lib/aws-sdk-kinesisanalytics/types.rb', line 1994 class Output < Struct.new( :name, :kinesis_streams_output, :kinesis_firehose_output, :lambda_output, :destination_schema) SENSITIVE = [] include Aws::Structure end |
#lambda_output ⇒ Types::LambdaOutput
Identifies an AWS Lambda function as the destination.
1994 1995 1996 1997 1998 1999 2000 2001 2002 |
# File 'lib/aws-sdk-kinesisanalytics/types.rb', line 1994 class Output < Struct.new( :name, :kinesis_streams_output, :kinesis_firehose_output, :lambda_output, :destination_schema) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
Name of the in-application stream.
1994 1995 1996 1997 1998 1999 2000 2001 2002 |
# File 'lib/aws-sdk-kinesisanalytics/types.rb', line 1994 class Output < Struct.new( :name, :kinesis_streams_output, :kinesis_firehose_output, :lambda_output, :destination_schema) SENSITIVE = [] include Aws::Structure end |