Interface CfnDataQualityJobDefinition.EndpointInputProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataQualityJobDefinition.EndpointInputProperty.Jsii$Proxy
- Enclosing class:
- CfnDataQualityJobDefinition
@Stability(Stable)
public static interface CfnDataQualityJobDefinition.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
.s3DataDistributionType("s3DataDistributionType")
.s3InputMode("s3InputMode")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataQualityJobDefinition.EndpointInputPropertystatic final classAn implementation forCfnDataQualityJobDefinition.EndpointInputProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()An endpoint in customer's account which has enabledDataCaptureConfigenabled.Path to the filesystem where the endpoint data is available to the container.default StringWhether input data distributed in Amazon S3 is fully replicated or sharded by an S3 key.default StringWhether thePipeorFileis 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 enabledDataCaptureConfigenabled. -
getLocalPath
Path to the filesystem where the endpoint data is available to the container. -
getS3DataDistributionType
Whether input data distributed in Amazon S3 is fully replicated or sharded by an S3 key.Defaults to
FullyReplicated -
getS3InputMode
Whether thePipeorFileis used as the input mode for transferring data for the monitoring job.Pipemode is recommended for large datasets.Filemode is useful for small files that fit in memory. Defaults toFile. -
builder
-