[][src]Struct rusoto_fsx::SelfManagedActiveDirectoryAttributes

pub struct SelfManagedActiveDirectoryAttributes {
    pub dns_ips: Option<Vec<String>>,
    pub domain_name: Option<String>,
    pub file_system_administrators_group: Option<String>,
    pub organizational_unit_distinguished_name: Option<String>,
    pub user_name: Option<String>,
}

The configuration of the self-managed Microsoft Active Directory (AD) directory to which the Windows File Server instance is joined.

Fields

dns_ips: Option<Vec<String>>

A list of up to two IP addresses of DNS servers or domain controllers in the self-managed AD directory.

domain_name: Option<String>

The fully qualified domain name of the self-managed AD directory.

file_system_administrators_group: Option<String>

The name of the domain group whose members have administrative privileges for the FSx file system.

organizational_unit_distinguished_name: Option<String>

The fully qualified distinguished name of the organizational unit within the self-managed AD directory to which the Windows File Server instance is joined.

user_name: Option<String>

The user name for the service account on your self-managed AD domain that FSx uses to join to your AD domain.

Trait Implementations

impl Clone for SelfManagedActiveDirectoryAttributes[src]

impl Debug for SelfManagedActiveDirectoryAttributes[src]

impl Default for SelfManagedActiveDirectoryAttributes[src]

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

impl PartialEq<SelfManagedActiveDirectoryAttributes> for SelfManagedActiveDirectoryAttributes[src]

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