Interface StopExecutionRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<StopExecutionRequest.Builder,StopExecutionRequest>,SdkBuilder<StopExecutionRequest.Builder,StopExecutionRequest>,SdkPojo,SdkRequest.Builder,SfnRequest.Builder
- Enclosing class:
- StopExecutionRequest
public static interface StopExecutionRequest.Builder extends SfnRequest.Builder, SdkPojo, CopyableBuilder<StopExecutionRequest.Builder,StopExecutionRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StopExecutionRequest.Buildercause(String causeValue)A more detailed explanation of the cause of the failure.StopExecutionRequest.Buildererror(String error)The error code of the failure.StopExecutionRequest.BuilderexecutionArn(String executionArn)The Amazon Resource Name (ARN) of the execution to stop.StopExecutionRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)StopExecutionRequest.BuilderoverrideConfiguration(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.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.services.sfn.model.SfnRequest.Builder
build
-
-
-
-
Method Detail
-
executionArn
StopExecutionRequest.Builder executionArn(String executionArn)
The Amazon Resource Name (ARN) of the execution to stop.
- Parameters:
executionArn- The Amazon Resource Name (ARN) of the execution to stop.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
error
StopExecutionRequest.Builder error(String error)
The error code of the failure.
- Parameters:
error- The error code of the failure.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
cause
StopExecutionRequest.Builder cause(String causeValue)
A more detailed explanation of the cause of the failure.
- Parameters:
causeValue- A more detailed explanation of the cause of the failure.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
StopExecutionRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
StopExecutionRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-