Interface CountOpenWorkflowExecutionsRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CopyableBuilder<CountOpenWorkflowExecutionsRequest.Builder,CountOpenWorkflowExecutionsRequest>
,SdkBuilder<CountOpenWorkflowExecutionsRequest.Builder,CountOpenWorkflowExecutionsRequest>
,SdkPojo
,SdkRequest.Builder
,SwfRequest.Builder
- Enclosing class:
- CountOpenWorkflowExecutionsRequest
public static interface CountOpenWorkflowExecutionsRequest.Builder extends SwfRequest.Builder, SdkPojo, CopyableBuilder<CountOpenWorkflowExecutionsRequest.Builder,CountOpenWorkflowExecutionsRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description CountOpenWorkflowExecutionsRequest.Builder
domain(String domain)
The name of the domain containing the workflow executions to count.default CountOpenWorkflowExecutionsRequest.Builder
executionFilter(Consumer<WorkflowExecutionFilter.Builder> executionFilter)
If specified, only workflow executions matching theWorkflowId
in the filter are counted.CountOpenWorkflowExecutionsRequest.Builder
executionFilter(WorkflowExecutionFilter executionFilter)
If specified, only workflow executions matching theWorkflowId
in the filter are counted.CountOpenWorkflowExecutionsRequest.Builder
overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
CountOpenWorkflowExecutionsRequest.Builder
overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
default CountOpenWorkflowExecutionsRequest.Builder
startTimeFilter(Consumer<ExecutionTimeFilter.Builder> startTimeFilter)
Specifies the start time criteria that workflow executions must meet in order to be counted.CountOpenWorkflowExecutionsRequest.Builder
startTimeFilter(ExecutionTimeFilter startTimeFilter)
Specifies the start time criteria that workflow executions must meet in order to be counted.default CountOpenWorkflowExecutionsRequest.Builder
tagFilter(Consumer<TagFilter.Builder> tagFilter)
If specified, only executions that have a tag that matches the filter are counted.CountOpenWorkflowExecutionsRequest.Builder
tagFilter(TagFilter tagFilter)
If specified, only executions that have a tag that matches the filter are counted.default CountOpenWorkflowExecutionsRequest.Builder
typeFilter(Consumer<WorkflowTypeFilter.Builder> typeFilter)
Specifies the type of the workflow executions to be counted.CountOpenWorkflowExecutionsRequest.Builder
typeFilter(WorkflowTypeFilter typeFilter)
Specifies the type of the workflow executions to be counted.-
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
CountOpenWorkflowExecutionsRequest.Builder domain(String domain)
The name of the domain containing the workflow executions to count.
- Parameters:
domain
- The name of the domain containing the workflow executions to count.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
startTimeFilter
CountOpenWorkflowExecutionsRequest.Builder startTimeFilter(ExecutionTimeFilter startTimeFilter)
Specifies the start time criteria that workflow executions must meet in order to be counted.
- Parameters:
startTimeFilter
- Specifies the start time criteria that workflow executions must meet in order to be counted.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
startTimeFilter
default CountOpenWorkflowExecutionsRequest.Builder startTimeFilter(Consumer<ExecutionTimeFilter.Builder> startTimeFilter)
Specifies the start time criteria that workflow executions must meet in order to be counted.
This is a convenience method that creates an instance of theExecutionTimeFilter.Builder
avoiding the need to create one manually viaExecutionTimeFilter.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tostartTimeFilter(ExecutionTimeFilter)
.- Parameters:
startTimeFilter
- a consumer that will call methods onExecutionTimeFilter.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
startTimeFilter(ExecutionTimeFilter)
-
typeFilter
CountOpenWorkflowExecutionsRequest.Builder typeFilter(WorkflowTypeFilter typeFilter)
Specifies the type of the workflow executions to be counted.
executionFilter
,typeFilter
andtagFilter
are mutually exclusive. You can specify at most one of these in a request.- Parameters:
typeFilter
- Specifies the type of the workflow executions to be counted.executionFilter
,typeFilter
andtagFilter
are mutually exclusive. You can specify at most one of these in a request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
typeFilter
default CountOpenWorkflowExecutionsRequest.Builder typeFilter(Consumer<WorkflowTypeFilter.Builder> typeFilter)
Specifies the type of the workflow executions to be counted.
executionFilter
,typeFilter
andtagFilter
are mutually exclusive. You can specify at most one of these in a request.WorkflowTypeFilter.Builder
avoiding the need to create one manually viaWorkflowTypeFilter.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed totypeFilter(WorkflowTypeFilter)
.- Parameters:
typeFilter
- a consumer that will call methods onWorkflowTypeFilter.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
typeFilter(WorkflowTypeFilter)
-
tagFilter
CountOpenWorkflowExecutionsRequest.Builder tagFilter(TagFilter tagFilter)
If specified, only executions that have a tag that matches the filter are counted.
executionFilter
,typeFilter
andtagFilter
are mutually exclusive. You can specify at most one of these in a request.- Parameters:
tagFilter
- If specified, only executions that have a tag that matches the filter are counted.executionFilter
,typeFilter
andtagFilter
are mutually exclusive. You can specify at most one of these in a request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tagFilter
default CountOpenWorkflowExecutionsRequest.Builder tagFilter(Consumer<TagFilter.Builder> tagFilter)
If specified, only executions that have a tag that matches the filter are counted.
executionFilter
,typeFilter
andtagFilter
are mutually exclusive. You can specify at most one of these in a request.TagFilter.Builder
avoiding the need to create one manually viaTagFilter.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed totagFilter(TagFilter)
.- Parameters:
tagFilter
- a consumer that will call methods onTagFilter.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
tagFilter(TagFilter)
-
executionFilter
CountOpenWorkflowExecutionsRequest.Builder executionFilter(WorkflowExecutionFilter executionFilter)
If specified, only workflow executions matching the
WorkflowId
in the filter are counted.executionFilter
,typeFilter
andtagFilter
are mutually exclusive. You can specify at most one of these in a request.- Parameters:
executionFilter
- If specified, only workflow executions matching theWorkflowId
in the filter are counted.executionFilter
,typeFilter
andtagFilter
are mutually exclusive. You can specify at most one of these in a request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
executionFilter
default CountOpenWorkflowExecutionsRequest.Builder executionFilter(Consumer<WorkflowExecutionFilter.Builder> executionFilter)
If specified, only workflow executions matching the
WorkflowId
in the filter are counted.executionFilter
,typeFilter
andtagFilter
are mutually exclusive. You can specify at most one of these in a request.WorkflowExecutionFilter.Builder
avoiding the need to create one manually viaWorkflowExecutionFilter.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toexecutionFilter(WorkflowExecutionFilter)
.- Parameters:
executionFilter
- a consumer that will call methods onWorkflowExecutionFilter.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
executionFilter(WorkflowExecutionFilter)
-
overrideConfiguration
CountOpenWorkflowExecutionsRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
overrideConfiguration
CountOpenWorkflowExecutionsRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
-