@Stability(value=Stable)
public static interface CfnModelBiasJobDefinition.ModelBiasJobInputProperty
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.*;
ModelBiasJobInputProperty modelBiasJobInputProperty = ModelBiasJobInputProperty.builder()
.endpointInput(EndpointInputProperty.builder()
.endpointName("endpointName")
.localPath("localPath")
// the properties below are optional
.endTimeOffset("endTimeOffset")
.featuresAttribute("featuresAttribute")
.inferenceAttribute("inferenceAttribute")
.probabilityAttribute("probabilityAttribute")
.probabilityThresholdAttribute(123)
.s3DataDistributionType("s3DataDistributionType")
.s3InputMode("s3InputMode")
.startTimeOffset("startTimeOffset")
.build())
.groundTruthS3Input(MonitoringGroundTruthS3InputProperty.builder()
.s3Uri("s3Uri")
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnModelBiasJobDefinition.ModelBiasJobInputProperty.Builder
A builder for
CfnModelBiasJobDefinition.ModelBiasJobInputProperty |
static class |
CfnModelBiasJobDefinition.ModelBiasJobInputProperty.Jsii$Proxy
An implementation for
CfnModelBiasJobDefinition.ModelBiasJobInputProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnModelBiasJobDefinition.ModelBiasJobInputProperty.Builder |
builder() |
Object |
getEndpointInput()
Input object for the endpoint.
|
Object |
getGroundTruthS3Input()
Location of ground truth labels to use in model bias job.
|
@Stability(value=Stable) @NotNull Object getEndpointInput()
@Stability(value=Stable) @NotNull Object getGroundTruthS3Input()
@Stability(value=Stable) static CfnModelBiasJobDefinition.ModelBiasJobInputProperty.Builder builder()
Copyright © 2022. All rights reserved.