Struct rusoto_ds::DirectoryLimits[][src]

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 Default for DirectoryLimits
[src]

Returns the "default value" for a type. Read more

impl Debug for DirectoryLimits
[src]

Formats the value using the given formatter. Read more

impl Clone for DirectoryLimits
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DirectoryLimits
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations