Class: Aws::AppStream::Types::DomainJoinInfo
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppStream::Types::DomainJoinInfo
- Defined in:
- gems/aws-sdk-appstream/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.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#directory_name ⇒ String
The fully qualified name of the directory (for example, corp.example.com).
-
#organizational_unit_distinguished_name ⇒ String
The distinguished name of the organizational unit for computer accounts.
Instance Attribute Details
#directory_name ⇒ String
The fully qualified name of the directory (for example, corp.example.com).
3069 3070 3071 3072 3073 3074 |
# File 'gems/aws-sdk-appstream/lib/aws-sdk-appstream/types.rb', line 3069 class DomainJoinInfo < Struct.new( :directory_name, :organizational_unit_distinguished_name) SENSITIVE = [] include Aws::Structure end |
#organizational_unit_distinguished_name ⇒ String
The distinguished name of the organizational unit for computer accounts.
3069 3070 3071 3072 3073 3074 |
# File 'gems/aws-sdk-appstream/lib/aws-sdk-appstream/types.rb', line 3069 class DomainJoinInfo < Struct.new( :directory_name, :organizational_unit_distinguished_name) SENSITIVE = [] include Aws::Structure end |