Struct rusoto_kinesisanalytics::OutputDescription[][src]

pub struct OutputDescription {
    pub destination_schema: Option<DestinationSchema>,
    pub kinesis_firehose_output_description: Option<KinesisFirehoseOutputDescription>,
    pub kinesis_streams_output_description: Option<KinesisStreamsOutputDescription>,
    pub lambda_output_description: Option<LambdaOutputDescription>,
    pub name: Option<String>,
    pub output_id: Option<String>,
}

Describes the application output configuration, which includes the in-application stream name and the destination where the stream data is written. The destination can be an Amazon Kinesis stream or an Amazon Kinesis Firehose delivery stream.

Fields

Data format used for writing data to the destination.

Describes the Amazon Kinesis Firehose delivery stream configured as the destination where output is written.

Describes Amazon Kinesis stream configured as the destination where output is written.

Describes the AWS Lambda function configured as the destination where output is written.

Name of the in-application stream configured as output.

A unique identifier for the output configuration.

Trait Implementations

impl Default for OutputDescription
[src]

Returns the "default value" for a type. Read more

impl Debug for OutputDescription
[src]

Formats the value using the given formatter. Read more

impl Clone for OutputDescription
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for OutputDescription
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations