Interface CfnFileSystem.WindowsConfigurationProperty

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

@Stability(Stable) public static interface CfnFileSystem.WindowsConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The Microsoft Windows configuration for the file system that's being created.

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.*;
 WindowsConfigurationProperty windowsConfigurationProperty = WindowsConfigurationProperty.builder()
         .throughputCapacity(123)
         // the properties below are optional
         .activeDirectoryId("activeDirectoryId")
         .aliases(List.of("aliases"))
         .auditLogConfiguration(AuditLogConfigurationProperty.builder()
                 .fileAccessAuditLogLevel("fileAccessAuditLogLevel")
                 .fileShareAccessAuditLogLevel("fileShareAccessAuditLogLevel")
                 // the properties below are optional
                 .auditLogDestination("auditLogDestination")
                 .build())
         .automaticBackupRetentionDays(123)
         .copyTagsToBackups(false)
         .dailyAutomaticBackupStartTime("dailyAutomaticBackupStartTime")
         .deploymentType("deploymentType")
         .diskIopsConfiguration(DiskIopsConfigurationProperty.builder()
                 .iops(123)
                 .mode("mode")
                 .build())
         .preferredSubnetId("preferredSubnetId")
         .selfManagedActiveDirectoryConfiguration(SelfManagedActiveDirectoryConfigurationProperty.builder()
                 .dnsIps(List.of("dnsIps"))
                 .domainName("domainName")
                 .fileSystemAdministratorsGroup("fileSystemAdministratorsGroup")
                 .organizationalUnitDistinguishedName("organizationalUnitDistinguishedName")
                 .password("password")
                 .userName("userName")
                 .build())
         .weeklyMaintenanceStartTime("weeklyMaintenanceStartTime")
         .build();
 

See Also: