Struct rusoto_kinesisanalytics::DeleteApplicationOutputRequest[][src]

pub struct DeleteApplicationOutputRequest {
    pub application_name: String,
    pub current_application_version_id: i64,
    pub output_id: String,
}

Fields

Amazon Kinesis Analytics application name.

Amazon Kinesis Analytics 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.

The ID of the configuration to delete. Each output configuration that is added to the application, either when the application is created or later using the AddApplicationOutput operation, has a unique ID. You need to provide the ID to uniquely identify the output configuration that you want to delete from the application configuration. You can use the DescribeApplication operation to get the specific OutputId.

Trait Implementations

impl Default for DeleteApplicationOutputRequest
[src]

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

impl Debug for DeleteApplicationOutputRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for DeleteApplicationOutputRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DeleteApplicationOutputRequest
[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