Struct rusoto_kinesisanalytics::DeleteApplicationInputProcessingConfigurationRequest[][src]

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

Fields

The Kinesis Analytics application name.

The version ID of the Kinesis Analytics application.

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 Default for DeleteApplicationInputProcessingConfigurationRequest
[src]

Returns the "default value" for a type. Read more

impl Debug for DeleteApplicationInputProcessingConfigurationRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for DeleteApplicationInputProcessingConfigurationRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DeleteApplicationInputProcessingConfigurationRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations