Class: Aws::Snowball::Types::S3OnDeviceServiceConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::Snowball::Types::S3OnDeviceServiceConfiguration
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-snowball/types.rb
Overview
Amazon S3 compatible storage on Snow family devices configuration items.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#fault_tolerance ⇒ Integer
>Fault tolerance level of the cluster.
-
#service_size ⇒ Integer
Applicable when creating a cluster.
-
#storage_limit ⇒ Float
If the specified storage limit value matches storage limit of one of the defined configurations, that configuration will be used.
-
#storage_unit ⇒ String
Storage unit.
Instance Attribute Details
#fault_tolerance ⇒ Integer
>Fault tolerance level of the cluster. This indicates the number of nodes that can go down without degrading the performance of the cluster. This additional input helps when the specified ‘StorageLimit` matches more than one Amazon S3 compatible storage on Snow family devices service configuration.
2300 2301 2302 2303 2304 2305 2306 2307 |
# File 'lib/aws-sdk-snowball/types.rb', line 2300 class S3OnDeviceServiceConfiguration < Struct.new( :storage_limit, :storage_unit, :service_size, :fault_tolerance) SENSITIVE = [] include Aws::Structure end |
#service_size ⇒ Integer
Applicable when creating a cluster. Specifies how many nodes are needed for Amazon S3 compatible storage on Snow family devices. If specified, the other input can be omitted.
2300 2301 2302 2303 2304 2305 2306 2307 |
# File 'lib/aws-sdk-snowball/types.rb', line 2300 class S3OnDeviceServiceConfiguration < Struct.new( :storage_limit, :storage_unit, :service_size, :fault_tolerance) SENSITIVE = [] include Aws::Structure end |
#storage_limit ⇒ Float
If the specified storage limit value matches storage limit of one of the defined configurations, that configuration will be used. If the specified storage limit value does not match any defined configuration, the request will fail. If more than one configuration has the same storage limit as specified, the other input need to be provided.
2300 2301 2302 2303 2304 2305 2306 2307 |
# File 'lib/aws-sdk-snowball/types.rb', line 2300 class S3OnDeviceServiceConfiguration < Struct.new( :storage_limit, :storage_unit, :service_size, :fault_tolerance) SENSITIVE = [] include Aws::Structure end |
#storage_unit ⇒ String
Storage unit. Currently the only supported unit is TB.
2300 2301 2302 2303 2304 2305 2306 2307 |
# File 'lib/aws-sdk-snowball/types.rb', line 2300 class S3OnDeviceServiceConfiguration < Struct.new( :storage_limit, :storage_unit, :service_size, :fault_tolerance) SENSITIVE = [] include Aws::Structure end |