Interface StopFlowExecutionResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,BedrockAgentRuntimeResponse.Builder,Buildable,CopyableBuilder<StopFlowExecutionResponse.Builder,StopFlowExecutionResponse>,SdkBuilder<StopFlowExecutionResponse.Builder,StopFlowExecutionResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- StopFlowExecutionResponse
@Mutable @NotThreadSafe public static interface StopFlowExecutionResponse.Builder extends BedrockAgentRuntimeResponse.Builder, SdkPojo, CopyableBuilder<StopFlowExecutionResponse.Builder,StopFlowExecutionResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StopFlowExecutionResponse.BuilderexecutionArn(String executionArn)The Amazon Resource Name (ARN) that uniquely identifies the flow execution that was stopped.StopFlowExecutionResponse.Builderstatus(String status)The updated status of the flow execution after the stop request.StopFlowExecutionResponse.Builderstatus(FlowExecutionStatus status)The updated status of the flow execution after the stop request.-
Methods inherited from interface software.amazon.awssdk.services.bedrockagentruntime.model.BedrockAgentRuntimeResponse.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
-
executionArn
StopFlowExecutionResponse.Builder executionArn(String executionArn)
The Amazon Resource Name (ARN) that uniquely identifies the flow execution that was stopped.
- Parameters:
executionArn- The Amazon Resource Name (ARN) that uniquely identifies the flow execution that was stopped.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
StopFlowExecutionResponse.Builder status(String status)
The updated status of the flow execution after the stop request. This will typically be ABORTED if the execution was successfully stopped.
- Parameters:
status- The updated status of the flow execution after the stop request. This will typically be ABORTED if the execution was successfully stopped.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FlowExecutionStatus,FlowExecutionStatus
-
status
StopFlowExecutionResponse.Builder status(FlowExecutionStatus status)
The updated status of the flow execution after the stop request. This will typically be ABORTED if the execution was successfully stopped.
- Parameters:
status- The updated status of the flow execution after the stop request. This will typically be ABORTED if the execution was successfully stopped.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FlowExecutionStatus,FlowExecutionStatus
-
-