Show / Hide Table of Contents

Class CfnMonitoringSchedulePropsMixin.BaselineConfigProperty

Baseline configuration used to validate that the data conforms to the specified constraints and statistics.

Inheritance
object
CfnMonitoringSchedulePropsMixin.BaselineConfigProperty
Implements
CfnMonitoringSchedulePropsMixin.IBaselineConfigProperty
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 CfnMonitoringSchedulePropsMixin.BaselineConfigProperty : CfnMonitoringSchedulePropsMixin.IBaselineConfigProperty
Syntax (vb)
Public Class CfnMonitoringSchedulePropsMixin.BaselineConfigProperty Implements CfnMonitoringSchedulePropsMixin.IBaselineConfigProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-monitoringschedule-baselineconfig.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 baselineConfigProperty = new BaselineConfigProperty {
                 ConstraintsResource = new ConstraintsResourceProperty {
                     S3Uri = "s3Uri"
                 },
                 StatisticsResource = new StatisticsResourceProperty {
                     S3Uri = "s3Uri"
                 }
             };

Synopsis

Constructors

BaselineConfigProperty()

Baseline configuration used to validate that the data conforms to the specified constraints and statistics.

Properties

ConstraintsResource

The Amazon S3 URI for the constraints resource.

StatisticsResource

The baseline statistics file in Amazon S3 that the current monitoring job should be validated against.

Constructors

BaselineConfigProperty()

Baseline configuration used to validate that the data conforms to the specified constraints and statistics.

public BaselineConfigProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-monitoringschedule-baselineconfig.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 baselineConfigProperty = new BaselineConfigProperty {
                 ConstraintsResource = new ConstraintsResourceProperty {
                     S3Uri = "s3Uri"
                 },
                 StatisticsResource = new StatisticsResourceProperty {
                     S3Uri = "s3Uri"
                 }
             };

Properties

ConstraintsResource

The Amazon S3 URI for the constraints resource.

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

object

Remarks

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

Type union: either IResolvable or CfnMonitoringSchedulePropsMixin.IConstraintsResourceProperty

StatisticsResource

The baseline statistics file in Amazon S3 that the current monitoring job should be validated against.

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

object

Remarks

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

Type union: either IResolvable or CfnMonitoringSchedulePropsMixin.IStatisticsResourceProperty

Implements

CfnMonitoringSchedulePropsMixin.IBaselineConfigProperty
Back to top Generated by DocFX