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.Builder
accountQuotas(Collection<AccountQuota> accountQuotas)
A list ofAccountQuota
objects.DescribeAccountAttributesResponse.Builder
accountQuotas(Consumer<AccountQuota.Builder>... accountQuotas)
A list ofAccountQuota
objects.DescribeAccountAttributesResponse.Builder
accountQuotas(AccountQuota... accountQuotas)
A list ofAccountQuota
objects.-
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
AccountQuota
objects. 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 ofAccountQuota
objects. 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
AccountQuota
objects. 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 ofAccountQuota
objects. 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 theAccountQuota
objects. Within this list, each quota has a name, a count of usage toward the quota maximum, and a maximum value for the quota.AccountQuota.Builder
avoiding the need to create one manually viaAccountQuota.builder()
.When the
Consumer
completes,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
)
-
-