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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
static final class
An implementation forCfnStorageVirtualMachine.ActiveDirectoryConfigurationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
The NetBIOS name of the Active Directory computer object that will be created for your SVM.default Object
The configuration that Amazon FSx uses to join the ONTAP storage virtual machine (SVM) to your self-managed (including on-premises) Microsoft Active Directory (AD) directory.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getNetBiosName
The NetBIOS name of the Active Directory computer object that will be created for your SVM. -
getSelfManagedActiveDirectoryConfiguration
The configuration that Amazon FSx uses to join the ONTAP storage virtual machine (SVM) to your self-managed (including on-premises) Microsoft Active Directory (AD) directory. -
builder
@Stability(Stable) static CfnStorageVirtualMachine.ActiveDirectoryConfigurationProperty.Builder builder()
-