Interface CfnModelPackagePropsMixin.ModelDataQualityProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnModelPackagePropsMixin.ModelDataQualityProperty.Jsii$Proxy
- Enclosing class:
CfnModelPackagePropsMixin
@Stability(Stable)
public static interface CfnModelPackagePropsMixin.ModelDataQualityProperty
extends software.amazon.jsii.JsiiSerializable
Data quality constraints and statistics for a model.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.sagemaker.*;
ModelDataQualityProperty modelDataQualityProperty = ModelDataQualityProperty.builder()
.constraints(MetricsSourceProperty.builder()
.contentDigest("contentDigest")
.contentType("contentType")
.s3Uri("s3Uri")
.build())
.statistics(MetricsSourceProperty.builder()
.contentDigest("contentDigest")
.contentType("contentType")
.s3Uri("s3Uri")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnModelPackagePropsMixin.ModelDataQualityPropertystatic final classAn implementation forCfnModelPackagePropsMixin.ModelDataQualityProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConstraints
Data quality constraints for a model.Returns union: either
IResolvableorCfnModelPackagePropsMixin.MetricsSourceProperty- See Also:
-
getStatistics
Data quality statistics for a model.Returns union: either
IResolvableorCfnModelPackagePropsMixin.MetricsSourceProperty- See Also:
-
builder
-