[][src]Struct rusoto_kinesisanalyticsv2::DeleteApplicationInputProcessingConfigurationRequest

pub struct DeleteApplicationInputProcessingConfigurationRequest {
    pub application_name: String,
    pub current_application_version_id: i64,
    pub input_id: String,
}

Fields

application_name: String

The name of the application.

current_application_version_id: i64

The application version. You can use the DescribeApplication operation to get the current application version. If the version specified is not the current version, the ConcurrentModificationException is returned.

input_id: String

The ID of the input configuration from which to delete the input processing configuration. You can get a list of the input IDs for an application by using the DescribeApplication operation.

Trait Implementations

impl Clone for DeleteApplicationInputProcessingConfigurationRequest[src]

impl Debug for DeleteApplicationInputProcessingConfigurationRequest[src]

impl Default for DeleteApplicationInputProcessingConfigurationRequest[src]

impl PartialEq<DeleteApplicationInputProcessingConfigurationRequest> for DeleteApplicationInputProcessingConfigurationRequest[src]

impl Serialize for DeleteApplicationInputProcessingConfigurationRequest[src]

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