Show / Hide Table of Contents

Class CfnModelQualityJobDefinition.DatasetFormatProperty

The dataset format of the data to monitor.

Inheritance
object
CfnModelQualityJobDefinition.DatasetFormatProperty
Implements
CfnModelQualityJobDefinition.IDatasetFormatProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

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

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

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
             };

Properties

Csv

The CSV format.

public object? Csv { get; set; }
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.

public object? Json { get; set; }
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.

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

object

Remarks

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

Implements

CfnModelQualityJobDefinition.IDatasetFormatProperty
Back to top Generated by DocFX