Show / Hide Table of Contents

Class CfnModelPackagePropsMixin.DriftCheckExplainabilityProperty

Represents the drift check explainability baselines that can be used when the model monitor is set using the model package.

Inheritance
object
CfnModelPackagePropsMixin.DriftCheckExplainabilityProperty
Implements
CfnModelPackagePropsMixin.IDriftCheckExplainabilityProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-modelpackage-driftcheckexplainability.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-modelpackage-driftcheckexplainability.html

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-modelpackage-driftcheckexplainability.html#cfn-sagemaker-modelpackage-driftcheckexplainability-configfile

Type union: either IResolvable or CfnModelPackagePropsMixin.IFileSourceProperty

Constraints

The drift check explainability constraints.

public object? Constraints { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-modelpackage-driftcheckexplainability.html#cfn-sagemaker-modelpackage-driftcheckexplainability-constraints

Type union: either IResolvable or CfnModelPackagePropsMixin.IMetricsSourceProperty

Implements

CfnModelPackagePropsMixin.IDriftCheckExplainabilityProperty
Back to top Generated by DocFX