Class: Aws::FSx::Types::SelfManagedActiveDirectoryConfigurationUpdates
- Inherits:
-
Struct
- Object
- Struct
- Aws::FSx::Types::SelfManagedActiveDirectoryConfigurationUpdates
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-fsx/types.rb
Overview
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.
7002 7003 7004 7005 7006 7007 7008 |
# File 'lib/aws-sdk-fsx/types.rb', line 7002 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.
7002 7003 7004 7005 7006 7007 7008 |
# File 'lib/aws-sdk-fsx/types.rb', line 7002 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`.
7002 7003 7004 7005 7006 7007 7008 |
# File 'lib/aws-sdk-fsx/types.rb', line 7002 class SelfManagedActiveDirectoryConfigurationUpdates < Struct.new( :user_name, :password, :dns_ips) SENSITIVE = [:password] include Aws::Structure end |