pub struct CreateFileSystemWindowsConfiguration {
pub active_directory_id: Option<String>,
pub automatic_backup_retention_days: Option<i64>,
pub copy_tags_to_backups: Option<bool>,
pub daily_automatic_backup_start_time: Option<String>,
pub deployment_type: Option<String>,
pub preferred_subnet_id: Option<String>,
pub self_managed_active_directory_configuration: Option<SelfManagedActiveDirectoryConfiguration>,
pub throughput_capacity: i64,
pub weekly_maintenance_start_time: Option<String>,
}Expand description
The configuration object for the Microsoft Windows file system used in CreateFileSystem and CreateFileSystemFromBackup operations.
Fields§
§active_directory_id: Option<String>The ID for an existing AWS Managed Microsoft Active Directory (AD) instance that the file system should join when it's created.
automatic_backup_retention_days: Option<i64>The number of days to retain automatic backups. The default is to retain backups for 7 days. Setting this value to 0 disables the creation of automatic backups. The maximum retention period for backups is 35 days.
A boolean flag indicating whether tags for the file system should be copied to backups. This value defaults to false. If it's set to true, all tags for the file system are copied to all automatic and user-initiated backups where the user doesn't specify tags. If this value is true, and you specify one or more tags, only the specified tags are copied to backups. If you specify one or more tags when creating a user-initiated backup, no tags are copied from the file system, regardless of this value.
daily_automatic_backup_start_time: Option<String>The preferred time to take daily automatic backups, formatted HH:MM in the UTC time zone.
deployment_type: Option<String>Specifies the file system deployment type, valid values are the following:
-
MULTI_AZ_1- Deploys a high availability file system that is configured for Multi-AZ redundancy to tolerate temporary Availability Zone (AZ) unavailability. You can only deploy a Multi-AZ file system in AWS Regions that have a minimum of three Availability Zones. Also supports HDD storage type -
SINGLE_AZ_1- (Default) Choose to deploy a file system that is configured for single AZ redundancy. -
SINGLE_AZ_2- The latest generation Single AZ file system. Specifies a file system that is configured for single AZ redundancy and supports HDD storage type.
For more information, see Availability and Durability: Single-AZ and Multi-AZ File Systems.
preferred_subnet_id: Option<String>Required when DeploymentType is set to MULTI_AZ_1. This specifies the subnet in which you want the preferred file server to be located. For in-AWS applications, we recommend that you launch your clients in the same Availability Zone (AZ) as your preferred file server to reduce cross-AZ data transfer costs and minimize latency.
self_managed_active_directory_configuration: Option<SelfManagedActiveDirectoryConfiguration>§throughput_capacity: i64The throughput of an Amazon FSx file system, measured in megabytes per second, in 2 to the nth increments, between 2^3 (8) and 2^11 (2048).
weekly_maintenance_start_time: Option<String>The preferred start time to perform weekly maintenance, formatted d:HH:MM in the UTC time zone, where d is the weekday number, from 1 through 7, beginning with Monday and ending with Sunday.
Trait Implementations§
Source§impl Clone for CreateFileSystemWindowsConfiguration
impl Clone for CreateFileSystemWindowsConfiguration
Source§fn clone(&self) -> CreateFileSystemWindowsConfiguration
fn clone(&self) -> CreateFileSystemWindowsConfiguration
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for CreateFileSystemWindowsConfiguration
impl Default for CreateFileSystemWindowsConfiguration
Source§fn default() -> CreateFileSystemWindowsConfiguration
fn default() -> CreateFileSystemWindowsConfiguration
Source§impl PartialEq for CreateFileSystemWindowsConfiguration
impl PartialEq for CreateFileSystemWindowsConfiguration
Source§fn eq(&self, other: &CreateFileSystemWindowsConfiguration) -> bool
fn eq(&self, other: &CreateFileSystemWindowsConfiguration) -> bool
self and other values to be equal, and is used by ==.