interface DriftCheckBaselinesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnModelPackagePropsMixin.DriftCheckBaselinesProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnModelPackagePropsMixin_DriftCheckBaselinesProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnModelPackagePropsMixin.DriftCheckBaselinesProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnModelPackagePropsMixin.DriftCheckBaselinesProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » 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 { mixins as sagemaker_mixins } from '@aws-cdk/mixins-preview/aws-sagemaker';
const driftCheckBaselinesProperty: sagemaker_mixins.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