[][src]Struct rusoto_rds::CloudwatchLogsExportConfiguration

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.

The EnableLogTypes and DisableLogTypes arrays determine which logs will be exported (or not exported) to CloudWatch Logs. The values within these arrays depend on the DB engine being used. For more information, see Publishing Database Logs to Amazon CloudWatch Logs in the Amazon RDS User Guide.

Fields

disable_log_types: Option<Vec<String>>

The list of log types to disable.

enable_log_types: Option<Vec<String>>

The list of log types to enable.

Trait Implementations

impl Clone for CloudwatchLogsExportConfiguration[src]

impl Debug for CloudwatchLogsExportConfiguration[src]

impl Default for CloudwatchLogsExportConfiguration[src]

impl PartialEq<CloudwatchLogsExportConfiguration> for CloudwatchLogsExportConfiguration[src]

impl StructuralPartialEq for CloudwatchLogsExportConfiguration[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.