Interface ListGraphqlApisResponse.Builder
-
- All Superinterfaces:
AppSyncResponse.Builder,AwsResponse.Builder,Buildable,CopyableBuilder<ListGraphqlApisResponse.Builder,ListGraphqlApisResponse>,SdkBuilder<ListGraphqlApisResponse.Builder,ListGraphqlApisResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListGraphqlApisResponse
public static interface ListGraphqlApisResponse.Builder extends AppSyncResponse.Builder, SdkPojo, CopyableBuilder<ListGraphqlApisResponse.Builder,ListGraphqlApisResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListGraphqlApisResponse.BuildergraphqlApis(Collection<GraphqlApi> graphqlApis)TheGraphqlApiobjects.ListGraphqlApisResponse.BuildergraphqlApis(Consumer<GraphqlApi.Builder>... graphqlApis)TheGraphqlApiobjects.ListGraphqlApisResponse.BuildergraphqlApis(GraphqlApi... graphqlApis)TheGraphqlApiobjects.ListGraphqlApisResponse.BuildernextToken(String nextToken)An identifier to pass in the next request to this operation 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, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
graphqlApis
ListGraphqlApisResponse.Builder graphqlApis(Collection<GraphqlApi> graphqlApis)
The
GraphqlApiobjects.- Parameters:
graphqlApis- TheGraphqlApiobjects.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
graphqlApis
ListGraphqlApisResponse.Builder graphqlApis(GraphqlApi... graphqlApis)
The
GraphqlApiobjects.- Parameters:
graphqlApis- TheGraphqlApiobjects.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
graphqlApis
ListGraphqlApisResponse.Builder graphqlApis(Consumer<GraphqlApi.Builder>... graphqlApis)
The
This is a convenience method that creates an instance of theGraphqlApiobjects.GraphqlApi.Builderavoiding the need to create one manually viaGraphqlApi.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#graphqlApis(List.) - Parameters:
graphqlApis- a consumer that will call methods onGraphqlApi.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#graphqlApis(java.util.Collection)
-
nextToken
ListGraphqlApisResponse.Builder nextToken(String nextToken)
An identifier to pass in the next request to this operation to return the next set of items in the list.
- Parameters:
nextToken- An identifier to pass in the next request to this operation 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.
-
-