aws-cdk-lib.aws_sagemaker.CfnModelPackage.ModelPackageStatusItemProperty

interface ModelPackageStatusItemProperty

LanguageType name
.NETAmazon.CDK.AWS.Sagemaker.CfnModelPackage.ModelPackageStatusItemProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnModelPackage_ModelPackageStatusItemProperty
Javasoftware.amazon.awscdk.services.sagemaker.CfnModelPackage.ModelPackageStatusItemProperty
Pythonaws_cdk.aws_sagemaker.CfnModelPackage.ModelPackageStatusItemProperty
TypeScript aws-cdk-lib » 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 { aws_sagemaker as sagemaker } from 'aws-cdk-lib';
const modelPackageStatusItemProperty: sagemaker.CfnModelPackage.ModelPackageStatusItemProperty = {
  name: 'name',
  status: 'status',

  // the properties below are optional
  failureReason: 'failureReason',
};

Properties

NameTypeDescription
namestringThe name of the model package for which the overall status is being reported.
statusstringThe current status.
failureReason?stringif 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.