Interface ResumeServiceResponse.Builder
-
- All Superinterfaces:
AppRunnerResponse.Builder,AwsResponse.Builder,Buildable,CopyableBuilder<ResumeServiceResponse.Builder,ResumeServiceResponse>,SdkBuilder<ResumeServiceResponse.Builder,ResumeServiceResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ResumeServiceResponse
public static interface ResumeServiceResponse.Builder extends AppRunnerResponse.Builder, SdkPojo, CopyableBuilder<ResumeServiceResponse.Builder,ResumeServiceResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description ResumeServiceResponse.BuilderoperationId(String operationId)The unique ID of the asynchronous operation that this request started.default ResumeServiceResponse.Builderservice(Consumer<Service.Builder> service)A description of the App Runner service that this request just resumed.ResumeServiceResponse.Builderservice(Service service)A description of the App Runner service that this request just resumed.-
Methods inherited from interface software.amazon.awssdk.services.apprunner.model.AppRunnerResponse.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
-
service
ResumeServiceResponse.Builder service(Service service)
A description of the App Runner service that this request just resumed.
- Parameters:
service- A description of the App Runner service that this request just resumed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
service
default ResumeServiceResponse.Builder service(Consumer<Service.Builder> service)
A description of the App Runner service that this request just resumed.
This is a convenience method that creates an instance of theService.Builderavoiding the need to create one manually viaService.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toservice(Service).- Parameters:
service- a consumer that will call methods onService.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
service(Service)
-
operationId
ResumeServiceResponse.Builder operationId(String operationId)
The unique ID of the asynchronous operation that this request started. You can use it combined with the ListOperations call to track the operation's progress.
- Parameters:
operationId- The unique ID of the asynchronous operation that this request started. You can use it combined with the ListOperations call to track the operation's progress.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-