[][src]Struct rusoto_kinesisanalyticsv2::SqlApplicationConfiguration

pub struct SqlApplicationConfiguration {
    pub inputs: Option<Vec<Input>>,
    pub outputs: Option<Vec<Output>>,
    pub reference_data_sources: Option<Vec<ReferenceDataSource>>,
}

Describes the inputs, outputs, and reference data sources for an SQL-based Kinesis Data Analytics application.

Fields

inputs: Option<Vec<Input>>

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

outputs: Option<Vec<Output>>

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

reference_data_sources: Option<Vec<ReferenceDataSource>>

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

Trait Implementations

impl Clone for SqlApplicationConfiguration[src]

impl Debug for SqlApplicationConfiguration[src]

impl Default for SqlApplicationConfiguration[src]

impl PartialEq<SqlApplicationConfiguration> for SqlApplicationConfiguration[src]

impl Serialize for SqlApplicationConfiguration[src]

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