public static interface ModelMetadata.Builder extends SdkPojo, CopyableBuilder<ModelMetadata.Builder,ModelMetadata>
| Modifier and Type | Method and Description |
|---|---|
ModelMetadata.Builder |
creationTimestamp(Instant creationTimestamp)
The unix timestamp for the date and time that the model was created.
|
ModelMetadata.Builder |
description(String description)
The description for the model.
|
ModelMetadata.Builder |
modelArn(String modelArn)
The Amazon Resource Name (ARN) of the model.
|
ModelMetadata.Builder |
modelVersion(String modelVersion)
The version of the model.
|
default ModelMetadata.Builder |
performance(Consumer<ModelPerformance.Builder> performance)
Performance metrics for the model.
|
ModelMetadata.Builder |
performance(ModelPerformance performance)
Performance metrics for the model.
|
ModelMetadata.Builder |
status(ModelStatus status)
The status of the model.
|
ModelMetadata.Builder |
status(String status)
The status of the model.
|
ModelMetadata.Builder |
statusMessage(String statusMessage)
The status message for the model.
|
equalsBySdkFields, sdkFieldscopyapplyMutation, buildModelMetadata.Builder creationTimestamp(Instant creationTimestamp)
The unix timestamp for the date and time that the model was created.
creationTimestamp - The unix timestamp for the date and time that the model was created.ModelMetadata.Builder modelVersion(String modelVersion)
The version of the model.
modelVersion - The version of the model.ModelMetadata.Builder modelArn(String modelArn)
The Amazon Resource Name (ARN) of the model.
modelArn - The Amazon Resource Name (ARN) of the model.ModelMetadata.Builder description(String description)
The description for the model.
description - The description for the model.ModelMetadata.Builder status(String status)
The status of the model.
status - The status of the model.ModelStatus,
ModelStatusModelMetadata.Builder status(ModelStatus status)
The status of the model.
status - The status of the model.ModelStatus,
ModelStatusModelMetadata.Builder statusMessage(String statusMessage)
The status message for the model.
statusMessage - The status message for the model.ModelMetadata.Builder performance(ModelPerformance performance)
Performance metrics for the model. Not available until training has successfully completed.
performance - Performance metrics for the model. Not available until training has successfully completed.default ModelMetadata.Builder performance(Consumer<ModelPerformance.Builder> performance)
Performance metrics for the model. Not available until training has successfully completed.
This is a convenience that creates an instance of theModelPerformance.Builder avoiding the need to
create one manually via ModelPerformance.builder().
When the Consumer completes, SdkBuilder.build() is called immediately and its
result is passed to performance(ModelPerformance).performance - a consumer that will call methods on ModelPerformance.Builderperformance(ModelPerformance)Copyright © 2022. All rights reserved.