interface UserAndGroupQuotasProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.FSx.CfnFileSystem.UserAndGroupQuotasProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsfsx#CfnFileSystem_UserAndGroupQuotasProperty | 
|  Java | software.amazon.awscdk.services.fsx.CfnFileSystem.UserAndGroupQuotasProperty | 
|  Python | aws_cdk.aws_fsx.CfnFileSystem.UserAndGroupQuotasProperty | 
|  TypeScript | aws-cdk-lib»aws_fsx»CfnFileSystem»UserAndGroupQuotasProperty | 
Used to configure quotas that define how much storage a user or group can use on an FSx for OpenZFS volume.
For more information, see Volume properties in the FSx for OpenZFS User Guide.
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 userAndGroupQuotasProperty: fsx.CfnFileSystem.UserAndGroupQuotasProperty = {
  id: 123,
  storageCapacityQuotaGiB: 123,
  type: 'type',
};
Properties
| Name | Type | Description | 
|---|---|---|
| id? | number | The ID of the user or group that the quota applies to. | 
| storage | number | The user or group's storage quota, in gibibytes (GiB). | 
| type? | string | Specifies whether the quota applies to a user or group. | 
id?
Type:
number
(optional)
The ID of the user or group that the quota applies to.
storageCapacityQuotaGiB?
Type:
number
(optional)
The user or group's storage quota, in gibibytes (GiB).
type?
Type:
string
(optional)
Specifies whether the quota applies to a user or group.
