Interface UpdateGraphqlApiResponse.Builder
-
- All Superinterfaces:
AppSyncResponse.Builder
,AwsResponse.Builder
,Buildable
,CopyableBuilder<UpdateGraphqlApiResponse.Builder,UpdateGraphqlApiResponse>
,SdkBuilder<UpdateGraphqlApiResponse.Builder,UpdateGraphqlApiResponse>
,SdkPojo
,SdkResponse.Builder
- Enclosing class:
- UpdateGraphqlApiResponse
public static interface UpdateGraphqlApiResponse.Builder extends AppSyncResponse.Builder, SdkPojo, CopyableBuilder<UpdateGraphqlApiResponse.Builder,UpdateGraphqlApiResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default UpdateGraphqlApiResponse.Builder
graphqlApi(Consumer<GraphqlApi.Builder> graphqlApi)
The updatedGraphqlApi
object.UpdateGraphqlApiResponse.Builder
graphqlApi(GraphqlApi graphqlApi)
The updatedGraphqlApi
object.-
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
-
graphqlApi
UpdateGraphqlApiResponse.Builder graphqlApi(GraphqlApi graphqlApi)
The updated
GraphqlApi
object.- Parameters:
graphqlApi
- The updatedGraphqlApi
object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
graphqlApi
default UpdateGraphqlApiResponse.Builder graphqlApi(Consumer<GraphqlApi.Builder> graphqlApi)
The updated
This is a convenience method that creates an instance of theGraphqlApi
object.GraphqlApi.Builder
avoiding the need to create one manually viaGraphqlApi.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tographqlApi(GraphqlApi)
.- Parameters:
graphqlApi
- 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:
graphqlApi(GraphqlApi)
-
-