Show / Hide Table of Contents

Interface CfnModelQualityJobDefinition.IDatasetFormatProperty

The dataset format of the data to monitor.

Namespace: Amazon.CDK.AWS.Sagemaker
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnModelQualityJobDefinition.IDatasetFormatProperty
Syntax (vb)
Public Interface CfnModelQualityJobDefinition.IDatasetFormatProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-modelqualityjobdefinition-datasetformat.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.AWS.Sagemaker;

             var datasetFormatProperty = new DatasetFormatProperty {
                 Csv = new CsvProperty {
                     Header = false
                 },
                 Json = new JsonProperty {
                     Line = false
                 },
                 Parquet = false
             };

Synopsis

Properties

Csv

The CSV format.

Json

The Json format.

Parquet

A flag indicating if the dataset format is Parquet.

Properties

Csv

The CSV format.

object? Csv { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-modelqualityjobdefinition-datasetformat.html#cfn-sagemaker-modelqualityjobdefinition-datasetformat-csv

Json

The Json format.

object? Json { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-modelqualityjobdefinition-datasetformat.html#cfn-sagemaker-modelqualityjobdefinition-datasetformat-json

Parquet

A flag indicating if the dataset format is Parquet.

object? Parquet { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-modelqualityjobdefinition-datasetformat.html#cfn-sagemaker-modelqualityjobdefinition-datasetformat-parquet

Back to top Generated by DocFX