Interface CancelFlowExecutionsRequest.Builder
-
- All Superinterfaces:
AppflowRequest.Builder
,AwsRequest.Builder
,Buildable
,CopyableBuilder<CancelFlowExecutionsRequest.Builder,CancelFlowExecutionsRequest>
,SdkBuilder<CancelFlowExecutionsRequest.Builder,CancelFlowExecutionsRequest>
,SdkPojo
,SdkRequest.Builder
- Enclosing class:
- CancelFlowExecutionsRequest
public static interface CancelFlowExecutionsRequest.Builder extends AppflowRequest.Builder, SdkPojo, CopyableBuilder<CancelFlowExecutionsRequest.Builder,CancelFlowExecutionsRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CancelFlowExecutionsRequest.Builder
executionIds(String... executionIds)
The ID of each active run to cancel.CancelFlowExecutionsRequest.Builder
executionIds(Collection<String> executionIds)
The ID of each active run to cancel.CancelFlowExecutionsRequest.Builder
flowName(String flowName)
The name of a flow with active runs that you want to cancel.CancelFlowExecutionsRequest.Builder
overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
CancelFlowExecutionsRequest.Builder
overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
-
Methods inherited from interface software.amazon.awssdk.services.appflow.model.AppflowRequest.Builder
build
-
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, sdkFields
-
-
-
-
Method Detail
-
flowName
CancelFlowExecutionsRequest.Builder flowName(String flowName)
The name of a flow with active runs that you want to cancel.
- Parameters:
flowName
- The name of a flow with active runs that you want to cancel.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
executionIds
CancelFlowExecutionsRequest.Builder executionIds(Collection<String> executionIds)
The ID of each active run to cancel. These runs must belong to the flow you specify in your request.
If you omit this parameter, your request ends all active runs that belong to the flow.
- Parameters:
executionIds
- The ID of each active run to cancel. These runs must belong to the flow you specify in your request.If you omit this parameter, your request ends all active runs that belong to the flow.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
executionIds
CancelFlowExecutionsRequest.Builder executionIds(String... executionIds)
The ID of each active run to cancel. These runs must belong to the flow you specify in your request.
If you omit this parameter, your request ends all active runs that belong to the flow.
- Parameters:
executionIds
- The ID of each active run to cancel. These runs must belong to the flow you specify in your request.If you omit this parameter, your request ends all active runs that belong to the flow.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
CancelFlowExecutionsRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
overrideConfiguration
CancelFlowExecutionsRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
-