interface DomainJoinInfoProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppStream.Mixins.CfnImageBuilderPropsMixin.DomainJoinInfoProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappstream/mixins#CfnImageBuilderPropsMixin_DomainJoinInfoProperty |
Java | software.amazon.awscdk.mixins.preview.services.appstream.mixins.CfnImageBuilderPropsMixin.DomainJoinInfoProperty |
Python | aws_cdk.mixins_preview.aws_appstream.mixins.CfnImageBuilderPropsMixin.DomainJoinInfoProperty |
TypeScript | @aws-cdk/mixins-preview » aws_appstream » mixins » CfnImageBuilderPropsMixin » 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 { mixins as appstream_mixins } from '@aws-cdk/mixins-preview/aws-appstream';
const domainJoinInfoProperty: appstream_mixins.CfnImageBuilderPropsMixin.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.

.NET
Go
Java
Python
TypeScript