Struct rusoto_kinesisanalytics::CloudWatchLoggingOption[][src]

pub struct CloudWatchLoggingOption {
    pub log_stream_arn: String,
    pub role_arn: String,
}

Provides a description of CloudWatch logging options, including the log stream Amazon Resource Name (ARN) and the role ARN.

Fields

ARN of the CloudWatch log to receive application messages.

IAM ARN of the role to use to send application messages. Note: To write application messages to CloudWatch, the IAM role that is used must have the PutLogEvents policy action enabled.

Trait Implementations

impl Default for CloudWatchLoggingOption
[src]

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

impl Debug for CloudWatchLoggingOption
[src]

Formats the value using the given formatter. Read more

impl Clone for CloudWatchLoggingOption
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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