Struct rusoto_firehose::CloudWatchLoggingOptions [] [src]

pub struct CloudWatchLoggingOptions {
    pub enabled: Option<bool>,
    pub log_group_name: Option<String>,
    pub log_stream_name: Option<String>,
}

Describes the Amazon CloudWatch logging options for your delivery stream.

Fields

Enables or disables CloudWatch logging.

The CloudWatch group name for logging. This value is required if CloudWatch logging is enabled.

The CloudWatch log stream name for logging. This value is required if CloudWatch logging is enabled.

Trait Implementations

impl Default for CloudWatchLoggingOptions
[src]

[src]

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

impl Debug for CloudWatchLoggingOptions
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for CloudWatchLoggingOptions
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations