Interface CfnModelPackage.ModelPackageStatusDetailsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnModelPackage.ModelPackageStatusDetailsProperty.Jsii$Proxy
- Enclosing class:
- CfnModelPackage
@Stability(Stable)
public static interface CfnModelPackage.ModelPackageStatusDetailsProperty
extends software.amazon.jsii.JsiiSerializable
Specifies the validation and image scan statuses of the model package.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.sagemaker.*;
ModelPackageStatusDetailsProperty modelPackageStatusDetailsProperty = ModelPackageStatusDetailsProperty.builder()
.validationStatuses(List.of(ModelPackageStatusItemProperty.builder()
.name("name")
.status("status")
// the properties below are optional
.failureReason("failureReason")
.build()))
// the properties below are optional
.imageScanStatuses(List.of(ModelPackageStatusItemProperty.builder()
.name("name")
.status("status")
// the properties below are optional
.failureReason("failureReason")
.build()))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnModelPackage.ModelPackageStatusDetailsPropertystatic final classAn implementation forCfnModelPackage.ModelPackageStatusDetailsProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getValidationStatuses
The validation status of the model package. -
getImageScanStatuses
The status of the scan of the Docker image container for the model package. -
builder
-