Show / Hide Table of Contents

Interface CfnModelPackagePropsMixin.IModelDataQualityProperty

Data quality constraints and statistics for a model.

Namespace: Amazon.CDK.CfnPropertyMixins.AWS.SageMaker
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public interface CfnModelPackagePropsMixin.IModelDataQualityProperty
Syntax (vb)
Public Interface CfnModelPackagePropsMixin.IModelDataQualityProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-modelpackage-modeldataquality.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.CfnPropertyMixins.AWS.SageMaker;

             var modelDataQualityProperty = new ModelDataQualityProperty {
                 Constraints = new MetricsSourceProperty {
                     ContentDigest = "contentDigest",
                     ContentType = "contentType",
                     S3Uri = "s3Uri"
                 },
                 Statistics = new MetricsSourceProperty {
                     ContentDigest = "contentDigest",
                     ContentType = "contentType",
                     S3Uri = "s3Uri"
                 }
             };

Synopsis

Properties

Constraints

Data quality constraints for a model.

Statistics

Data quality statistics for a model.

Properties

Constraints

Data quality constraints for a model.

object? Constraints { get; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnModelPackagePropsMixin.IMetricsSourceProperty

Statistics

Data quality statistics for a model.

object? Statistics { get; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnModelPackagePropsMixin.IMetricsSourceProperty

Back to top Generated by DocFX