Interface CfnModelExplainabilityJobDefinition.EndpointInputProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnModelExplainabilityJobDefinition.EndpointInputProperty.Jsii$Proxy
- Enclosing class:
CfnModelExplainabilityJobDefinition
@Stability(Stable)
public static interface CfnModelExplainabilityJobDefinition.EndpointInputProperty
extends software.amazon.jsii.JsiiSerializable
Input object for the endpoint.
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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
static final class
An implementation forCfnModelExplainabilityJobDefinition.EndpointInputProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
An endpoint in customer's account which has enabledDataCaptureConfig
enabled.default String
The attributes of the input data that are the input features.default String
The attribute of the input data that represents the ground truth label.Path to the filesystem where the endpoint data is available to the container.default String
In a classification problem, the attribute that represents the class probability.default String
Whether input data distributed in Amazon S3 is fully replicated or sharded by an Amazon S3 key.default String
Whether thePipe
orFile
is used as the input mode for transferring data for the monitoring job.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEndpointName
An endpoint in customer's account which has enabledDataCaptureConfig
enabled.- See Also:
-
getLocalPath
Path to the filesystem where the endpoint data is available to the container.- See Also:
-
getFeaturesAttribute
The attributes of the input data that are the input features.- See Also:
-
getInferenceAttribute
The attribute of the input data that represents the ground truth label.- See Also:
-
getProbabilityAttribute
In a classification problem, the attribute that represents the class probability.- See Also:
-
getS3DataDistributionType
Whether input data distributed in Amazon S3 is fully replicated or sharded by an Amazon S3 key.Defaults to
FullyReplicated
- See Also:
-
getS3InputMode
Whether thePipe
orFile
is used as the input mode for transferring data for the monitoring job.Pipe
mode is recommended for large datasets.File
mode is useful for small files that fit in memory. Defaults toFile
.- See Also:
-
builder
@Stability(Stable) static CfnModelExplainabilityJobDefinition.EndpointInputProperty.Builder builder()
-