Interface CfnVolume.AggregateConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnVolume.AggregateConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnVolume
@Stability(Stable)
public static interface CfnVolume.AggregateConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.fsx.*; AggregateConfigurationProperty aggregateConfigurationProperty = AggregateConfigurationProperty.builder() .aggregates(List.of("aggregates")) .constituentsPerAggregate(123) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnVolume.AggregateConfigurationProperty
static final class
An implementation forCfnVolume.AggregateConfigurationProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAggregates
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.
- See Also:
- The strings in the value of
-
getConstituentsPerAggregate
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.
- See Also:
-
builder
-