Interface CfnDataQualityJobDefinitionPropsMixin.BatchTransformInputProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataQualityJobDefinitionPropsMixin.BatchTransformInputProperty.Jsii$Proxy
- Enclosing class:
CfnDataQualityJobDefinitionPropsMixin
@Stability(Stable)
public static interface CfnDataQualityJobDefinitionPropsMixin.BatchTransformInputProperty
extends software.amazon.jsii.JsiiSerializable
Input object for the batch transform job.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.sagemaker.*;
BatchTransformInputProperty batchTransformInputProperty = BatchTransformInputProperty.builder()
.dataCapturedDestinationS3Uri("dataCapturedDestinationS3Uri")
.datasetFormat(DatasetFormatProperty.builder()
.csv(CsvProperty.builder()
.header(false)
.build())
.json(JsonProperty.builder()
.line(false)
.build())
.parquet(false)
.build())
.excludeFeaturesAttribute("excludeFeaturesAttribute")
.localPath("localPath")
.s3DataDistributionType("s3DataDistributionType")
.s3InputMode("s3InputMode")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnDataQualityJobDefinitionPropsMixin.BatchTransformInputProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe Amazon S3 location being used to capture the data.default ObjectThe dataset format for your batch transform job.default StringThe attributes of the input data to exclude from the analysis.default StringPath to the filesystem where the batch transform 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
-
getDataCapturedDestinationS3Uri
The Amazon S3 location being used to capture the data.- See Also:
-
getDatasetFormat
The dataset format for your batch transform job.Returns union: either
IResolvableorCfnDataQualityJobDefinitionPropsMixin.DatasetFormatProperty- See Also:
-
getExcludeFeaturesAttribute
The attributes of the input data to exclude from the analysis.- See Also:
-
getLocalPath
Path to the filesystem where the batch transform data is available to the container.- See Also:
-
getS3DataDistributionType
Whether input data distributed in Amazon S3 is fully replicated or sharded by an S3 key.Defaults to
FullyReplicated- See Also:
-
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.- See Also:
-
builder
@Stability(Stable) static CfnDataQualityJobDefinitionPropsMixin.BatchTransformInputProperty.Builder builder()
-