Interface GetApisResponse.Builder
-
- All Superinterfaces:
ApiGatewayV2Response.Builder,AwsResponse.Builder,Buildable,CopyableBuilder<GetApisResponse.Builder,GetApisResponse>,SdkBuilder<GetApisResponse.Builder,GetApisResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- GetApisResponse
public static interface GetApisResponse.Builder extends ApiGatewayV2Response.Builder, SdkPojo, CopyableBuilder<GetApisResponse.Builder,GetApisResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GetApisResponse.Builderitems(Collection<Api> items)The elements from this collection.GetApisResponse.Builderitems(Consumer<Api.Builder>... items)The elements from this collection.GetApisResponse.Builderitems(Api... items)The elements from this collection.GetApisResponse.BuildernextToken(String nextToken)The next page of elements from this collection.-
Methods inherited from interface software.amazon.awssdk.services.apigatewayv2.model.ApiGatewayV2Response.Builder
build, responseMetadata, responseMetadata
-
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
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
items
GetApisResponse.Builder items(Collection<Api> items)
The elements from this collection.
- Parameters:
items- The elements from this collection.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
GetApisResponse.Builder items(Api... items)
The elements from this collection.
- Parameters:
items- The elements from this collection.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
GetApisResponse.Builder items(Consumer<Api.Builder>... items)
The elements from this collection.
This is a convenience method that creates an instance of theApi.Builderavoiding the need to create one manually viaApi.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#items(List.) - Parameters:
items- a consumer that will call methods onApi.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#items(java.util.Collection)
-
nextToken
GetApisResponse.Builder nextToken(String nextToken)
The next page of elements from this collection. Not valid for the last element of the collection.
- Parameters:
nextToken- The next page of elements from this collection. Not valid for the last element of the collection.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-