DirectoryDescription

Struct DirectoryDescription 

Source
pub struct DirectoryDescription {
Show 24 fields pub access_url: Option<String>, pub alias: Option<String>, pub connect_settings: Option<DirectoryConnectSettingsDescription>, pub description: Option<String>, pub desired_number_of_domain_controllers: Option<i64>, pub directory_id: Option<String>, pub dns_ip_addrs: Option<Vec<String>>, pub edition: Option<String>, pub launch_time: Option<f64>, pub name: Option<String>, pub owner_directory_description: Option<OwnerDirectoryDescription>, pub radius_settings: Option<RadiusSettings>, pub radius_status: Option<String>, pub share_method: Option<String>, pub share_notes: Option<String>, pub share_status: Option<String>, pub short_name: Option<String>, pub size: Option<String>, pub sso_enabled: Option<bool>, pub stage: Option<String>, pub stage_last_updated_date_time: Option<f64>, pub stage_reason: Option<String>, pub type_: Option<String>, pub vpc_settings: Option<DirectoryVpcSettingsDescription>,
}
Expand description

Contains information about an AWS Directory Service directory.

Fields§

§access_url: Option<String>

The access URL for the directory, such as http://<alias>.awsapps.com. If no alias has been created for the directory, <alias> is the directory identifier, such as d-XXXXXXXXXX.

§alias: Option<String>

The alias for the directory. If no alias has been created for the directory, the alias is the directory identifier, such as d-XXXXXXXXXX.

§connect_settings: Option<DirectoryConnectSettingsDescription>

A DirectoryConnectSettingsDescription object that contains additional information about an AD Connector directory. This member is only present if the directory is an AD Connector directory.

§description: Option<String>

The description for the directory.

§desired_number_of_domain_controllers: Option<i64>

The desired number of domain controllers in the directory if the directory is Microsoft AD.

§directory_id: Option<String>

The directory identifier.

§dns_ip_addrs: Option<Vec<String>>

The IP addresses of the DNS servers for the directory. For a Simple AD or Microsoft AD directory, these are the IP addresses of the Simple AD or Microsoft AD directory servers. For an AD Connector directory, these are the IP addresses of the DNS servers or domain controllers in the on-premises directory to which the AD Connector is connected.

§edition: Option<String>

The edition associated with this directory.

§launch_time: Option<f64>

Specifies when the directory was created.

§name: Option<String>

The fully qualified name of the directory.

§owner_directory_description: Option<OwnerDirectoryDescription>

Describes the AWS Managed Microsoft AD directory in the directory owner account.

§radius_settings: Option<RadiusSettings>

A RadiusSettings object that contains information about the RADIUS server configured for this directory.

§radius_status: Option<String>

The status of the RADIUS MFA server connection.

§share_method: Option<String>

The method used when sharing a directory to determine whether the directory should be shared within your AWS organization (ORGANIZATIONS) or with any AWS account by sending a shared directory request (HANDSHAKE).

§share_notes: Option<String>

A directory share request that is sent by the directory owner to the directory consumer. The request includes a typed message to help the directory consumer administrator determine whether to approve or reject the share invitation.

§share_status: Option<String>

Current directory status of the shared AWS Managed Microsoft AD directory.

§short_name: Option<String>

The short name of the directory.

§size: Option<String>

The directory size.

§sso_enabled: Option<bool>

Indicates if single sign-on is enabled for the directory. For more information, see EnableSso and DisableSso.

§stage: Option<String>

The current stage of the directory.

§stage_last_updated_date_time: Option<f64>

The date and time that the stage was last updated.

§stage_reason: Option<String>

Additional information about the directory stage.

§type_: Option<String>

The directory size.

§vpc_settings: Option<DirectoryVpcSettingsDescription>

A DirectoryVpcSettingsDescription object that contains additional information about a directory. This member is only present if the directory is a Simple AD or Managed AD directory.

Trait Implementations§

Source§

impl Clone for DirectoryDescription

Source§

fn clone(&self) -> DirectoryDescription

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for DirectoryDescription

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for DirectoryDescription

Source§

fn default() -> DirectoryDescription

Returns the “default value” for a type. Read more
Source§

impl<'de> Deserialize<'de> for DirectoryDescription

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl PartialEq for DirectoryDescription

Source§

fn eq(&self, other: &DirectoryDescription) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl StructuralPartialEq for DirectoryDescription

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

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