Interface ListInferenceExecutionsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListInferenceExecutionsResponse.Builder,ListInferenceExecutionsResponse>,LookoutEquipmentResponse.Builder,SdkBuilder<ListInferenceExecutionsResponse.Builder,ListInferenceExecutionsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListInferenceExecutionsResponse
public static interface ListInferenceExecutionsResponse.Builder extends LookoutEquipmentResponse.Builder, SdkPojo, CopyableBuilder<ListInferenceExecutionsResponse.Builder,ListInferenceExecutionsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListInferenceExecutionsResponse.BuilderinferenceExecutionSummaries(Collection<InferenceExecutionSummary> inferenceExecutionSummaries)Provides an array of information about the individual inference executions returned from theListInferenceExecutionsoperation, including model used, inference scheduler, data configuration, and so on.ListInferenceExecutionsResponse.BuilderinferenceExecutionSummaries(Consumer<InferenceExecutionSummary.Builder>... inferenceExecutionSummaries)Provides an array of information about the individual inference executions returned from theListInferenceExecutionsoperation, including model used, inference scheduler, data configuration, and so on.ListInferenceExecutionsResponse.BuilderinferenceExecutionSummaries(InferenceExecutionSummary... inferenceExecutionSummaries)Provides an array of information about the individual inference executions returned from theListInferenceExecutionsoperation, including model used, inference scheduler, data configuration, and so on.ListInferenceExecutionsResponse.BuildernextToken(String nextToken)An opaque pagination token indicating where to continue the listing of inference executions.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.lookoutequipment.model.LookoutEquipmentResponse.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
-
nextToken
ListInferenceExecutionsResponse.Builder nextToken(String nextToken)
An opaque pagination token indicating where to continue the listing of inference executions.
- Parameters:
nextToken- An opaque pagination token indicating where to continue the listing of inference executions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
inferenceExecutionSummaries
ListInferenceExecutionsResponse.Builder inferenceExecutionSummaries(Collection<InferenceExecutionSummary> inferenceExecutionSummaries)
Provides an array of information about the individual inference executions returned from the
ListInferenceExecutionsoperation, including model used, inference scheduler, data configuration, and so on.If you don't supply the
InferenceSchedulerNamerequest parameter, or if you supply the name of an inference scheduler that doesn't exist,ListInferenceExecutionsreturns an empty array inInferenceExecutionSummaries.- Parameters:
inferenceExecutionSummaries- Provides an array of information about the individual inference executions returned from theListInferenceExecutionsoperation, including model used, inference scheduler, data configuration, and so on.If you don't supply the
InferenceSchedulerNamerequest parameter, or if you supply the name of an inference scheduler that doesn't exist,ListInferenceExecutionsreturns an empty array inInferenceExecutionSummaries.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
inferenceExecutionSummaries
ListInferenceExecutionsResponse.Builder inferenceExecutionSummaries(InferenceExecutionSummary... inferenceExecutionSummaries)
Provides an array of information about the individual inference executions returned from the
ListInferenceExecutionsoperation, including model used, inference scheduler, data configuration, and so on.If you don't supply the
InferenceSchedulerNamerequest parameter, or if you supply the name of an inference scheduler that doesn't exist,ListInferenceExecutionsreturns an empty array inInferenceExecutionSummaries.- Parameters:
inferenceExecutionSummaries- Provides an array of information about the individual inference executions returned from theListInferenceExecutionsoperation, including model used, inference scheduler, data configuration, and so on.If you don't supply the
InferenceSchedulerNamerequest parameter, or if you supply the name of an inference scheduler that doesn't exist,ListInferenceExecutionsreturns an empty array inInferenceExecutionSummaries.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
inferenceExecutionSummaries
ListInferenceExecutionsResponse.Builder inferenceExecutionSummaries(Consumer<InferenceExecutionSummary.Builder>... inferenceExecutionSummaries)
Provides an array of information about the individual inference executions returned from the
ListInferenceExecutionsoperation, including model used, inference scheduler, data configuration, and so on. This is a convenience method that creates an instance of theIf you don't supply the
InferenceSchedulerNamerequest parameter, or if you supply the name of an inference scheduler that doesn't exist,ListInferenceExecutionsreturns an empty array inInferenceExecutionSummaries.InferenceExecutionSummary.Builderavoiding the need to create one manually viaInferenceExecutionSummary.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#inferenceExecutionSummaries(List.) - Parameters:
inferenceExecutionSummaries- a consumer that will call methods onInferenceExecutionSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#inferenceExecutionSummaries(java.util.Collection)
-
-