Class CfnMonitoringSchedulePropsMixin.BaselineConfigProperty
Baseline configuration used to validate that the data conforms to the specified constraints and statistics.
Inherited Members
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
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
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
Remarks
StatisticsResource
The baseline statistics file in Amazon S3 that the current monitoring job should be validated against.
public object? StatisticsResource { get; set; }