Interface CancelJobExecutionRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CopyableBuilder<CancelJobExecutionRequest.Builder,CancelJobExecutionRequest>
,IotRequest.Builder
,SdkBuilder<CancelJobExecutionRequest.Builder,CancelJobExecutionRequest>
,SdkPojo
,SdkRequest.Builder
- Enclosing class:
- CancelJobExecutionRequest
public static interface CancelJobExecutionRequest.Builder extends IotRequest.Builder, SdkPojo, CopyableBuilder<CancelJobExecutionRequest.Builder,CancelJobExecutionRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CancelJobExecutionRequest.Builder
expectedVersion(Long expectedVersion)
(Optional) The expected current version of the job execution.CancelJobExecutionRequest.Builder
force(Boolean force)
(Optional) Iftrue
the job execution will be canceled if it has status IN_PROGRESS or QUEUED, otherwise the job execution will be canceled only if it has status QUEUED.CancelJobExecutionRequest.Builder
jobId(String jobId)
The ID of the job to be canceled.CancelJobExecutionRequest.Builder
overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
CancelJobExecutionRequest.Builder
overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
CancelJobExecutionRequest.Builder
statusDetails(Map<String,String> statusDetails)
A collection of name/value pairs that describe the status of the job execution.CancelJobExecutionRequest.Builder
thingName(String thingName)
The name of the thing whose execution of the job will be canceled.-
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.iot.model.IotRequest.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
-
jobId
CancelJobExecutionRequest.Builder jobId(String jobId)
The ID of the job to be canceled.
- Parameters:
jobId
- The ID of the job to be canceled.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
thingName
CancelJobExecutionRequest.Builder thingName(String thingName)
The name of the thing whose execution of the job will be canceled.
- Parameters:
thingName
- The name of the thing whose execution of the job will be canceled.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
force
CancelJobExecutionRequest.Builder force(Boolean force)
(Optional) If
true
the job execution will be canceled if it has status IN_PROGRESS or QUEUED, otherwise the job execution will be canceled only if it has status QUEUED. If you attempt to cancel a job execution that is IN_PROGRESS, and you do not setforce
totrue
, then anInvalidStateTransitionException
will be thrown. The default isfalse
.Canceling a job execution which is "IN_PROGRESS", will cause the device to be unable to update the job execution status. Use caution and ensure that the device is able to recover to a valid state.
- Parameters:
force
- (Optional) Iftrue
the job execution will be canceled if it has status IN_PROGRESS or QUEUED, otherwise the job execution will be canceled only if it has status QUEUED. If you attempt to cancel a job execution that is IN_PROGRESS, and you do not setforce
totrue
, then anInvalidStateTransitionException
will be thrown. The default isfalse
.Canceling a job execution which is "IN_PROGRESS", will cause the device to be unable to update the job execution status. Use caution and ensure that the device is able to recover to a valid state.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
expectedVersion
CancelJobExecutionRequest.Builder expectedVersion(Long expectedVersion)
(Optional) The expected current version of the job execution. Each time you update the job execution, its version is incremented. If the version of the job execution stored in Jobs does not match, the update is rejected with a VersionMismatch error, and an ErrorResponse that contains the current job execution status data is returned. (This makes it unnecessary to perform a separate DescribeJobExecution request in order to obtain the job execution status data.)
- Parameters:
expectedVersion
- (Optional) The expected current version of the job execution. Each time you update the job execution, its version is incremented. If the version of the job execution stored in Jobs does not match, the update is rejected with a VersionMismatch error, and an ErrorResponse that contains the current job execution status data is returned. (This makes it unnecessary to perform a separate DescribeJobExecution request in order to obtain the job execution status data.)- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
statusDetails
CancelJobExecutionRequest.Builder statusDetails(Map<String,String> statusDetails)
A collection of name/value pairs that describe the status of the job execution. If not specified, the statusDetails are unchanged. You can specify at most 10 name/value pairs.
- Parameters:
statusDetails
- A collection of name/value pairs that describe the status of the job execution. If not specified, the statusDetails are unchanged. You can specify at most 10 name/value pairs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
CancelJobExecutionRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
overrideConfiguration
CancelJobExecutionRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
-