Interface ListConfiguredModelAlgorithmsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CleanRoomsMlResponse.Builder,CopyableBuilder<ListConfiguredModelAlgorithmsResponse.Builder,ListConfiguredModelAlgorithmsResponse>,SdkBuilder<ListConfiguredModelAlgorithmsResponse.Builder,ListConfiguredModelAlgorithmsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListConfiguredModelAlgorithmsResponse
public static interface ListConfiguredModelAlgorithmsResponse.Builder extends CleanRoomsMlResponse.Builder, SdkPojo, CopyableBuilder<ListConfiguredModelAlgorithmsResponse.Builder,ListConfiguredModelAlgorithmsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListConfiguredModelAlgorithmsResponse.BuilderconfiguredModelAlgorithms(Collection<ConfiguredModelAlgorithmSummary> configuredModelAlgorithms)The list of configured model algorithms.ListConfiguredModelAlgorithmsResponse.BuilderconfiguredModelAlgorithms(Consumer<ConfiguredModelAlgorithmSummary.Builder>... configuredModelAlgorithms)The list of configured model algorithms.ListConfiguredModelAlgorithmsResponse.BuilderconfiguredModelAlgorithms(ConfiguredModelAlgorithmSummary... configuredModelAlgorithms)The list of configured model algorithms.ListConfiguredModelAlgorithmsResponse.BuildernextToken(String nextToken)The token value used to access the next page of results.-
Methods inherited from interface software.amazon.awssdk.services.cleanroomsml.model.CleanRoomsMlResponse.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, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
nextToken
ListConfiguredModelAlgorithmsResponse.Builder nextToken(String nextToken)
The token value used to access the next page of results.
- Parameters:
nextToken- The token value used to access the next page of results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
configuredModelAlgorithms
ListConfiguredModelAlgorithmsResponse.Builder configuredModelAlgorithms(Collection<ConfiguredModelAlgorithmSummary> configuredModelAlgorithms)
The list of configured model algorithms.
- Parameters:
configuredModelAlgorithms- The list of configured model algorithms.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
configuredModelAlgorithms
ListConfiguredModelAlgorithmsResponse.Builder configuredModelAlgorithms(ConfiguredModelAlgorithmSummary... configuredModelAlgorithms)
The list of configured model algorithms.
- Parameters:
configuredModelAlgorithms- The list of configured model algorithms.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
configuredModelAlgorithms
ListConfiguredModelAlgorithmsResponse.Builder configuredModelAlgorithms(Consumer<ConfiguredModelAlgorithmSummary.Builder>... configuredModelAlgorithms)
The list of configured model algorithms.
This is a convenience method that creates an instance of theConfiguredModelAlgorithmSummary.Builderavoiding the need to create one manually viaConfiguredModelAlgorithmSummary.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#configuredModelAlgorithms(List.) - Parameters:
configuredModelAlgorithms- a consumer that will call methods onConfiguredModelAlgorithmSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#configuredModelAlgorithms(java.util.Collection)
-
-