Interface DescribeAccountAttributesResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<DescribeAccountAttributesResponse.Builder,DescribeAccountAttributesResponse>,RdsResponse.Builder,SdkBuilder<DescribeAccountAttributesResponse.Builder,DescribeAccountAttributesResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- DescribeAccountAttributesResponse
public static interface DescribeAccountAttributesResponse.Builder extends RdsResponse.Builder, SdkPojo, CopyableBuilder<DescribeAccountAttributesResponse.Builder,DescribeAccountAttributesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeAccountAttributesResponse.BuilderaccountQuotas(Collection<AccountQuota> accountQuotas)A list ofAccountQuotaobjects.DescribeAccountAttributesResponse.BuilderaccountQuotas(Consumer<AccountQuota.Builder>... accountQuotas)A list ofAccountQuotaobjects.DescribeAccountAttributesResponse.BuilderaccountQuotas(AccountQuota... accountQuotas)A list ofAccountQuotaobjects.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.rds.model.RdsResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
accountQuotas
DescribeAccountAttributesResponse.Builder accountQuotas(Collection<AccountQuota> accountQuotas)
A list of
AccountQuotaobjects. Within this list, each quota has a name, a count of usage toward the quota maximum, and a maximum value for the quota.- Parameters:
accountQuotas- A list ofAccountQuotaobjects. Within this list, each quota has a name, a count of usage toward the quota maximum, and a maximum value for the quota.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
accountQuotas
DescribeAccountAttributesResponse.Builder accountQuotas(AccountQuota... accountQuotas)
A list of
AccountQuotaobjects. Within this list, each quota has a name, a count of usage toward the quota maximum, and a maximum value for the quota.- Parameters:
accountQuotas- A list ofAccountQuotaobjects. Within this list, each quota has a name, a count of usage toward the quota maximum, and a maximum value for the quota.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
accountQuotas
DescribeAccountAttributesResponse.Builder accountQuotas(Consumer<AccountQuota.Builder>... accountQuotas)
A list of
This is a convenience method that creates an instance of theAccountQuotaobjects. Within this list, each quota has a name, a count of usage toward the quota maximum, and a maximum value for the quota.AccountQuota.Builderavoiding the need to create one manually viaAccountQuota.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#accountQuotas(List.) - Parameters:
accountQuotas- a consumer that will call methods onAccountQuota.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#accountQuotas(java.util.Collection)
-
-