Class: Aws::FSx::Types::SelfManagedActiveDirectoryConfigurationUpdates

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#dns_ipsArray<String>

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

Returns:

  • (Array<String>)


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

#passwordString

The password for the service account on your self-managed AD domain that Amazon FSx will use to join to your AD domain.

Returns:

  • (String)


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_nameString

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`.

Returns:

  • (String)


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