Show / Hide Table of Contents

Class CfnModelPackage.ModelQualityProperty

Model quality statistics and constraints.

Inheritance
object
CfnModelPackage.ModelQualityProperty
Implements
CfnModelPackage.IModelQualityProperty
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 CfnModelPackage.ModelQualityProperty : CfnModelPackage.IModelQualityProperty
Syntax (vb)
Public Class CfnModelPackage.ModelQualityProperty Implements CfnModelPackage.IModelQualityProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-modelpackage-modelquality.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 modelQualityProperty = new ModelQualityProperty {
                 Constraints = new MetricsSourceProperty {
                     ContentType = "contentType",
                     S3Uri = "s3Uri",

                     // the properties below are optional
                     ContentDigest = "contentDigest"
                 },
                 Statistics = new MetricsSourceProperty {
                     ContentType = "contentType",
                     S3Uri = "s3Uri",

                     // the properties below are optional
                     ContentDigest = "contentDigest"
                 }
             };

Synopsis

Constructors

ModelQualityProperty()

Model quality statistics and constraints.

Properties

Constraints

Model quality constraints.

Statistics

Model quality statistics.

Constructors

ModelQualityProperty()

Model quality statistics and constraints.

public ModelQualityProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-modelpackage-modelquality.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 modelQualityProperty = new ModelQualityProperty {
                 Constraints = new MetricsSourceProperty {
                     ContentType = "contentType",
                     S3Uri = "s3Uri",

                     // the properties below are optional
                     ContentDigest = "contentDigest"
                 },
                 Statistics = new MetricsSourceProperty {
                     ContentType = "contentType",
                     S3Uri = "s3Uri",

                     // the properties below are optional
                     ContentDigest = "contentDigest"
                 }
             };

Properties

Constraints

Model quality constraints.

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-modelpackage-modelquality.html#cfn-sagemaker-modelpackage-modelquality-constraints

Statistics

Model quality statistics.

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-modelpackage-modelquality.html#cfn-sagemaker-modelpackage-modelquality-statistics

Implements

CfnModelPackage.IModelQualityProperty
Back to top Generated by DocFX