Class: Aws::AppStream::Types::DomainJoinInfo

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-appstream/types.rb

Overview

Note:

When making an API call, you may pass DomainJoinInfo data as a hash:

{
  directory_name: "DirectoryName",
  organizational_unit_distinguished_name: "OrganizationalUnitDistinguishedName",
}

Describes the configuration information required to join fleets and image builders to Microsoft Active Directory domains.

Instance Attribute Summary collapse

Instance Attribute Details

#directory_nameString

The fully qualified name of the directory (for example, corp.example.com).

Returns:

  • (String)


1716
1717
1718
1719
1720
# File 'lib/aws-sdk-appstream/types.rb', line 1716

class DomainJoinInfo < Struct.new(
  :directory_name,
  :organizational_unit_distinguished_name)
  include Aws::Structure
end

#organizational_unit_distinguished_nameString

The distinguished name of the organizational unit for computer accounts.

Returns:

  • (String)


1716
1717
1718
1719
1720
# File 'lib/aws-sdk-appstream/types.rb', line 1716

class DomainJoinInfo < Struct.new(
  :directory_name,
  :organizational_unit_distinguished_name)
  include Aws::Structure
end