Interface CfnFileSystem.SelfManagedActiveDirectoryConfigurationProperty

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

@Stability(Stable) public static interface CfnFileSystem.SelfManagedActiveDirectoryConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The configuration that Amazon FSx uses to join a FSx for Windows File Server file system or an FSx for ONTAP storage virtual machine (SVM) to a self-managed (including on-premises) Microsoft Active Directory (AD) directory.

For more information, see Using Amazon FSx for Windows with your self-managed Microsoft Active Directory or Managing FSx for ONTAP SVMs .

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

See Also: