[][src]Struct rusoto_kinesisanalyticsv2::SqlApplicationConfigurationDescription

pub struct SqlApplicationConfigurationDescription {
    pub input_descriptions: Option<Vec<InputDescription>>,
    pub output_descriptions: Option<Vec<OutputDescription>>,
    pub reference_data_source_descriptions: Option<Vec<ReferenceDataSourceDescription>>,
}

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

Fields

input_descriptions: Option<Vec<InputDescription>>

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

output_descriptions: Option<Vec<OutputDescription>>

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

reference_data_source_descriptions: Option<Vec<ReferenceDataSourceDescription>>

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

Trait Implementations

impl Clone for SqlApplicationConfigurationDescription[src]

impl Debug for SqlApplicationConfigurationDescription[src]

impl Default for SqlApplicationConfigurationDescription[src]

impl<'de> Deserialize<'de> for SqlApplicationConfigurationDescription[src]

impl PartialEq<SqlApplicationConfigurationDescription> for SqlApplicationConfigurationDescription[src]

impl StructuralPartialEq for SqlApplicationConfigurationDescription[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.