public static interface PredictorSummary.Builder extends SdkPojo, CopyableBuilder<PredictorSummary.Builder,PredictorSummary>
| Modifier and Type | Method and Description |
|---|---|
PredictorSummary.Builder |
creationTime(Instant creationTime)
When the model training task was created.
|
PredictorSummary.Builder |
datasetGroupArn(String datasetGroupArn)
The Amazon Resource Name (ARN) of the dataset group that contains the data used to train the predictor.
|
PredictorSummary.Builder |
isAutoPredictor(Boolean isAutoPredictor)
Whether AutoPredictor was used to create the predictor.
|
PredictorSummary.Builder |
lastModificationTime(Instant lastModificationTime)
The last time the resource was modified.
|
PredictorSummary.Builder |
message(String message)
If an error occurred, an informational message about the error.
|
PredictorSummary.Builder |
predictorArn(String predictorArn)
The ARN of the predictor.
|
PredictorSummary.Builder |
predictorName(String predictorName)
The name of the predictor.
|
default PredictorSummary.Builder |
referencePredictorSummary(Consumer<ReferencePredictorSummary.Builder> referencePredictorSummary)
A summary of the reference predictor used if the predictor was retrained or upgraded.
|
PredictorSummary.Builder |
referencePredictorSummary(ReferencePredictorSummary referencePredictorSummary)
A summary of the reference predictor used if the predictor was retrained or upgraded.
|
PredictorSummary.Builder |
status(String status)
The status of the predictor.
|
equalsBySdkFields, sdkFieldscopyapplyMutation, buildPredictorSummary.Builder predictorArn(String predictorArn)
The ARN of the predictor.
predictorArn - The ARN of the predictor.PredictorSummary.Builder predictorName(String predictorName)
The name of the predictor.
predictorName - The name of the predictor.PredictorSummary.Builder datasetGroupArn(String datasetGroupArn)
The Amazon Resource Name (ARN) of the dataset group that contains the data used to train the predictor.
datasetGroupArn - The Amazon Resource Name (ARN) of the dataset group that contains the data used to train the
predictor.PredictorSummary.Builder isAutoPredictor(Boolean isAutoPredictor)
Whether AutoPredictor was used to create the predictor.
isAutoPredictor - Whether AutoPredictor was used to create the predictor.PredictorSummary.Builder referencePredictorSummary(ReferencePredictorSummary referencePredictorSummary)
A summary of the reference predictor used if the predictor was retrained or upgraded.
referencePredictorSummary - A summary of the reference predictor used if the predictor was retrained or upgraded.default PredictorSummary.Builder referencePredictorSummary(Consumer<ReferencePredictorSummary.Builder> referencePredictorSummary)
A summary of the reference predictor used if the predictor was retrained or upgraded.
This is a convenience method that creates an instance of theReferencePredictorSummary.Builder
avoiding the need to create one manually via ReferencePredictorSummary.builder().
When the Consumer completes, SdkBuilder.build() is called immediately
and its result is passed to referencePredictorSummary(ReferencePredictorSummary).
referencePredictorSummary - a consumer that will call methods on ReferencePredictorSummary.BuilderreferencePredictorSummary(ReferencePredictorSummary)PredictorSummary.Builder status(String status)
The status of the predictor. States include:
ACTIVE
CREATE_PENDING, CREATE_IN_PROGRESS, CREATE_FAILED
DELETE_PENDING, DELETE_IN_PROGRESS, DELETE_FAILED
CREATE_STOPPING, CREATE_STOPPED
The Status of the predictor must be ACTIVE before you can use the predictor to
create a forecast.
status - The status of the predictor. States include:
ACTIVE
CREATE_PENDING, CREATE_IN_PROGRESS, CREATE_FAILED
DELETE_PENDING, DELETE_IN_PROGRESS, DELETE_FAILED
CREATE_STOPPING, CREATE_STOPPED
The Status of the predictor must be ACTIVE before you can use the predictor
to create a forecast.
PredictorSummary.Builder message(String message)
If an error occurred, an informational message about the error.
message - If an error occurred, an informational message about the error.PredictorSummary.Builder creationTime(Instant creationTime)
When the model training task was created.
creationTime - When the model training task was created.PredictorSummary.Builder lastModificationTime(Instant lastModificationTime)
The last time the resource was modified. The timestamp depends on the status of the job:
CREATE_PENDING - The CreationTime.
CREATE_IN_PROGRESS - The current timestamp.
CREATE_STOPPING - The current timestamp.
CREATE_STOPPED - When the job stopped.
ACTIVE or CREATE_FAILED - When the job finished or failed.
lastModificationTime - The last time the resource was modified. The timestamp depends on the status of the job:
CREATE_PENDING - The CreationTime.
CREATE_IN_PROGRESS - The current timestamp.
CREATE_STOPPING - The current timestamp.
CREATE_STOPPED - When the job stopped.
ACTIVE or CREATE_FAILED - When the job finished or failed.
Copyright © 2023. All rights reserved.