[][src]Struct rusoto_ds::DirectoryLimits

pub struct DirectoryLimits {
    pub cloud_only_directories_current_count: Option<i64>,
    pub cloud_only_directories_limit: Option<i64>,
    pub cloud_only_directories_limit_reached: Option<bool>,
    pub cloud_only_microsoft_ad_current_count: Option<i64>,
    pub cloud_only_microsoft_ad_limit: Option<i64>,
    pub cloud_only_microsoft_ad_limit_reached: Option<bool>,
    pub connected_directories_current_count: Option<i64>,
    pub connected_directories_limit: Option<i64>,
    pub connected_directories_limit_reached: Option<bool>,
}

Contains directory limit information for a region.

Fields

The current number of cloud directories in the region.

The maximum number of cloud directories allowed in the region.

Indicates if the cloud directory limit has been reached.

The current number of Microsoft AD directories in the region.

The maximum number of Microsoft AD directories allowed in the region.

Indicates if the Microsoft AD directory limit has been reached.

The current number of connected directories in the region.

The maximum number of connected directories allowed in the region.

Indicates if the connected directory limit has been reached.

Trait Implementations

impl Clone for DirectoryLimits
[src]

Performs copy-assignment from source. Read more

impl Default for DirectoryLimits
[src]

impl PartialEq<DirectoryLimits> for DirectoryLimits
[src]

impl Debug for DirectoryLimits
[src]

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

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Same for T

Should always be Self

impl<T> Erased for T