Interface ListServiceQuotasResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListServiceQuotasResponse.Builder,ListServiceQuotasResponse>,SdkBuilder<ListServiceQuotasResponse.Builder,ListServiceQuotasResponse>,SdkPojo,SdkResponse.Builder,ServiceQuotasResponse.Builder
- Enclosing class:
- ListServiceQuotasResponse
public static interface ListServiceQuotasResponse.Builder extends ServiceQuotasResponse.Builder, SdkPojo, CopyableBuilder<ListServiceQuotasResponse.Builder,ListServiceQuotasResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListServiceQuotasResponse.BuildernextToken(String nextToken)If present, indicates that more output is available than is included in the current response.ListServiceQuotasResponse.Builderquotas(Collection<ServiceQuota> quotas)Information about the quotas.ListServiceQuotasResponse.Builderquotas(Consumer<ServiceQuota.Builder>... quotas)Information about the quotas.ListServiceQuotasResponse.Builderquotas(ServiceQuota... quotas)Information about the quotas.-
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, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
Methods inherited from interface software.amazon.awssdk.services.servicequotas.model.ServiceQuotasResponse.Builder
build, responseMetadata, responseMetadata
-
-
-
-
Method Detail
-
nextToken
ListServiceQuotasResponse.Builder nextToken(String nextToken)
If present, indicates that more output is available than is included in the current response. Use this value in the
NextTokenrequest parameter in a subsequent call to the operation to get the next part of the output. You should repeat this until theNextTokenresponse element comes back asnull.- Parameters:
nextToken- If present, indicates that more output is available than is included in the current response. Use this value in theNextTokenrequest parameter in a subsequent call to the operation to get the next part of the output. You should repeat this until theNextTokenresponse element comes back asnull.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
quotas
ListServiceQuotasResponse.Builder quotas(Collection<ServiceQuota> quotas)
Information about the quotas.
- Parameters:
quotas- Information about the quotas.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
quotas
ListServiceQuotasResponse.Builder quotas(ServiceQuota... quotas)
Information about the quotas.
- Parameters:
quotas- Information about the quotas.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
quotas
ListServiceQuotasResponse.Builder quotas(Consumer<ServiceQuota.Builder>... quotas)
Information about the quotas.
This is a convenience method that creates an instance of theServiceQuota.Builderavoiding the need to create one manually viaServiceQuota.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#quotas(List.) - Parameters:
quotas- a consumer that will call methods onServiceQuota.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#quotas(java.util.Collection)
-
-