Interface PrepareFlowResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,BedrockAgentResponse.Builder,Buildable,CopyableBuilder<PrepareFlowResponse.Builder,PrepareFlowResponse>,SdkBuilder<PrepareFlowResponse.Builder,PrepareFlowResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- PrepareFlowResponse
public static interface PrepareFlowResponse.Builder extends BedrockAgentResponse.Builder, SdkPojo, CopyableBuilder<PrepareFlowResponse.Builder,PrepareFlowResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PrepareFlowResponse.Builderid(String id)The unique identifier of the flow.PrepareFlowResponse.Builderstatus(String status)The status of the flow.PrepareFlowResponse.Builderstatus(FlowStatus status)The status of the flow.-
Methods inherited from interface software.amazon.awssdk.services.bedrockagent.model.BedrockAgentResponse.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, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
id
PrepareFlowResponse.Builder id(String id)
The unique identifier of the flow.
- Parameters:
id- The unique identifier of the flow.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
PrepareFlowResponse.Builder status(String status)
The status of the flow. When you submit this request, the status will be
NotPrepared. If preparation succeeds, the status becomesPrepared. If it fails, the status becomesFAILED.- Parameters:
status- The status of the flow. When you submit this request, the status will beNotPrepared. If preparation succeeds, the status becomesPrepared. If it fails, the status becomesFAILED.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FlowStatus,FlowStatus
-
status
PrepareFlowResponse.Builder status(FlowStatus status)
The status of the flow. When you submit this request, the status will be
NotPrepared. If preparation succeeds, the status becomesPrepared. If it fails, the status becomesFAILED.- Parameters:
status- The status of the flow. When you submit this request, the status will beNotPrepared. If preparation succeeds, the status becomesPrepared. If it fails, the status becomesFAILED.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FlowStatus,FlowStatus
-
-