Interface ListRequestedServiceQuotaChangeHistoryResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListRequestedServiceQuotaChangeHistoryResponse.Builder,ListRequestedServiceQuotaChangeHistoryResponse>,SdkBuilder<ListRequestedServiceQuotaChangeHistoryResponse.Builder,ListRequestedServiceQuotaChangeHistoryResponse>,SdkPojo,SdkResponse.Builder,ServiceQuotasResponse.Builder
- Enclosing class:
- ListRequestedServiceQuotaChangeHistoryResponse
public static interface ListRequestedServiceQuotaChangeHistoryResponse.Builder extends ServiceQuotasResponse.Builder, SdkPojo, CopyableBuilder<ListRequestedServiceQuotaChangeHistoryResponse.Builder,ListRequestedServiceQuotaChangeHistoryResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListRequestedServiceQuotaChangeHistoryResponse.BuildernextToken(String nextToken)If present, indicates that more output is available than is included in the current response.ListRequestedServiceQuotaChangeHistoryResponse.BuilderrequestedQuotas(Collection<RequestedServiceQuotaChange> requestedQuotas)Information about the quota increase requests.ListRequestedServiceQuotaChangeHistoryResponse.BuilderrequestedQuotas(Consumer<RequestedServiceQuotaChange.Builder>... requestedQuotas)Information about the quota increase requests.ListRequestedServiceQuotaChangeHistoryResponse.BuilderrequestedQuotas(RequestedServiceQuotaChange... requestedQuotas)Information about the quota increase requests.-
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
ListRequestedServiceQuotaChangeHistoryResponse.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.
-
requestedQuotas
ListRequestedServiceQuotaChangeHistoryResponse.Builder requestedQuotas(Collection<RequestedServiceQuotaChange> requestedQuotas)
Information about the quota increase requests.
- Parameters:
requestedQuotas- Information about the quota increase requests.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
requestedQuotas
ListRequestedServiceQuotaChangeHistoryResponse.Builder requestedQuotas(RequestedServiceQuotaChange... requestedQuotas)
Information about the quota increase requests.
- Parameters:
requestedQuotas- Information about the quota increase requests.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
requestedQuotas
ListRequestedServiceQuotaChangeHistoryResponse.Builder requestedQuotas(Consumer<RequestedServiceQuotaChange.Builder>... requestedQuotas)
Information about the quota increase requests.
This is a convenience method that creates an instance of theRequestedServiceQuotaChange.Builderavoiding the need to create one manually viaRequestedServiceQuotaChange.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#requestedQuotas(List.) - Parameters:
requestedQuotas- a consumer that will call methods onRequestedServiceQuotaChange.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#requestedQuotas(java.util.Collection)
-
-