Show / Hide Table of Contents

Class CfnDataQualityJobDefinitionPropsMixin.DataQualityBaselineConfigProperty

Configuration for monitoring constraints and monitoring statistics.

Inheritance
object
CfnDataQualityJobDefinitionPropsMixin.DataQualityBaselineConfigProperty
Implements
CfnDataQualityJobDefinitionPropsMixin.IDataQualityBaselineConfigProperty
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 CfnDataQualityJobDefinitionPropsMixin.DataQualityBaselineConfigProperty : CfnDataQualityJobDefinitionPropsMixin.IDataQualityBaselineConfigProperty
Syntax (vb)
Public Class CfnDataQualityJobDefinitionPropsMixin.DataQualityBaselineConfigProperty Implements CfnDataQualityJobDefinitionPropsMixin.IDataQualityBaselineConfigProperty
Remarks

These baseline resources are compared against the results of the current job from the series of jobs scheduled to collect data periodically.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-dataqualityjobdefinition-dataqualitybaselineconfig.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 dataQualityBaselineConfigProperty = new DataQualityBaselineConfigProperty {
                 BaseliningJobName = "baseliningJobName",
                 ConstraintsResource = new ConstraintsResourceProperty {
                     S3Uri = "s3Uri"
                 },
                 StatisticsResource = new StatisticsResourceProperty {
                     S3Uri = "s3Uri"
                 }
             };

Synopsis

Constructors

DataQualityBaselineConfigProperty()

Configuration for monitoring constraints and monitoring statistics.

Properties

BaseliningJobName

The name of the job that performs baselining for the data quality monitoring job.

ConstraintsResource

The constraints resource for a monitoring job.

StatisticsResource

Configuration for monitoring constraints and monitoring statistics.

Constructors

DataQualityBaselineConfigProperty()

Configuration for monitoring constraints and monitoring statistics.

public DataQualityBaselineConfigProperty()
Remarks

These baseline resources are compared against the results of the current job from the series of jobs scheduled to collect data periodically.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-dataqualityjobdefinition-dataqualitybaselineconfig.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 dataQualityBaselineConfigProperty = new DataQualityBaselineConfigProperty {
                 BaseliningJobName = "baseliningJobName",
                 ConstraintsResource = new ConstraintsResourceProperty {
                     S3Uri = "s3Uri"
                 },
                 StatisticsResource = new StatisticsResourceProperty {
                     S3Uri = "s3Uri"
                 }
             };

Properties

BaseliningJobName

The name of the job that performs baselining for the data quality monitoring job.

public string? BaseliningJobName { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-dataqualityjobdefinition-dataqualitybaselineconfig.html#cfn-sagemaker-dataqualityjobdefinition-dataqualitybaselineconfig-baseliningjobname

ConstraintsResource

The constraints resource for a monitoring job.

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-dataqualityjobdefinition-dataqualitybaselineconfig.html#cfn-sagemaker-dataqualityjobdefinition-dataqualitybaselineconfig-constraintsresource

Type union: either IResolvable or CfnDataQualityJobDefinitionPropsMixin.IConstraintsResourceProperty

StatisticsResource

Configuration for monitoring constraints and monitoring statistics.

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

object

Remarks

These baseline resources are compared against the results of the current job from the series of jobs scheduled to collect data periodically.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-dataqualityjobdefinition-dataqualitybaselineconfig.html#cfn-sagemaker-dataqualityjobdefinition-dataqualitybaselineconfig-statisticsresource

Type union: either IResolvable or CfnDataQualityJobDefinitionPropsMixin.IStatisticsResourceProperty

Implements

CfnDataQualityJobDefinitionPropsMixin.IDataQualityBaselineConfigProperty
Back to top Generated by DocFX