Struct rusoto_opsworks::CloudWatchLogsConfiguration[][src]

pub struct CloudWatchLogsConfiguration {
    pub enabled: Option<bool>,
    pub log_streams: Option<Vec<CloudWatchLogsLogStream>>,
}

Describes the Amazon CloudWatch logs configuration for a layer.

Fields

Whether CloudWatch Logs is enabled for a layer.

A list of configuration options for CloudWatch Logs.

Trait Implementations

impl Default for CloudWatchLogsConfiguration
[src]

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

impl Debug for CloudWatchLogsConfiguration
[src]

Formats the value using the given formatter. Read more

impl Clone for CloudWatchLogsConfiguration
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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