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()))
         .build();
 

See Also: