Interface ListFlowsResponse.Builder
-
- All Superinterfaces:
AppflowResponse.Builder,AwsResponse.Builder,Buildable,CopyableBuilder<ListFlowsResponse.Builder,ListFlowsResponse>,SdkBuilder<ListFlowsResponse.Builder,ListFlowsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListFlowsResponse
public static interface ListFlowsResponse.Builder extends AppflowResponse.Builder, SdkPojo, CopyableBuilder<ListFlowsResponse.Builder,ListFlowsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListFlowsResponse.Builderflows(Collection<FlowDefinition> flows)The list of flows associated with your account.ListFlowsResponse.Builderflows(Consumer<FlowDefinition.Builder>... flows)The list of flows associated with your account.ListFlowsResponse.Builderflows(FlowDefinition... flows)The list of flows associated with your account.ListFlowsResponse.BuildernextToken(String nextToken)The pagination token for 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
-
flows
ListFlowsResponse.Builder flows(Collection<FlowDefinition> flows)
The list of flows associated with your account.
- Parameters:
flows- The list of flows associated with your account.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
flows
ListFlowsResponse.Builder flows(FlowDefinition... flows)
The list of flows associated with your account.
- Parameters:
flows- The list of flows associated with your account.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
flows
ListFlowsResponse.Builder flows(Consumer<FlowDefinition.Builder>... flows)
The list of flows associated with your account.
This is a convenience method that creates an instance of theFlowDefinition.Builderavoiding the need to create one manually viaFlowDefinition.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#flows(List.) - Parameters:
flows- a consumer that will call methods onFlowDefinition.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#flows(java.util.Collection)
-
nextToken
ListFlowsResponse.Builder nextToken(String nextToken)
The pagination token for next page of data.
- Parameters:
nextToken- The pagination token for next page of data.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-