Struct rusoto_kinesisanalytics::DeleteApplicationReferenceDataSourceRequest[][src]

pub struct DeleteApplicationReferenceDataSourceRequest {
    pub application_name: String,
    pub current_application_version_id: i64,
    pub reference_id: String,
}

Fields

Name of an existing application.

Version of the application. 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.

ID of the reference data source. When you add a reference data source to your application using the AddApplicationReferenceDataSource, Amazon Kinesis Analytics assigns an ID. You can use the DescribeApplication operation to get the reference ID.

Trait Implementations

impl Default for DeleteApplicationReferenceDataSourceRequest
[src]

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

impl Debug for DeleteApplicationReferenceDataSourceRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for DeleteApplicationReferenceDataSourceRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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