Struct rusoto_kinesisanalytics::AddApplicationCloudWatchLoggingOptionRequest[][src]

pub struct AddApplicationCloudWatchLoggingOptionRequest {
    pub application_name: String,
    pub cloud_watch_logging_option: CloudWatchLoggingOption,
    pub current_application_version_id: i64,
}

Fields

The Kinesis Analytics application name.

Provides the CloudWatch log stream Amazon Resource Name (ARN) and the IAM role ARN. Note: To write application messages to CloudWatch, the IAM role that is used must have the PutLogEvents policy action enabled.

The version ID of the Kinesis Analytics application.

Trait Implementations

impl Default for AddApplicationCloudWatchLoggingOptionRequest
[src]

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

impl Debug for AddApplicationCloudWatchLoggingOptionRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for AddApplicationCloudWatchLoggingOptionRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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