[][src]Struct rusoto_kinesisanalyticsv2::OutputUpdate

pub struct OutputUpdate {
    pub destination_schema_update: Option<DestinationSchema>,
    pub kinesis_firehose_output_update: Option<KinesisFirehoseOutputUpdate>,
    pub kinesis_streams_output_update: Option<KinesisStreamsOutputUpdate>,
    pub lambda_output_update: Option<LambdaOutputUpdate>,
    pub name_update: Option<String>,
    pub output_id: String,
}

For an SQL-based Amazon Kinesis Data Analytics application, describes updates to the output configuration identified by the OutputId.

Fields

destination_schema_update: Option<DestinationSchema>

Describes the data format when records are written to the destination.

kinesis_firehose_output_update: Option<KinesisFirehoseOutputUpdate>

Describes a Kinesis Data Firehose delivery stream as the destination for the output.

kinesis_streams_output_update: Option<KinesisStreamsOutputUpdate>

Describes a Kinesis data stream as the destination for the output.

lambda_output_update: Option<LambdaOutputUpdate>

Describes an AWS Lambda function as the destination for the output.

name_update: Option<String>

If you want to specify a different in-application stream for this output configuration, use this field to specify the new in-application stream name.

output_id: String

Identifies the specific output configuration that you want to update.

Trait Implementations

impl Clone for OutputUpdate[src]

impl Debug for OutputUpdate[src]

impl Default for OutputUpdate[src]

impl PartialEq<OutputUpdate> for OutputUpdate[src]

impl Serialize for OutputUpdate[src]

impl StructuralPartialEq for OutputUpdate[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.