[][src]Struct rusoto_firehose::CloudWatchLoggingOptions

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

enabled: Option<bool>

Enables or disables CloudWatch logging.

log_group_name: Option<String>

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

log_stream_name: Option<String>

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

Trait Implementations

impl Clone for CloudWatchLoggingOptions[src]

impl Debug for CloudWatchLoggingOptions[src]

impl Default for CloudWatchLoggingOptions[src]

impl<'de> Deserialize<'de> for CloudWatchLoggingOptions[src]

impl PartialEq<CloudWatchLoggingOptions> for CloudWatchLoggingOptions[src]

impl Serialize for CloudWatchLoggingOptions[src]

impl StructuralPartialEq for CloudWatchLoggingOptions[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.