Struct rusoto_kinesisanalytics::Output[][src]

pub struct Output {
    pub destination_schema: DestinationSchema,
    pub kinesis_firehose_output: Option<KinesisFirehoseOutput>,
    pub kinesis_streams_output: Option<KinesisStreamsOutput>,
    pub lambda_output: Option<LambdaOutput>,
    pub name: String,
}

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.

Fields

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

Identifies an Amazon Kinesis Firehose delivery stream as the destination.

Identifies an Amazon Kinesis stream as the destination.

Identifies an AWS Lambda function as the destination.

Name of the in-application stream.

Trait Implementations

impl Default for Output
[src]

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

impl Debug for Output
[src]

Formats the value using the given formatter. Read more

impl Clone for Output
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for Output
[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

impl Send for Output

impl Sync for Output