Show / Hide Table of Contents

Class CfnModelQualityJobDefinition.ModelQualityJobInputProperty

The input for the model quality monitoring job.

Inheritance
System.Object
CfnModelQualityJobDefinition.ModelQualityJobInputProperty
Implements
CfnModelQualityJobDefinition.IModelQualityJobInputProperty
Namespace: Amazon.CDK.AWS.Sagemaker
Assembly: Amazon.CDK.AWS.Sagemaker.dll
Syntax (csharp)
public class ModelQualityJobInputProperty : Object, CfnModelQualityJobDefinition.IModelQualityJobInputProperty
Syntax (vb)
Public Class ModelQualityJobInputProperty
    Inherits Object
    Implements CfnModelQualityJobDefinition.IModelQualityJobInputProperty
Remarks

Currently endponts are supported for input for model quality monitoring jobs.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-modelqualityjobdefinition-modelqualityjobinput.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 json;

var modelQualityJobInputProperty = new ModelQualityJobInputProperty {
    GroundTruthS3Input = new MonitoringGroundTruthS3InputProperty {
        S3Uri = "s3Uri"
    },

    // the properties below are optional
    BatchTransformInput = new BatchTransformInputProperty {
        DataCapturedDestinationS3Uri = "dataCapturedDestinationS3Uri",
        DatasetFormat = new DatasetFormatProperty {
            Csv = new CsvProperty {
                Header = false
            },
            Json = json,
            Parquet = false
        },
        LocalPath = "localPath",

        // the properties below are optional
        EndTimeOffset = "endTimeOffset",
        InferenceAttribute = "inferenceAttribute",
        ProbabilityAttribute = "probabilityAttribute",
        ProbabilityThresholdAttribute = 123,
        S3DataDistributionType = "s3DataDistributionType",
        S3InputMode = "s3InputMode",
        StartTimeOffset = "startTimeOffset"
    },
    EndpointInput = new EndpointInputProperty {
        EndpointName = "endpointName",
        LocalPath = "localPath",

        // the properties below are optional
        EndTimeOffset = "endTimeOffset",
        InferenceAttribute = "inferenceAttribute",
        ProbabilityAttribute = "probabilityAttribute",
        ProbabilityThresholdAttribute = 123,
        S3DataDistributionType = "s3DataDistributionType",
        S3InputMode = "s3InputMode",
        StartTimeOffset = "startTimeOffset"
    }
};

Synopsis

Constructors

ModelQualityJobInputProperty()

Properties

BatchTransformInput

CfnModelQualityJobDefinition.ModelQualityJobInputProperty.BatchTransformInput.

EndpointInput

Input object for the endpoint.

GroundTruthS3Input

The ground truth label provided for the model.

Constructors

ModelQualityJobInputProperty()

public ModelQualityJobInputProperty()

Properties

BatchTransformInput

CfnModelQualityJobDefinition.ModelQualityJobInputProperty.BatchTransformInput.

public object BatchTransformInput { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-modelqualityjobdefinition-modelqualityjobinput.html#cfn-sagemaker-modelqualityjobdefinition-modelqualityjobinput-batchtransforminput

EndpointInput

Input object for the endpoint.

public object EndpointInput { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-modelqualityjobdefinition-modelqualityjobinput.html#cfn-sagemaker-modelqualityjobdefinition-modelqualityjobinput-endpointinput

GroundTruthS3Input

The ground truth label provided for the model.

public object GroundTruthS3Input { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-modelqualityjobdefinition-modelqualityjobinput.html#cfn-sagemaker-modelqualityjobdefinition-modelqualityjobinput-groundtruths3input

Implements

CfnModelQualityJobDefinition.IModelQualityJobInputProperty
Back to top Generated by DocFX