Interface CfnModelPackagePropsMixin.ModelPackageStatusItemProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnModelPackagePropsMixin.ModelPackageStatusItemProperty.Jsii$Proxy
- Enclosing class:
CfnModelPackagePropsMixin
@Stability(Stable)
public static interface CfnModelPackagePropsMixin.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.cfnpropertymixins.services.sagemaker.*;
ModelPackageStatusItemProperty modelPackageStatusItemProperty = ModelPackageStatusItemProperty.builder()
.failureReason("failureReason")
.name("name")
.status("status")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnModelPackagePropsMixin.ModelPackageStatusItemPropertystatic final classAn implementation forCfnModelPackagePropsMixin.ModelPackageStatusItemProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFailureReason
if the overall status isFailed, the reason for the failure.- See Also:
-
getName
The name of the model package for which the overall status is being reported.- See Also:
-
getStatus
The current status.- See Also:
-
builder
@Stability(Stable) static CfnModelPackagePropsMixin.ModelPackageStatusItemProperty.Builder builder()
-