Interface ListTrialComponentsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,CopyableBuilder<ListTrialComponentsResponse.Builder,ListTrialComponentsResponse>
,SageMakerResponse.Builder
,SdkBuilder<ListTrialComponentsResponse.Builder,ListTrialComponentsResponse>
,SdkPojo
,SdkResponse.Builder
- Enclosing class:
- ListTrialComponentsResponse
public static interface ListTrialComponentsResponse.Builder extends SageMakerResponse.Builder, SdkPojo, CopyableBuilder<ListTrialComponentsResponse.Builder,ListTrialComponentsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListTrialComponentsResponse.Builder
nextToken(String nextToken)
A token for getting the next set of components, if there are any.ListTrialComponentsResponse.Builder
trialComponentSummaries(Collection<TrialComponentSummary> trialComponentSummaries)
A list of the summaries of your trial components.ListTrialComponentsResponse.Builder
trialComponentSummaries(Consumer<TrialComponentSummary.Builder>... trialComponentSummaries)
A list of the summaries of your trial components.ListTrialComponentsResponse.Builder
trialComponentSummaries(TrialComponentSummary... trialComponentSummaries)
A list of the summaries of your trial components.-
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, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
trialComponentSummaries
ListTrialComponentsResponse.Builder trialComponentSummaries(Collection<TrialComponentSummary> trialComponentSummaries)
A list of the summaries of your trial components.
- Parameters:
trialComponentSummaries
- A list of the summaries of your trial components.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
trialComponentSummaries
ListTrialComponentsResponse.Builder trialComponentSummaries(TrialComponentSummary... trialComponentSummaries)
A list of the summaries of your trial components.
- Parameters:
trialComponentSummaries
- A list of the summaries of your trial components.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
trialComponentSummaries
ListTrialComponentsResponse.Builder trialComponentSummaries(Consumer<TrialComponentSummary.Builder>... trialComponentSummaries)
A list of the summaries of your trial components.
This is a convenience method that creates an instance of theTrialComponentSummary.Builder
avoiding the need to create one manually viaTrialComponentSummary.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#trialComponentSummaries(List
.) - Parameters:
trialComponentSummaries
- a consumer that will call methods onTrialComponentSummary.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#trialComponentSummaries(java.util.Collection
)
-
nextToken
ListTrialComponentsResponse.Builder nextToken(String nextToken)
A token for getting the next set of components, if there are any.
- Parameters:
nextToken
- A token for getting the next set of components, if there are any.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-