Interface ListApisResponse.Builder
-
- All Superinterfaces:
AppSyncResponse.Builder,AwsResponse.Builder,Buildable,CopyableBuilder<ListApisResponse.Builder,ListApisResponse>,SdkBuilder<ListApisResponse.Builder,ListApisResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListApisResponse
public static interface ListApisResponse.Builder extends AppSyncResponse.Builder, SdkPojo, CopyableBuilder<ListApisResponse.Builder,ListApisResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListApisResponse.Builderapis(Collection<Api> apis)TheApiobjects.ListApisResponse.Builderapis(Consumer<Api.Builder>... apis)TheApiobjects.ListApisResponse.Builderapis(Api... apis)TheApiobjects.ListApisResponse.BuildernextToken(String nextToken)An identifier that was returned from the previous call to this operation, which you can use to return the next set of items in the list.-
Methods inherited from interface software.amazon.awssdk.services.appsync.model.AppSyncResponse.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
-
apis
ListApisResponse.Builder apis(Collection<Api> apis)
The
Apiobjects.- Parameters:
apis- TheApiobjects.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
apis
ListApisResponse.Builder apis(Api... apis)
The
Apiobjects.- Parameters:
apis- TheApiobjects.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
apis
ListApisResponse.Builder apis(Consumer<Api.Builder>... apis)
The
This is a convenience method that creates an instance of theApiobjects.Api.Builderavoiding the need to create one manually viaApi.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#apis(List.) - Parameters:
apis- 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:
#apis(java.util.Collection)
-
nextToken
ListApisResponse.Builder nextToken(String nextToken)
An identifier that was returned from the previous call to this operation, which you can use to return the next set of items in the list.
- Parameters:
nextToken- An identifier that was returned from the previous call to this operation, which you can use to return the next set of items in the list.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-