Struct aws_sdk_kinesisanalyticsv2::types::Output
source · #[non_exhaustive]pub struct Output {
pub name: String,
pub kinesis_streams_output: Option<KinesisStreamsOutput>,
pub kinesis_firehose_output: Option<KinesisFirehoseOutput>,
pub lambda_output: Option<LambdaOutput>,
pub destination_schema: Option<DestinationSchema>,
}Expand description
Describes a SQL-based Kinesis Data Analytics application's 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 a Kinesis data stream or a Kinesis Data Firehose delivery stream.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.name: StringThe name of the in-application stream.
kinesis_streams_output: Option<KinesisStreamsOutput>Identifies a Kinesis data stream as the destination.
kinesis_firehose_output: Option<KinesisFirehoseOutput>Identifies a Kinesis Data Firehose delivery stream as the destination.
lambda_output: Option<LambdaOutput>Identifies an Amazon Lambda function as the destination.
destination_schema: Option<DestinationSchema>Describes the data format when records are written to the destination.
Implementations§
source§impl Output
impl Output
sourcepub fn kinesis_streams_output(&self) -> Option<&KinesisStreamsOutput>
pub fn kinesis_streams_output(&self) -> Option<&KinesisStreamsOutput>
Identifies a Kinesis data stream as the destination.
sourcepub fn kinesis_firehose_output(&self) -> Option<&KinesisFirehoseOutput>
pub fn kinesis_firehose_output(&self) -> Option<&KinesisFirehoseOutput>
Identifies a Kinesis Data Firehose delivery stream as the destination.
sourcepub fn lambda_output(&self) -> Option<&LambdaOutput>
pub fn lambda_output(&self) -> Option<&LambdaOutput>
Identifies an Amazon Lambda function as the destination.
sourcepub fn destination_schema(&self) -> Option<&DestinationSchema>
pub fn destination_schema(&self) -> Option<&DestinationSchema>
Describes the data format when records are written to the destination.