Class CfnModelPackagePropsMixin.DriftCheckExplainabilityProperty
Represents the drift check explainability baselines that can be used when the model monitor is set using the model package.
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnModelPackagePropsMixin.DriftCheckExplainabilityProperty : CfnModelPackagePropsMixin.IDriftCheckExplainabilityProperty
Syntax (vb)
Public Class CfnModelPackagePropsMixin.DriftCheckExplainabilityProperty Implements CfnModelPackagePropsMixin.IDriftCheckExplainabilityProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins;
var driftCheckExplainabilityProperty = new DriftCheckExplainabilityProperty {
ConfigFile = new FileSourceProperty {
ContentDigest = "contentDigest",
ContentType = "contentType",
S3Uri = "s3Uri"
},
Constraints = new MetricsSourceProperty {
ContentDigest = "contentDigest",
ContentType = "contentType",
S3Uri = "s3Uri"
}
};
Synopsis
Constructors
| DriftCheckExplainabilityProperty() | Represents the drift check explainability baselines that can be used when the model monitor is set using the model package. |
Properties
| ConfigFile | The explainability config file for the model. |
| Constraints | The drift check explainability constraints. |
Constructors
DriftCheckExplainabilityProperty()
Represents the drift check explainability baselines that can be used when the model monitor is set using the model package.
public DriftCheckExplainabilityProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins;
var driftCheckExplainabilityProperty = new DriftCheckExplainabilityProperty {
ConfigFile = new FileSourceProperty {
ContentDigest = "contentDigest",
ContentType = "contentType",
S3Uri = "s3Uri"
},
Constraints = new MetricsSourceProperty {
ContentDigest = "contentDigest",
ContentType = "contentType",
S3Uri = "s3Uri"
}
};
Properties
ConfigFile
The explainability config file for the model.
public object? ConfigFile { get; set; }
Property Value
Remarks
Constraints
The drift check explainability constraints.
public object? Constraints { get; set; }