Class: Aws::FSx::Types::AggregateConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::FSx::Types::AggregateConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-fsx/types.rb
Overview
Used to specify configuration options for a volume’s storage aggregate or aggregates.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#aggregates ⇒ Array<String>
The list of aggregates that this volume resides on.
-
#total_constituents ⇒ Integer
The total number of constituents this FlexGroup volume has.
Instance Attribute Details
#aggregates ⇒ Array<String>
The list of aggregates that this volume resides on. Aggregates are storage pools which make up your primary storage tier. Each high-availability (HA) pair has one aggregate. The names of the aggregates map to the names of the aggregates in the ONTAP CLI and REST API. For FlexVols, there will always be a single entry.
Amazon FSx responds with an HTTP status code 400 (Bad Request) for the following conditions:
-
The strings in the value of ‘Aggregates` are not are not formatted as `aggrX`, where X is a number between 1 and 6.
-
The value of ‘Aggregates` contains aggregates that are not present.
-
One or more of the aggregates supplied are too close to the volume limit to support adding more volumes.
300 301 302 303 304 305 |
# File 'lib/aws-sdk-fsx/types.rb', line 300 class AggregateConfiguration < Struct.new( :aggregates, :total_constituents) SENSITIVE = [] include Aws::Structure end |
#total_constituents ⇒ Integer
The total number of constituents this FlexGroup volume has. Not applicable for FlexVols.
300 301 302 303 304 305 |
# File 'lib/aws-sdk-fsx/types.rb', line 300 class AggregateConfiguration < Struct.new( :aggregates, :total_constituents) SENSITIVE = [] include Aws::Structure end |