Method: Aws::FSx::Types::CreateFileSystemRequest#subnet_ids
- Defined in:
- lib/aws-sdk-fsx/types.rb
#subnet_ids ⇒ Array<String>
Specifies the IDs of the subnets that the file system will be accessible from. For Windows and ONTAP ‘MULTI_AZ_1` deployment types,provide exactly two subnet IDs, one for the preferred file server and one for the standby file server. You specify one of these subnets as the preferred subnet using the `WindowsConfiguration > PreferredSubnetID` or `OntapConfiguration > PreferredSubnetID` properties. For more information about Multi-AZ file system configuration, see [ Availability and durability: Single-AZ and Multi-AZ file systems] in the *Amazon FSx for Windows User Guide* and [ Availability and durability] in the *Amazon FSx for ONTAP User Guide*.
For Windows ‘SINGLE_AZ_1` and `SINGLE_AZ_2` and all Lustre deployment types, provide exactly one subnet ID. The file server is launched in that subnet’s Availability Zone.
[1]: docs.aws.amazon.com/fsx/latest/WindowsGuide/high-availability-multiAZ.html [2]: docs.aws.amazon.com/fsx/latest/ONTAPGuide/high-availability-multiAZ.html
2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 |
# File 'lib/aws-sdk-fsx/types.rb', line 2601 class CreateFileSystemRequest < Struct.new( :client_request_token, :file_system_type, :storage_capacity, :storage_type, :subnet_ids, :security_group_ids, :tags, :kms_key_id, :windows_configuration, :lustre_configuration, :ontap_configuration, :file_system_type_version, :open_zfs_configuration) SENSITIVE = [] include Aws::Structure end |