[][src]Struct rusoto_kinesisanalyticsv2::AddApplicationInputProcessingConfigurationResponse

pub struct AddApplicationInputProcessingConfigurationResponse {
    pub application_arn: Option<String>,
    pub application_version_id: Option<i64>,
    pub input_id: Option<String>,
    pub input_processing_configuration_description: Option<InputProcessingConfigurationDescription>,
}

Fields

application_arn: Option<String>

The Amazon Resource Name (ARN) of the application.

application_version_id: Option<i64>

Provides the current application version.

input_id: Option<String>

The input ID that is associated with the application input. This is the ID that Amazon Kinesis Data Analytics assigns to each input configuration that you add to your application.

input_processing_configuration_description: Option<InputProcessingConfigurationDescription>

The description of the preprocessor that executes on records in this input before the application's code is run.

Trait Implementations

impl Clone for AddApplicationInputProcessingConfigurationResponse[src]

impl Debug for AddApplicationInputProcessingConfigurationResponse[src]

impl Default for AddApplicationInputProcessingConfigurationResponse[src]

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

impl PartialEq<AddApplicationInputProcessingConfigurationResponse> for AddApplicationInputProcessingConfigurationResponse[src]

impl StructuralPartialEq for AddApplicationInputProcessingConfigurationResponse[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: Deserialize<'de>, 
[src]

impl<T> From<T> 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.