public static interface CfnModelPackage.ModelQualityProperty
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.sagemaker.*; ModelQualityProperty modelQualityProperty = ModelQualityProperty.builder() .constraints(MetricsSourceProperty.builder() .contentType("contentType") .s3Uri("s3Uri") // the properties below are optional .contentDigest("contentDigest") .build()) .statistics(MetricsSourceProperty.builder() .contentType("contentType") .s3Uri("s3Uri") // the properties below are optional .contentDigest("contentDigest") .build()) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnModelPackage.ModelQualityProperty.Builder
A builder for
CfnModelPackage.ModelQualityProperty |
static class |
CfnModelPackage.ModelQualityProperty.Jsii$Proxy
An implementation for
CfnModelPackage.ModelQualityProperty |
Modifier and Type | Method and Description |
---|---|
static CfnModelPackage.ModelQualityProperty.Builder |
builder() |
default java.lang.Object |
getConstraints()
Model quality constraints.
|
default java.lang.Object |
getStatistics()
Model quality statistics.
|
default java.lang.Object getConstraints()
default java.lang.Object getStatistics()
static CfnModelPackage.ModelQualityProperty.Builder builder()