Class CfnModelQualityJobDefinition.DatasetFormatProperty
The dataset format of the data to monitor.
Inherited Members
Namespace: Amazon.CDK.AWS.Sagemaker
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnModelQualityJobDefinition.DatasetFormatProperty : CfnModelQualityJobDefinition.IDatasetFormatProperty
Syntax (vb)
Public Class CfnModelQualityJobDefinition.DatasetFormatProperty Implements CfnModelQualityJobDefinition.IDatasetFormatProperty
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.AWS.Sagemaker;
var datasetFormatProperty = new DatasetFormatProperty {
Csv = new CsvProperty {
Header = false
},
Json = new JsonProperty {
Line = false
},
Parquet = false
};
Synopsis
Constructors
DatasetFormatProperty() | The dataset format of the data to monitor. |
Properties
Csv | The CSV format. |
Json | The Json format. |
Parquet | A flag indicating if the dataset format is Parquet. |
Constructors
DatasetFormatProperty()
The dataset format of the data to monitor.
public DatasetFormatProperty()
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.AWS.Sagemaker;
var datasetFormatProperty = new DatasetFormatProperty {
Csv = new CsvProperty {
Header = false
},
Json = new JsonProperty {
Line = false
},
Parquet = false
};
Properties
Csv
The CSV format.
public object? Csv { get; set; }
Property Value
Remarks
Json
The Json format.
public object? Json { get; set; }
Property Value
Remarks
Parquet
A flag indicating if the dataset format is Parquet.
public object? Parquet { get; set; }