[][src]Struct rusoto_es::LogPublishingOption

pub struct LogPublishingOption {
    pub cloud_watch_logs_log_group_arn: Option<String>,
    pub enabled: Option<bool>,
}

Log Publishing option that is set for given domain.
Attributes and their details:

  • CloudWatchLogsLogGroupArn: ARN of the Cloudwatch log group to which log needs to be published.
  • Enabled: Whether the log publishing for given log type is enabled or not

Fields

cloud_watch_logs_log_group_arn: Option<String>enabled: Option<bool>

Specifies whether given log publishing option is enabled or not.

Trait Implementations

impl Clone for LogPublishingOption[src]

impl Debug for LogPublishingOption[src]

impl Default for LogPublishingOption[src]

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

impl PartialEq<LogPublishingOption> for LogPublishingOption[src]

impl Serialize for LogPublishingOption[src]

impl StructuralPartialEq for LogPublishingOption[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.