@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:39.449Z") @Stability(value=Stable) public interface CfnStorageVirtualMachineProps extends software.amazon.jsii.JsiiSerializable
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.*;
CfnStorageVirtualMachineProps cfnStorageVirtualMachineProps = CfnStorageVirtualMachineProps.builder()
.fileSystemId("fileSystemId")
.name("name")
// the properties below are optional
.activeDirectoryConfiguration(ActiveDirectoryConfigurationProperty.builder()
.netBiosName("netBiosName")
.selfManagedActiveDirectoryConfiguration(SelfManagedActiveDirectoryConfigurationProperty.builder()
.dnsIps(List.of("dnsIps"))
.domainName("domainName")
.fileSystemAdministratorsGroup("fileSystemAdministratorsGroup")
.organizationalUnitDistinguishedName("organizationalUnitDistinguishedName")
.password("password")
.userName("userName")
.build())
.build())
.rootVolumeSecurityStyle("rootVolumeSecurityStyle")
.svmAdminPassword("svmAdminPassword")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnStorageVirtualMachineProps.Builder
A builder for
CfnStorageVirtualMachineProps |
static class |
CfnStorageVirtualMachineProps.Jsii$Proxy
An implementation for
CfnStorageVirtualMachineProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnStorageVirtualMachineProps.Builder |
builder() |
default Object |
getActiveDirectoryConfiguration()
Describes the Microsoft Active Directory configuration to which the SVM is joined, if applicable.
|
String |
getFileSystemId()
Specifies the FSx for ONTAP file system on which to create the SVM.
|
String |
getName()
The name of the SVM.
|
default String |
getRootVolumeSecurityStyle()
The security style of the root volume of the SVM.
|
default String |
getSvmAdminPassword()
Specifies the password to use when logging on to the SVM using a secure shell (SSH) connection to the SVM's management endpoint.
|
default List<CfnTag> |
getTags()
An array of key-value pairs to apply to this resource.
|
@Stability(value=Stable) @NotNull String getFileSystemId()
@Stability(value=Stable) @NotNull String getName()
@Stability(value=Stable) @Nullable default Object getActiveDirectoryConfiguration()
@Stability(value=Stable) @Nullable default String getRootVolumeSecurityStyle()
UNIX if the file system is managed by a UNIX administrator, the majority of users are NFS clients, and an application accessing the data uses a UNIX user as the service account.NTFS if the file system is managed by a Windows administrator, the majority of users are SMB clients, and an application accessing the data uses a Windows user as the service account.MIXED if the file system is managed by both UNIX and Windows administrators and users consist of both NFS and SMB clients.@Stability(value=Stable) @Nullable default String getSvmAdminPassword()
Doing so enables you to manage the SVM using the NetApp ONTAP CLI or REST API. If you do not specify a password, you can still use the file system's fsxadmin user to manage the SVM. For more information, see Managing SVMs using the NetApp ONTAP CLI in the FSx for ONTAP User Guide .
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
For more information, see Tag .
@Stability(value=Stable) static CfnStorageVirtualMachineProps.Builder builder()
Copyright © 2022. All rights reserved.