Interface RetrainingSchedulerSummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<RetrainingSchedulerSummary.Builder,RetrainingSchedulerSummary>,SdkBuilder<RetrainingSchedulerSummary.Builder,RetrainingSchedulerSummary>,SdkPojo
- Enclosing class:
- RetrainingSchedulerSummary
public static interface RetrainingSchedulerSummary.Builder extends SdkPojo, CopyableBuilder<RetrainingSchedulerSummary.Builder,RetrainingSchedulerSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RetrainingSchedulerSummary.BuilderlookbackWindow(String lookbackWindow)The number of past days of data used for retraining.RetrainingSchedulerSummary.BuildermodelArn(String modelArn)The ARN of the model that the retraining scheduler is attached to.RetrainingSchedulerSummary.BuildermodelName(String modelName)The name of the model that the retraining scheduler is attached to.RetrainingSchedulerSummary.BuilderretrainingFrequency(String retrainingFrequency)The frequency at which the model retraining is set.RetrainingSchedulerSummary.BuilderretrainingStartDate(Instant retrainingStartDate)The start date for the retraining scheduler.RetrainingSchedulerSummary.Builderstatus(String status)The status of the retraining scheduler.RetrainingSchedulerSummary.Builderstatus(RetrainingSchedulerStatus status)The status of the retraining scheduler.-
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, sdkFields
-
-
-
-
Method Detail
-
modelName
RetrainingSchedulerSummary.Builder modelName(String modelName)
The name of the model that the retraining scheduler is attached to.
- Parameters:
modelName- The name of the model that the retraining scheduler is attached to.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
modelArn
RetrainingSchedulerSummary.Builder modelArn(String modelArn)
The ARN of the model that the retraining scheduler is attached to.
- Parameters:
modelArn- The ARN of the model that the retraining scheduler is attached to.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
RetrainingSchedulerSummary.Builder status(String status)
The status of the retraining scheduler.
- Parameters:
status- The status of the retraining scheduler.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
RetrainingSchedulerStatus,RetrainingSchedulerStatus
-
status
RetrainingSchedulerSummary.Builder status(RetrainingSchedulerStatus status)
The status of the retraining scheduler.
- Parameters:
status- The status of the retraining scheduler.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
RetrainingSchedulerStatus,RetrainingSchedulerStatus
-
retrainingStartDate
RetrainingSchedulerSummary.Builder retrainingStartDate(Instant retrainingStartDate)
The start date for the retraining scheduler. Lookout for Equipment truncates the time you provide to the nearest UTC day.
- Parameters:
retrainingStartDate- The start date for the retraining scheduler. Lookout for Equipment truncates the time you provide to the nearest UTC day.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
retrainingFrequency
RetrainingSchedulerSummary.Builder retrainingFrequency(String retrainingFrequency)
The frequency at which the model retraining is set. This follows the ISO 8601 guidelines.
- Parameters:
retrainingFrequency- The frequency at which the model retraining is set. This follows the ISO 8601 guidelines.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lookbackWindow
RetrainingSchedulerSummary.Builder lookbackWindow(String lookbackWindow)
The number of past days of data used for retraining.
- Parameters:
lookbackWindow- The number of past days of data used for retraining.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-