[][src]Struct rusoto_kinesisanalyticsv2::SqlApplicationConfigurationUpdate

pub struct SqlApplicationConfigurationUpdate {
    pub input_updates: Option<Vec<InputUpdate>>,
    pub output_updates: Option<Vec<OutputUpdate>>,
    pub reference_data_source_updates: Option<Vec<ReferenceDataSourceUpdate>>,
}

Describes updates to the input streams, destination streams, and reference data sources for an SQL-based Kinesis Data Analytics application.

Fields

input_updates: Option<Vec<InputUpdate>>

The array of InputUpdate objects describing the new input streams used by the application.

output_updates: Option<Vec<OutputUpdate>>

The array of OutputUpdate objects describing the new destination streams used by the application.

reference_data_source_updates: Option<Vec<ReferenceDataSourceUpdate>>

The array of ReferenceDataSourceUpdate objects describing the new reference data sources used by the application.

Trait Implementations

impl Clone for SqlApplicationConfigurationUpdate[src]

impl Debug for SqlApplicationConfigurationUpdate[src]

impl Default for SqlApplicationConfigurationUpdate[src]

impl PartialEq<SqlApplicationConfigurationUpdate> for SqlApplicationConfigurationUpdate[src]

impl Serialize for SqlApplicationConfigurationUpdate[src]

impl StructuralPartialEq for SqlApplicationConfigurationUpdate[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.