aws-cdk-lib.aws_sagemaker.CfnModelPackage.ModelQualityProperty

interface ModelQualityProperty

LanguageType name
.NETAmazon.CDK.AWS.Sagemaker.CfnModelPackage.ModelQualityProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnModelPackage_ModelQualityProperty
Javasoftware.amazon.awscdk.services.sagemaker.CfnModelPackage.ModelQualityProperty
Pythonaws_cdk.aws_sagemaker.CfnModelPackage.ModelQualityProperty
TypeScript aws-cdk-lib » aws_sagemaker » CfnModelPackage » ModelQualityProperty

Model quality statistics and constraints.

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 modelQualityProperty: sagemaker.CfnModelPackage.ModelQualityProperty = {
  constraints: {
    contentType: 'contentType',
    s3Uri: 's3Uri',

    // the properties below are optional
    contentDigest: 'contentDigest',
  },
  statistics: {
    contentType: 'contentType',
    s3Uri: 's3Uri',

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

Properties

NameTypeDescription
constraints?IResolvable | MetricsSourcePropertyModel quality constraints.
statistics?IResolvable | MetricsSourcePropertyModel quality statistics.

constraints?

Type: IResolvable | MetricsSourceProperty (optional)

Model quality constraints.


statistics?

Type: IResolvable | MetricsSourceProperty (optional)

Model quality statistics.