Interface UpdateJobRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CopyableBuilder<UpdateJobRequest.Builder,UpdateJobRequest>
,GlueRequest.Builder
,SdkBuilder<UpdateJobRequest.Builder,UpdateJobRequest>
,SdkPojo
,SdkRequest.Builder
- Enclosing class:
- UpdateJobRequest
public static interface UpdateJobRequest.Builder extends GlueRequest.Builder, SdkPojo, CopyableBuilder<UpdateJobRequest.Builder,UpdateJobRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description UpdateJobRequest.Builder
jobName(String jobName)
The name of the job definition to update.default UpdateJobRequest.Builder
jobUpdate(Consumer<JobUpdate.Builder> jobUpdate)
Specifies the values with which to update the job definition.UpdateJobRequest.Builder
jobUpdate(JobUpdate jobUpdate)
Specifies the values with which to update the job definition.UpdateJobRequest.Builder
overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
UpdateJobRequest.Builder
overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.glue.model.GlueRequest.Builder
build
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
jobName
UpdateJobRequest.Builder jobName(String jobName)
The name of the job definition to update.
- Parameters:
jobName
- The name of the job definition to update.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
jobUpdate
UpdateJobRequest.Builder jobUpdate(JobUpdate jobUpdate)
Specifies the values with which to update the job definition. Unspecified configuration is removed or reset to default values.
- Parameters:
jobUpdate
- Specifies the values with which to update the job definition. Unspecified configuration is removed or reset to default values.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
jobUpdate
default UpdateJobRequest.Builder jobUpdate(Consumer<JobUpdate.Builder> jobUpdate)
Specifies the values with which to update the job definition. Unspecified configuration is removed or reset to default values.
This is a convenience method that creates an instance of theJobUpdate.Builder
avoiding the need to create one manually viaJobUpdate.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tojobUpdate(JobUpdate)
.- Parameters:
jobUpdate
- a consumer that will call methods onJobUpdate.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
jobUpdate(JobUpdate)
-
overrideConfiguration
UpdateJobRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
overrideConfiguration
UpdateJobRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
-