interface ModelPackageStatusItemProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnModelPackagePropsMixin.ModelPackageStatusItemProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnModelPackagePropsMixin_ModelPackageStatusItemProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnModelPackagePropsMixin.ModelPackageStatusItemProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnModelPackagePropsMixin.ModelPackageStatusItemProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnModelPackagePropsMixin » 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 { mixins as sagemaker_mixins } from '@aws-cdk/mixins-preview/aws-sagemaker';
const modelPackageStatusItemProperty: sagemaker_mixins.CfnModelPackagePropsMixin.ModelPackageStatusItemProperty = {
failureReason: 'failureReason',
name: 'name',
status: 'status',
};
Properties
| Name | Type | Description |
|---|---|---|
| failure | string | if the overall status is Failed , the reason for the failure. |
| name? | string | The name of the model package for which the overall status is being reported. |
| status? | string | The current status. |
failureReason?
Type:
string
(optional)
if the overall status is Failed , the reason for the failure.
name?
Type:
string
(optional)
The name of the model package for which the overall status is being reported.
status?
Type:
string
(optional)
The current status.

.NET
Go
Java
Python
TypeScript