Interface DescribeFlowExecutionRecordsResponse.Builder
-
- All Superinterfaces:
AppflowResponse.Builder,AwsResponse.Builder,Buildable,CopyableBuilder<DescribeFlowExecutionRecordsResponse.Builder,DescribeFlowExecutionRecordsResponse>,SdkBuilder<DescribeFlowExecutionRecordsResponse.Builder,DescribeFlowExecutionRecordsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- DescribeFlowExecutionRecordsResponse
public static interface DescribeFlowExecutionRecordsResponse.Builder extends AppflowResponse.Builder, SdkPojo, CopyableBuilder<DescribeFlowExecutionRecordsResponse.Builder,DescribeFlowExecutionRecordsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeFlowExecutionRecordsResponse.BuilderflowExecutions(Collection<ExecutionRecord> flowExecutions)Returns a list of all instances when this flow was run.DescribeFlowExecutionRecordsResponse.BuilderflowExecutions(Consumer<ExecutionRecord.Builder>... flowExecutions)Returns a list of all instances when this flow was run.DescribeFlowExecutionRecordsResponse.BuilderflowExecutions(ExecutionRecord... flowExecutions)Returns a list of all instances when this flow was run.DescribeFlowExecutionRecordsResponse.BuildernextToken(String nextToken)The pagination token for the next page of data.-
Methods inherited from interface software.amazon.awssdk.services.appflow.model.AppflowResponse.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
-
flowExecutions
DescribeFlowExecutionRecordsResponse.Builder flowExecutions(Collection<ExecutionRecord> flowExecutions)
Returns a list of all instances when this flow was run.
- Parameters:
flowExecutions- Returns a list of all instances when this flow was run.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
flowExecutions
DescribeFlowExecutionRecordsResponse.Builder flowExecutions(ExecutionRecord... flowExecutions)
Returns a list of all instances when this flow was run.
- Parameters:
flowExecutions- Returns a list of all instances when this flow was run.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
flowExecutions
DescribeFlowExecutionRecordsResponse.Builder flowExecutions(Consumer<ExecutionRecord.Builder>... flowExecutions)
Returns a list of all instances when this flow was run.
This is a convenience method that creates an instance of theExecutionRecord.Builderavoiding the need to create one manually viaExecutionRecord.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#flowExecutions(List.) - Parameters:
flowExecutions- a consumer that will call methods onExecutionRecord.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#flowExecutions(java.util.Collection)
-
nextToken
DescribeFlowExecutionRecordsResponse.Builder nextToken(String nextToken)
The pagination token for the next page of data.
- Parameters:
nextToken- The pagination token for the next page of data.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-