Method: Aws::FSx::Types::CreateFileSystemLustreConfiguration#deployment_type

Defined in:
lib/aws-sdk-fsx/types.rb

#deployment_typeString

Choose ‘SCRATCH_1` and `SCRATCH_2` deployment types when you need temporary storage and shorter-term processing of data. The `SCRATCH_2` deployment type provides in-transit encryption of data and higher burst throughput capacity than `SCRATCH_1`.

Choose ‘PERSISTENT_1` deployment type for longer-term storage and workloads and encryption of data in transit. To learn more about deployment types, see [ FSx for Lustre Deployment Options].

Encryption of data in-transit is automatically enabled when you access a ‘SCRATCH_2` or `PERSISTENT_1` file system from Amazon EC2 instances that [support this feature]. (Default = `SCRATCH_1`)

Encryption of data in-transit for ‘SCRATCH_2` and `PERSISTENT_1` deployment types is supported when accessed from supported instance types in supported AWS Regions. To learn more, [Encrypting Data in Transit].

[1]: docs.aws.amazon.com/fsx/latest/LustreGuide/lustre-deployment-types.html [2]: docs.aws.amazon.com/AWSEC2/latest/UserGuide/data- protection.html [3]: docs.aws.amazon.com/fsx/latest/LustreGuide/encryption-in-transit-fsxl.html

Returns:

  • (String)


1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
# File 'lib/aws-sdk-fsx/types.rb', line 1238

class CreateFileSystemLustreConfiguration < Struct.new(
  :weekly_maintenance_start_time,
  :import_path,
  :export_path,
  :imported_file_chunk_size,
  :deployment_type,
  :auto_import_policy,
  :per_unit_storage_throughput,
  :daily_automatic_backup_start_time,
  :automatic_backup_retention_days,
  :copy_tags_to_backups,
  :drive_cache_type)
  SENSITIVE = []
  include Aws::Structure
end