Interface EdgeModel.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<EdgeModel.Builder,EdgeModel>
,SdkBuilder<EdgeModel.Builder,EdgeModel>
,SdkPojo
- Enclosing class:
- EdgeModel
public static interface EdgeModel.Builder extends SdkPojo, CopyableBuilder<EdgeModel.Builder,EdgeModel>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EdgeModel.Builder
latestInference(Instant latestInference)
The timestamp of the last inference that was made.EdgeModel.Builder
latestSampleTime(Instant latestSampleTime)
The timestamp of the last data sample taken.EdgeModel.Builder
modelName(String modelName)
The name of the model.EdgeModel.Builder
modelVersion(String modelVersion)
The model version.-
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
EdgeModel.Builder modelName(String modelName)
The name of the model.
- Parameters:
modelName
- The name of the model.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
modelVersion
EdgeModel.Builder modelVersion(String modelVersion)
The model version.
- Parameters:
modelVersion
- The model version.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
latestSampleTime
EdgeModel.Builder latestSampleTime(Instant latestSampleTime)
The timestamp of the last data sample taken.
- Parameters:
latestSampleTime
- The timestamp of the last data sample taken.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
latestInference
EdgeModel.Builder latestInference(Instant latestInference)
The timestamp of the last inference that was made.
- Parameters:
latestInference
- The timestamp of the last inference that was made.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-