interface AggregateConfigurationProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.FSx.CfnVolume.AggregateConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsfsx#CfnVolume_AggregateConfigurationProperty |
Java | software.amazon.awscdk.services.fsx.CfnVolume.AggregateConfigurationProperty |
Python | aws_cdk.aws_fsx.CfnVolume.AggregateConfigurationProperty |
TypeScript | aws-cdk-lib » aws_fsx » CfnVolume » AggregateConfigurationProperty |
Use to specify configuration options for a volume’s storage aggregate or aggregates.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_fsx as fsx } from 'aws-cdk-lib';
const aggregateConfigurationProperty: fsx.CfnVolume.AggregateConfigurationProperty = {
aggregates: ['aggregates'],
constituentsPerAggregate: 123,
};
Properties
Name | Type | Description |
---|---|---|
aggregates? | string[] | The list of aggregates that this volume resides on. |
constituents | number | Used to explicitly set the number of constituents within the FlexGroup per storage aggregate. |
aggregates?
Type:
string[]
(optional)
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 asaggrX
, where X is a number between 1 and 12. - 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.
constituentsPerAggregate?
Type:
number
(optional)
Used to explicitly set the number of constituents within the FlexGroup per storage aggregate.
This field is optional when creating a FlexGroup volume. If unspecified, the default value will be 8. This field cannot be provided when creating a FlexVol volume.