interface DriftCheckBaselinesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnModelPackagePropsMixin.DriftCheckBaselinesProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnModelPackagePropsMixin_DriftCheckBaselinesProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnModelPackagePropsMixin.DriftCheckBaselinesProperty |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnModelPackagePropsMixin.DriftCheckBaselinesProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » CfnModelPackagePropsMixin » DriftCheckBaselinesProperty |
Represents the drift check baselines that can be used when the model monitor is set using 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/cfn-property-mixins';
const driftCheckBaselinesProperty: sagemaker.CfnModelPackagePropsMixin.DriftCheckBaselinesProperty = {
bias: {
configFile: {
contentDigest: 'contentDigest',
contentType: 'contentType',
s3Uri: 's3Uri',
},
postTrainingConstraints: {
contentDigest: 'contentDigest',
contentType: 'contentType',
s3Uri: 's3Uri',
},
preTrainingConstraints: {
contentDigest: 'contentDigest',
contentType: 'contentType',
s3Uri: 's3Uri',
},
},
explainability: {
configFile: {
contentDigest: 'contentDigest',
contentType: 'contentType',
s3Uri: 's3Uri',
},
constraints: {
contentDigest: 'contentDigest',
contentType: 'contentType',
s3Uri: 's3Uri',
},
},
modelDataQuality: {
constraints: {
contentDigest: 'contentDigest',
contentType: 'contentType',
s3Uri: 's3Uri',
},
statistics: {
contentDigest: 'contentDigest',
contentType: 'contentType',
s3Uri: 's3Uri',
},
},
modelQuality: {
constraints: {
contentDigest: 'contentDigest',
contentType: 'contentType',
s3Uri: 's3Uri',
},
statistics: {
contentDigest: 'contentDigest',
contentType: 'contentType',
s3Uri: 's3Uri',
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| bias? | IResolvable | Drift | Represents the drift check bias baselines that can be used when the model monitor is set using the model package. |
| explainability? | IResolvable | Drift | Represents the drift check explainability baselines that can be used when the model monitor is set using the model package. |
| model | IResolvable | Drift | Represents the drift check model data quality baselines that can be used when the model monitor is set using the model package. |
| model | IResolvable | Drift | Represents the drift check model quality baselines that can be used when the model monitor is set using the model package. |
bias?
Type:
IResolvable | Drift
(optional)
Represents the drift check bias baselines that can be used when the model monitor is set using the model package.
explainability?
Type:
IResolvable | Drift
(optional)
Represents the drift check explainability baselines that can be used when the model monitor is set using the model package.
modelDataQuality?
Type:
IResolvable | Drift
(optional)
Represents the drift check model data quality baselines that can be used when the model monitor is set using the model package.
modelQuality?
Type:
IResolvable | Drift
(optional)
Represents the drift check model quality baselines that can be used when the model monitor is set using the model package.

.NET
Go
Java
Python
TypeScript