[][src]Struct rusoto_storagegateway::JoinDomainInput

pub struct JoinDomainInput {
    pub domain_controllers: Option<Vec<String>>,
    pub domain_name: String,
    pub gateway_arn: String,
    pub organizational_unit: Option<String>,
    pub password: String,
    pub timeout_in_seconds: Option<i64>,
    pub user_name: String,
}

JoinDomainInput

Fields

domain_controllers: Option<Vec<String>>

List of IPv4 addresses, NetBIOS names, or host names of your domain server. If you need to specify the port number include it after the colon (“:”). For example, mydc.mydomain.com:389.

domain_name: String

The name of the domain that you want the gateway to join.

gateway_arn: String

The Amazon Resource Name (ARN) of the gateway. Use the ListGateways operation to return a list of gateways for your account and AWS Region.

organizational_unit: Option<String>

The organizational unit (OU) is a container in an Active Directory that can hold users, groups, computers, and other OUs and this parameter specifies the OU that the gateway will join within the AD domain.

password: String

Sets the password of the user who has permission to add the gateway to the Active Directory domain.

timeout_in_seconds: Option<i64>

Specifies the time in seconds, in which the JoinDomain operation must complete. The default is 20 seconds.

user_name: String

Sets the user name of user who has permission to add the gateway to the Active Directory domain. The domain user account should be enabled to join computers to the domain. For example, you can use the domain administrator account or an account with delegated permissions to join computers to the domain.

Trait Implementations

impl Clone for JoinDomainInput[src]

impl Debug for JoinDomainInput[src]

impl Default for JoinDomainInput[src]

impl PartialEq<JoinDomainInput> for JoinDomainInput[src]

impl Serialize for JoinDomainInput[src]

impl StructuralPartialEq for JoinDomainInput[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> From<T> 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.