Interface DescribeWorkflowExecutionRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<DescribeWorkflowExecutionRequest.Builder,DescribeWorkflowExecutionRequest>,SdkBuilder<DescribeWorkflowExecutionRequest.Builder,DescribeWorkflowExecutionRequest>,SdkPojo,SdkRequest.Builder,SwfRequest.Builder
- Enclosing class:
- DescribeWorkflowExecutionRequest
public static interface DescribeWorkflowExecutionRequest.Builder extends SwfRequest.Builder, SdkPojo, CopyableBuilder<DescribeWorkflowExecutionRequest.Builder,DescribeWorkflowExecutionRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description DescribeWorkflowExecutionRequest.Builderdomain(String domain)The name of the domain containing the workflow execution.default DescribeWorkflowExecutionRequest.Builderexecution(Consumer<WorkflowExecution.Builder> execution)The workflow execution to describe.DescribeWorkflowExecutionRequest.Builderexecution(WorkflowExecution execution)The workflow execution to describe.DescribeWorkflowExecutionRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)DescribeWorkflowExecutionRequest.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, sdkFields
-
Methods inherited from interface software.amazon.awssdk.services.swf.model.SwfRequest.Builder
build
-
-
-
-
Method Detail
-
domain
DescribeWorkflowExecutionRequest.Builder domain(String domain)
The name of the domain containing the workflow execution.
- Parameters:
domain- The name of the domain containing the workflow execution.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
execution
DescribeWorkflowExecutionRequest.Builder execution(WorkflowExecution execution)
The workflow execution to describe.
- Parameters:
execution- The workflow execution to describe.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
execution
default DescribeWorkflowExecutionRequest.Builder execution(Consumer<WorkflowExecution.Builder> execution)
The workflow execution to describe.
This is a convenience method that creates an instance of theWorkflowExecution.Builderavoiding the need to create one manually viaWorkflowExecution.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toexecution(WorkflowExecution).- Parameters:
execution- a consumer that will call methods onWorkflowExecution.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
execution(WorkflowExecution)
-
overrideConfiguration
DescribeWorkflowExecutionRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
DescribeWorkflowExecutionRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-