Interface CfnFileSystem.UserAndGroupQuotasProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFileSystem.UserAndGroupQuotasProperty.Jsii$Proxy
- Enclosing class:
CfnFileSystem
@Stability(Stable)
public static interface CfnFileSystem.UserAndGroupQuotasProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.fsx.*;
UserAndGroupQuotasProperty userAndGroupQuotasProperty = UserAndGroupQuotasProperty.builder()
.id(123)
.storageCapacityQuotaGiB(123)
.type("type")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnFileSystem.UserAndGroupQuotasPropertystatic final classAn implementation forCfnFileSystem.UserAndGroupQuotasProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getId
The ID of the user or group that the quota applies to.- See Also:
-
getStorageCapacityQuotaGiB
The user or group's storage quota, in gibibytes (GiB).- See Also:
-
getType
Specifies whether the quota applies to a user or group.- See Also:
-
builder
-