CreateFileSystemFromBackupRequest

public struct CreateFileSystemFromBackupRequest : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • Undocumented

    Declaration

    Swift

    public let backupId: String
  • A string of up to 64 ASCII characters that Amazon FSx uses to ensure idempotent creation. This string is automatically filled on your behalf when you use the AWS Command Line Interface (AWS CLI) or an AWS SDK.

    Declaration

    Swift

    public let clientRequestToken: String?
  • Undocumented

    Declaration

    Swift

    public let lustreConfiguration: CreateFileSystemLustreConfiguration?
  • A list of IDs for the security groups that apply to the specified network interfaces created for file system access. These security groups apply to all network interfaces. This value isn’t returned in later DescribeFileSystem requests.

    Declaration

    Swift

    public let securityGroupIds: [String]?
  • Sets the storage type for the Windows file system you’re creating from a backup. Valid values are SSD and HDD. Set to SSD to use solid state drive storage. Supported on all Windows deployment types. Set to HDD to use hard disk drive storage. Supported on SINGLE_AZ_2 and MULTI_AZ_1 Windows file system deployment types. Default value is SSD. HDD and SSD storage types have different minimum storage capacity requirements. A restored file system’s storage capacity is tied to the file system that was backed up. You can create a file system that uses HDD storage from a backup of a file system that used SSD storage only if the original SSD file system had a storage capacity of at least 2000 GiB.

    Declaration

    Swift

    public let storageType: StorageType?
  • Specifies the IDs of the subnets that the file system will be accessible from. For Windows MULTI_AZ_1 file system 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 property. For Windows SINGLE_AZ_1 and SINGLE_AZ_2 deployment types and Lustre file systems, provide exactly one subnet ID. The file server is launched in that subnet’s Availability Zone.

    Declaration

    Swift

    public let subnetIds: [String]
  • The tags to be applied to the file system at file system creation. The key value of the Name tag appears in the console as the file system name.

    Declaration

    Swift

    public let tags: [Tag]?
  • The configuration for this Microsoft Windows file system.

    Declaration

    Swift

    public let windowsConfiguration: CreateFileSystemWindowsConfiguration?
  • Undocumented

    Declaration

    Swift

    public init(backupId: String, clientRequestToken: String? = CreateFileSystemFromBackupRequest.idempotencyToken(), lustreConfiguration: CreateFileSystemLustreConfiguration? = nil, securityGroupIds: [String]? = nil, storageType: StorageType? = nil, subnetIds: [String], tags: [Tag]? = nil, windowsConfiguration: CreateFileSystemWindowsConfiguration? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws