@Stability(value=Stable)
public static interface CfnModelExplainabilityJobDefinition.EndpointInputProperty
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.*;
EndpointInputProperty endpointInputProperty = EndpointInputProperty.builder()
.endpointName("endpointName")
.localPath("localPath")
// the properties below are optional
.featuresAttribute("featuresAttribute")
.inferenceAttribute("inferenceAttribute")
.probabilityAttribute("probabilityAttribute")
.s3DataDistributionType("s3DataDistributionType")
.s3InputMode("s3InputMode")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnModelExplainabilityJobDefinition.EndpointInputProperty.Builder
|
static class |
CfnModelExplainabilityJobDefinition.EndpointInputProperty.Jsii$Proxy
An implementation for
CfnModelExplainabilityJobDefinition.EndpointInputProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnModelExplainabilityJobDefinition.EndpointInputProperty.Builder |
builder() |
String |
getEndpointName()
An endpoint in customer's account which has enabled `DataCaptureConfig` enabled.
|
default String |
getFeaturesAttribute()
The attributes of the input data that are the input features.
|
default String |
getInferenceAttribute()
The attribute of the input data that represents the ground truth label.
|
String |
getLocalPath()
Path to the filesystem where the endpoint data is available to the container.
|
default String |
getProbabilityAttribute()
In a classification problem, the attribute that represents the class probability.
|
default String |
getS3DataDistributionType()
Whether input data distributed in Amazon S3 is fully replicated or sharded by an S3 key.
|
default String |
getS3InputMode()
Whether the `Pipe` or `File` is used as the input mode for transferring data for the monitoring job.
|
@Stability(value=Stable) @NotNull String getEndpointName()
@Stability(value=Stable) @NotNull String getLocalPath()
@Stability(value=Stable) @Nullable default String getFeaturesAttribute()
@Stability(value=Stable) @Nullable default String getInferenceAttribute()
@Stability(value=Stable) @Nullable default String getProbabilityAttribute()
@Stability(value=Stable) @Nullable default String getS3DataDistributionType()
Defaults to FullyReplicated
@Stability(value=Stable) @Nullable default String getS3InputMode()
Pipe mode is recommended for large datasets. File mode is useful for small files that fit in memory. Defaults to File .
@Stability(value=Stable) static CfnModelExplainabilityJobDefinition.EndpointInputProperty.Builder builder()
Copyright © 2022. All rights reserved.