interface ModelPackageStatusItemProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnModelPackagePropsMixin.ModelPackageStatusItemProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnModelPackagePropsMixin_ModelPackageStatusItemProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnModelPackagePropsMixin.ModelPackageStatusItemProperty |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnModelPackagePropsMixin.ModelPackageStatusItemProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » 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 { aws_sagemaker as sagemaker } from '@aws-cdk/cfn-property-mixins';
const modelPackageStatusItemProperty: sagemaker.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