@Stability(value=Stable)
public static interface CfnModelPackage.DriftCheckBaselinesProperty
extends software.amazon.jsii.JsiiSerializable
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.*;
DriftCheckBaselinesProperty driftCheckBaselinesProperty = DriftCheckBaselinesProperty.builder()
.bias(DriftCheckBiasProperty.builder()
.configFile(FileSourceProperty.builder()
.s3Uri("s3Uri")
// the properties below are optional
.contentDigest("contentDigest")
.contentType("contentType")
.build())
.postTrainingConstraints(MetricsSourceProperty.builder()
.contentType("contentType")
.s3Uri("s3Uri")
// the properties below are optional
.contentDigest("contentDigest")
.build())
.preTrainingConstraints(MetricsSourceProperty.builder()
.contentType("contentType")
.s3Uri("s3Uri")
// the properties below are optional
.contentDigest("contentDigest")
.build())
.build())
.explainability(DriftCheckExplainabilityProperty.builder()
.configFile(FileSourceProperty.builder()
.s3Uri("s3Uri")
// the properties below are optional
.contentDigest("contentDigest")
.contentType("contentType")
.build())
.constraints(MetricsSourceProperty.builder()
.contentType("contentType")
.s3Uri("s3Uri")
// the properties below are optional
.contentDigest("contentDigest")
.build())
.build())
.modelDataQuality(DriftCheckModelDataQualityProperty.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())
.modelQuality(DriftCheckModelQualityProperty.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())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnModelPackage.DriftCheckBaselinesProperty.Builder
A builder for
CfnModelPackage.DriftCheckBaselinesProperty |
static class |
CfnModelPackage.DriftCheckBaselinesProperty.Jsii$Proxy
An implementation for
CfnModelPackage.DriftCheckBaselinesProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnModelPackage.DriftCheckBaselinesProperty.Builder |
builder() |
default Object |
getBias()
Represents the drift check bias baselines that can be used when the model monitor is set using the model package.
|
default Object |
getExplainability()
Represents the drift check explainability baselines that can be used when the model monitor is set using the model package.
|
default Object |
getModelDataQuality()
Represents the drift check model data quality baselines that can be used when the model monitor is set using the model package.
|
default Object |
getModelQuality()
Represents the drift check model quality baselines that can be used when the model monitor is set using the model package.
|
@Stability(value=Stable) @Nullable default Object getBias()
@Stability(value=Stable) @Nullable default Object getExplainability()
@Stability(value=Stable) @Nullable default Object getModelDataQuality()
@Stability(value=Stable) @Nullable default Object getModelQuality()
@Stability(value=Stable) static CfnModelPackage.DriftCheckBaselinesProperty.Builder builder()
Copyright © 2022. All rights reserved.