DataQualityJobDefinitionDataQualityJobInputBatchTransformInput constructor
- required Input<
String> dataCapturedDestinationS3Uri, - required Input<
DataQualityJobDefinitionDataQualityJobInputBatchTransformInputDatasetFormat> datasetFormat, - Input<
String?> ? localPath, - Input<
String?> ? s3DataDistributionType, - Input<
String?> ? s3InputMode,
Creates a new DataQualityJobDefinitionDataQualityJobInputBatchTransformInput.
dataCapturedDestinationS3Uri The Amazon S3 location being used to capture the data.
datasetFormat The dataset format for your batch transform job. Fields are documented below.
localPath Path to the filesystem where the batch transform data is available to the container. Defaults to /opt/ml/processing/input.
s3DataDistributionType Whether input data distributed in Amazon S3 is fully replicated or sharded by an S3 key. Defaults to FullyReplicated. Valid values are FullyReplicated or ShardedByS3Key
s3InputMode Whether the Pipe or File 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 to File. Valid values are Pipe or File
Implementation
const DataQualityJobDefinitionDataQualityJobInputBatchTransformInput({
required this.dataCapturedDestinationS3Uri,
required this.datasetFormat,
this.localPath,
this.s3DataDistributionType,
this.s3InputMode,
});