Interface CfnModelPackage.ModelPackageStatusItemProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnModelPackage.ModelPackageStatusItemProperty.Jsii$Proxy
Enclosing class:
CfnModelPackage

@Stability(Stable) public static interface CfnModelPackage.ModelPackageStatusItemProperty extends software.amazon.jsii.JsiiSerializable
Represents the overall status of a 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.*;
 ModelPackageStatusItemProperty modelPackageStatusItemProperty = ModelPackageStatusItemProperty.builder()
         .name("name")
         .status("status")
         // the properties below are optional
         .failureReason("failureReason")
         .build();
 

See Also: