Struct rusoto_rds::CloudwatchLogsExportConfiguration[][src]

pub struct CloudwatchLogsExportConfiguration {
    pub disable_log_types: Option<Vec<String>>,
    pub enable_log_types: Option<Vec<String>>,
}

The configuration setting for the log types to be enabled for export to CloudWatch Logs for a specific DB instance or DB cluster.

Fields

The list of log types to disable.

The list of log types to enable.

Trait Implementations

impl Default for CloudwatchLogsExportConfiguration
[src]

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

impl Debug for CloudwatchLogsExportConfiguration
[src]

Formats the value using the given formatter. Read more

impl Clone for CloudwatchLogsExportConfiguration
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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