interface ModelPackageStatusItemProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnModelPackage.ModelPackageStatusItemProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnModelPackage.ModelPackageStatusItemProperty |
Python | aws_cdk.aws_sagemaker.CfnModelPackage.ModelPackageStatusItemProperty |
TypeScript | @aws-cdk/aws-sagemaker » CfnModelPackage » ModelPackageStatusItemProperty |
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 * as sagemaker from '@aws-cdk/aws-sagemaker';
const modelPackageStatusItemProperty: sagemaker.CfnModelPackage.ModelPackageStatusItemProperty = {
name: 'name',
status: 'status',
// the properties below are optional
failureReason: 'failureReason',
};
Properties
Name | Type | Description |
---|---|---|
name | string | The name of the model package for which the overall status is being reported. |
status | string | The current status. |
failure | string | if the overall status is Failed , the reason for the failure. |
name
Type:
string
The name of the model package for which the overall status is being reported.
status
Type:
string
The current status.
failureReason?
Type:
string
(optional)
if the overall status is Failed
, the reason for the failure.