Interface CfnImageBuilder.DomainJoinInfoProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnImageBuilder.DomainJoinInfoProperty.Jsii$Proxy
Enclosing class:
CfnImageBuilder

@Stability(Stable) public static interface CfnImageBuilder.DomainJoinInfoProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.appstream.*;
 DomainJoinInfoProperty domainJoinInfoProperty = DomainJoinInfoProperty.builder()
         .directoryName("directoryName")
         .organizationalUnitDistinguishedName("organizationalUnitDistinguishedName")
         .build();
 

See Also: