Interface CfnStorageVirtualMachine.ActiveDirectoryConfigurationProperty

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

@Stability(Stable) public static interface CfnStorageVirtualMachine.ActiveDirectoryConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Describes the self-managed Microsoft Active Directory to which you want to join the SVM.

Joining an Active Directory provides user authentication and access control for SMB clients, including Microsoft Windows and macOS client accessing the file system.

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.fsx.*;
 ActiveDirectoryConfigurationProperty activeDirectoryConfigurationProperty = ActiveDirectoryConfigurationProperty.builder()
         .netBiosName("netBiosName")
         .selfManagedActiveDirectoryConfiguration(SelfManagedActiveDirectoryConfigurationProperty.builder()
                 .dnsIps(List.of("dnsIps"))
                 .domainName("domainName")
                 .fileSystemAdministratorsGroup("fileSystemAdministratorsGroup")
                 .organizationalUnitDistinguishedName("organizationalUnitDistinguishedName")
                 .password("password")
                 .userName("userName")
                 .build())
         .build();