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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnModelPackage.ModelPackageStatusItemProperty
static final class
An implementation forCfnModelPackage.ModelPackageStatusItemProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The name of the model package for which the overall status is being reported. -
getStatus
The current status. -
getFailureReason
if the overall status isFailed
, the reason for the failure. -
builder
-