Interface ListFlowDefinitionsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,CopyableBuilder<ListFlowDefinitionsResponse.Builder,ListFlowDefinitionsResponse>
,SageMakerResponse.Builder
,SdkBuilder<ListFlowDefinitionsResponse.Builder,ListFlowDefinitionsResponse>
,SdkPojo
,SdkResponse.Builder
- Enclosing class:
- ListFlowDefinitionsResponse
public static interface ListFlowDefinitionsResponse.Builder extends SageMakerResponse.Builder, SdkPojo, CopyableBuilder<ListFlowDefinitionsResponse.Builder,ListFlowDefinitionsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListFlowDefinitionsResponse.Builder
flowDefinitionSummaries(Collection<FlowDefinitionSummary> flowDefinitionSummaries)
An array of objects describing the flow definitions.ListFlowDefinitionsResponse.Builder
flowDefinitionSummaries(Consumer<FlowDefinitionSummary.Builder>... flowDefinitionSummaries)
An array of objects describing the flow definitions.ListFlowDefinitionsResponse.Builder
flowDefinitionSummaries(FlowDefinitionSummary... flowDefinitionSummaries)
An array of objects describing the flow definitions.ListFlowDefinitionsResponse.Builder
nextToken(String nextToken)
A token to resume pagination.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.sagemaker.model.SageMakerResponse.Builder
build, responseMetadata, responseMetadata
-
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
-
flowDefinitionSummaries
ListFlowDefinitionsResponse.Builder flowDefinitionSummaries(Collection<FlowDefinitionSummary> flowDefinitionSummaries)
An array of objects describing the flow definitions.
- Parameters:
flowDefinitionSummaries
- An array of objects describing the flow definitions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
flowDefinitionSummaries
ListFlowDefinitionsResponse.Builder flowDefinitionSummaries(FlowDefinitionSummary... flowDefinitionSummaries)
An array of objects describing the flow definitions.
- Parameters:
flowDefinitionSummaries
- An array of objects describing the flow definitions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
flowDefinitionSummaries
ListFlowDefinitionsResponse.Builder flowDefinitionSummaries(Consumer<FlowDefinitionSummary.Builder>... flowDefinitionSummaries)
An array of objects describing the flow definitions.
This is a convenience method that creates an instance of theFlowDefinitionSummary.Builder
avoiding the need to create one manually viaFlowDefinitionSummary.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#flowDefinitionSummaries(List
.) - Parameters:
flowDefinitionSummaries
- a consumer that will call methods onFlowDefinitionSummary.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#flowDefinitionSummaries(java.util.Collection
)
-
nextToken
ListFlowDefinitionsResponse.Builder nextToken(String nextToken)
A token to resume pagination.
- Parameters:
nextToken
- A token to resume pagination.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-