Class: Aws::FSx::Types::SelfManagedActiveDirectoryConfigurationUpdates
- Inherits:
-
Struct
- Object
- Struct
- Aws::FSx::Types::SelfManagedActiveDirectoryConfigurationUpdates
- Defined in:
- gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb
Overview
When making an API call, you may pass SelfManagedActiveDirectoryConfigurationUpdates data as a hash:
{
user_name: "DirectoryUserName",
password: "DirectoryPassword",
dns_ips: ["IpAddress"],
}
The configuration that Amazon FSx uses to join the Windows File Server instance to a self-managed Microsoft Active Directory (AD) directory.
Constant Summary collapse
- SENSITIVE =
[:password]
Instance Attribute Summary collapse
-
#dns_ips ⇒ Array<String>
A list of up to three IP addresses of DNS servers or domain controllers in the self-managed AD directory.
-
#password ⇒ String
The password for the service account on your self-managed AD domain that Amazon FSx will use to join to your AD domain.
-
#user_name ⇒ String
The user name for the service account on your self-managed AD domain that Amazon FSx will use to join to your AD domain.
Instance Attribute Details
#dns_ips ⇒ Array<String>
A list of up to three IP addresses of DNS servers or domain controllers in the self-managed AD directory.
7026 7027 7028 7029 7030 7031 7032 |
# File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 7026 class SelfManagedActiveDirectoryConfigurationUpdates < Struct.new( :user_name, :password, :dns_ips) SENSITIVE = [:password] include Aws::Structure end |
#password ⇒ String
The password for the service account on your self-managed AD domain that Amazon FSx will use to join to your AD domain.
7026 7027 7028 7029 7030 7031 7032 |
# File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 7026 class SelfManagedActiveDirectoryConfigurationUpdates < Struct.new( :user_name, :password, :dns_ips) SENSITIVE = [:password] include Aws::Structure end |
#user_name ⇒ String
The user name for the service account on your self-managed AD domain
that Amazon FSx will use to join to your AD domain. This account
must have the permission to join computers to the domain in the
organizational unit provided in
OrganizationalUnitDistinguishedName
.
7026 7027 7028 7029 7030 7031 7032 |
# File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 7026 class SelfManagedActiveDirectoryConfigurationUpdates < Struct.new( :user_name, :password, :dns_ips) SENSITIVE = [:password] include Aws::Structure end |