interface ModelPackageStatusDetailsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnModelPackage.ModelPackageStatusDetailsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnModelPackage_ModelPackageStatusDetailsProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnModelPackage.ModelPackageStatusDetailsProperty |
Python | aws_cdk.aws_sagemaker.CfnModelPackage.ModelPackageStatusDetailsProperty |
TypeScript | aws-cdk-lib » aws_sagemaker » CfnModelPackage » ModelPackageStatusDetailsProperty |
Specifies the validation and image scan statuses of the 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 modelPackageStatusDetailsProperty: sagemaker.CfnModelPackage.ModelPackageStatusDetailsProperty = {
validationStatuses: [{
name: 'name',
status: 'status',
// the properties below are optional
failureReason: 'failureReason',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| validation | IResolvable | (IResolvable | Model)[] | The validation status of the model package. |
validationStatuses?
Type:
IResolvable | (IResolvable | Model)[]
(optional)
The validation status of the model package.

.NET
Go
Java
Python
TypeScript