[][src]Struct rusoto_workmail::AccessControlRule

pub struct AccessControlRule {
    pub actions: Option<Vec<String>>,
    pub date_created: Option<f64>,
    pub date_modified: Option<f64>,
    pub description: Option<String>,
    pub effect: Option<String>,
    pub ip_ranges: Option<Vec<String>>,
    pub name: Option<String>,
    pub not_actions: Option<Vec<String>>,
    pub not_ip_ranges: Option<Vec<String>>,
    pub not_user_ids: Option<Vec<String>>,
    pub user_ids: Option<Vec<String>>,
}

A rule that controls access to an Amazon WorkMail organization.

Fields

actions: Option<Vec<String>>

Access protocol actions to include in the rule. Valid values include ActiveSync, AutoDiscover, EWS, IMAP, SMTP, WindowsOutlook, and WebMail.

date_created: Option<f64>

The date that the rule was created.

date_modified: Option<f64>

The date that the rule was modified.

description: Option<String>

The rule description.

effect: Option<String>

The rule effect.

ip_ranges: Option<Vec<String>>

IPv4 CIDR ranges to include in the rule.

name: Option<String>

The rule name.

not_actions: Option<Vec<String>>

Access protocol actions to exclude from the rule. Valid values include ActiveSync, AutoDiscover, EWS, IMAP, SMTP, WindowsOutlook, and WebMail.

not_ip_ranges: Option<Vec<String>>

IPv4 CIDR ranges to exclude from the rule.

not_user_ids: Option<Vec<String>>

User IDs to exclude from the rule.

user_ids: Option<Vec<String>>

User IDs to include in the rule.

Trait Implementations

impl Clone for AccessControlRule[src]

impl Debug for AccessControlRule[src]

impl Default for AccessControlRule[src]

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

impl PartialEq<AccessControlRule> for AccessControlRule[src]

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