interface DomainJoinInfoProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.AppStream.CfnImageBuilder.DomainJoinInfoProperty | 
|  Java | software.amazon.awscdk.services.appstream.CfnImageBuilder.DomainJoinInfoProperty | 
|  Python | aws_cdk.aws_appstream.CfnImageBuilder.DomainJoinInfoProperty | 
|  TypeScript | @aws-cdk/aws-appstream»CfnImageBuilder»DomainJoinInfoProperty | 
The name of the directory and organizational unit (OU) to use to join the image builder to a Microsoft Active Directory domain.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as appstream from '@aws-cdk/aws-appstream';
const domainJoinInfoProperty: appstream.CfnImageBuilder.DomainJoinInfoProperty = {
  directoryName: 'directoryName',
  organizationalUnitDistinguishedName: 'organizationalUnitDistinguishedName',
};
Properties
| Name | Type | Description | 
|---|---|---|
| directory | string | The fully qualified name of the directory (for example, corp.example.com). | 
| organizational | string | The distinguished name of the organizational unit for computer accounts. | 
directoryName?
Type:
string
(optional)
The fully qualified name of the directory (for example, corp.example.com).
organizationalUnitDistinguishedName?
Type:
string
(optional)
The distinguished name of the organizational unit for computer accounts.
