Interface UpdateApplicationResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,CopyableBuilder<UpdateApplicationResponse.Builder,UpdateApplicationResponse>
,EmrServerlessResponse.Builder
,SdkBuilder<UpdateApplicationResponse.Builder,UpdateApplicationResponse>
,SdkPojo
,SdkResponse.Builder
- Enclosing class:
- UpdateApplicationResponse
public static interface UpdateApplicationResponse.Builder extends EmrServerlessResponse.Builder, SdkPojo, CopyableBuilder<UpdateApplicationResponse.Builder,UpdateApplicationResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default UpdateApplicationResponse.Builder
application(Consumer<Application.Builder> application)
Information about the updated application.UpdateApplicationResponse.Builder
application(Application application)
Information about the updated application.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.emrserverless.model.EmrServerlessResponse.Builder
build, responseMetadata, responseMetadata
-
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
-
application
UpdateApplicationResponse.Builder application(Application application)
Information about the updated application.
- Parameters:
application
- Information about the updated application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
application
default UpdateApplicationResponse.Builder application(Consumer<Application.Builder> application)
Information about the updated application.
This is a convenience method that creates an instance of theApplication.Builder
avoiding the need to create one manually viaApplication.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toapplication(Application)
.- Parameters:
application
- a consumer that will call methods onApplication.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
application(Application)
-
-