Class: Aws::FSx::Types::CreateFileCacheLustreConfiguration
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::FSx::Types::CreateFileCacheLustreConfiguration
 
- Defined in:
- gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb
Overview
The Amazon File Cache configuration for the cache that you are creating.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #deployment_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Specifies the cache deployment type, which must be CACHE_1.
- 
  
    
      #metadata_configuration  ⇒ Types::FileCacheLustreMetadataConfiguration 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The configuration for a Lustre MDT (Metadata Target) storage volume. 
- 
  
    
      #per_unit_storage_throughput  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Provisions the amount of read and write throughput for each 1 tebibyte (TiB) of cache storage capacity, in MB/s/TiB. 
- 
  
    
      #weekly_maintenance_start_time  ⇒ 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. 
Instance Attribute Details
#deployment_type ⇒ String
Specifies the cache deployment type, which must be CACHE_1.
| 1535 1536 1537 1538 1539 1540 1541 1542 | # File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 1535 class CreateFileCacheLustreConfiguration < Struct.new( :per_unit_storage_throughput, :deployment_type, :weekly_maintenance_start_time, :metadata_configuration) SENSITIVE = [] include Aws::Structure end | 
#metadata_configuration ⇒ Types::FileCacheLustreMetadataConfiguration
The configuration for a Lustre MDT (Metadata Target) storage volume.
| 1535 1536 1537 1538 1539 1540 1541 1542 | # File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 1535 class CreateFileCacheLustreConfiguration < Struct.new( :per_unit_storage_throughput, :deployment_type, :weekly_maintenance_start_time, :metadata_configuration) SENSITIVE = [] include Aws::Structure end | 
#per_unit_storage_throughput ⇒ Integer
Provisions the amount of read and write throughput for each 1
tebibyte (TiB) of cache storage capacity, in MB/s/TiB. The only
supported value is 1000.
| 1535 1536 1537 1538 1539 1540 1541 1542 | # File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 1535 class CreateFileCacheLustreConfiguration < Struct.new( :per_unit_storage_throughput, :deployment_type, :weekly_maintenance_start_time, :metadata_configuration) SENSITIVE = [] include Aws::Structure end | 
#weekly_maintenance_start_time ⇒ 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.
For example, 1:05:00 specifies maintenance at 5 AM Monday.
| 1535 1536 1537 1538 1539 1540 1541 1542 | # File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 1535 class CreateFileCacheLustreConfiguration < Struct.new( :per_unit_storage_throughput, :deployment_type, :weekly_maintenance_start_time, :metadata_configuration) SENSITIVE = [] include Aws::Structure end |