Interface AccountQuota.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AccountQuota.Builder,AccountQuota>,SdkBuilder<AccountQuota.Builder,AccountQuota>,SdkPojo
- Enclosing class:
- AccountQuota
public static interface AccountQuota.Builder extends SdkPojo, CopyableBuilder<AccountQuota.Builder,AccountQuota>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AccountQuota.BuilderaccountQuotaName(String accountQuotaName)The name of the Amazon RDS quota for this Amazon Web Services account.AccountQuota.Buildermax(Long max)The maximum allowed value for the quota.AccountQuota.Builderused(Long used)The amount currently used toward the quota maximum.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
accountQuotaName
AccountQuota.Builder accountQuotaName(String accountQuotaName)
The name of the Amazon RDS quota for this Amazon Web Services account.
- Parameters:
accountQuotaName- The name of the Amazon RDS quota for this Amazon Web Services account.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
used
AccountQuota.Builder used(Long used)
The amount currently used toward the quota maximum.
- Parameters:
used- The amount currently used toward the quota maximum.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
max
AccountQuota.Builder max(Long max)
The maximum allowed value for the quota.
- Parameters:
max- The maximum allowed value for the quota.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-