Struct aws_sdk_storagegateway::input::JoinDomainInput [−][src]
#[non_exhaustive]pub struct JoinDomainInput {
pub gateway_arn: Option<String>,
pub domain_name: Option<String>,
pub organizational_unit: Option<String>,
pub domain_controllers: Option<Vec<String>>,
pub timeout_in_seconds: Option<i32>,
pub user_name: Option<String>,
pub password: Option<String>,
}
Expand description
JoinDomainInput
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.gateway_arn: Option<String>
The Amazon Resource Name (ARN) of the gateway. Use the ListGateways
operation to return a list of gateways for your account and Amazon Web Services Region.
domain_name: Option<String>
The name of the domain that you want the gateway to join.
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.
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
.
timeout_in_seconds: Option<i32>
Specifies the time in seconds, in which the JoinDomain
operation must
complete. The default is 20 seconds.
user_name: Option<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.
password: Option<String>
Sets the password of the user who has permission to add the gateway to the Active Directory domain.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<JoinDomain, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<JoinDomain, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<JoinDomain
>
Creates a new builder-style object to manufacture JoinDomainInput
The Amazon Resource Name (ARN) of the gateway. Use the ListGateways
operation to return a list of gateways for your account and Amazon Web Services Region.
The name of the domain that you want the gateway to join.
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.
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
.
Specifies the time in seconds, in which the JoinDomain
operation must
complete. The default is 20 seconds.
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
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for JoinDomainInput
impl Send for JoinDomainInput
impl Sync for JoinDomainInput
impl Unpin for JoinDomainInput
impl UnwindSafe for JoinDomainInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more