Class: Aws::KinesisAnalytics::Types::Output
- Inherits:
-
Struct
- Object
- Struct
- Aws::KinesisAnalytics::Types::Output
- Defined in:
- gems/aws-sdk-kinesisanalytics/lib/aws-sdk-kinesisanalytics/types.rb
Overview
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
},
}
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.
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.
2761 2762 2763 2764 2765 2766 2767 2768 2769 |
# File 'gems/aws-sdk-kinesisanalytics/lib/aws-sdk-kinesisanalytics/types.rb', line 2761 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.
2761 2762 2763 2764 2765 2766 2767 2768 2769 |
# File 'gems/aws-sdk-kinesisanalytics/lib/aws-sdk-kinesisanalytics/types.rb', line 2761 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.
2761 2762 2763 2764 2765 2766 2767 2768 2769 |
# File 'gems/aws-sdk-kinesisanalytics/lib/aws-sdk-kinesisanalytics/types.rb', line 2761 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.
2761 2762 2763 2764 2765 2766 2767 2768 2769 |
# File 'gems/aws-sdk-kinesisanalytics/lib/aws-sdk-kinesisanalytics/types.rb', line 2761 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.
2761 2762 2763 2764 2765 2766 2767 2768 2769 |
# File 'gems/aws-sdk-kinesisanalytics/lib/aws-sdk-kinesisanalytics/types.rb', line 2761 class Output < Struct.new( :name, :kinesis_streams_output, :kinesis_firehose_output, :lambda_output, :destination_schema) SENSITIVE = [] include Aws::Structure end |