Interface CfnModelQualityJobDefinition.BatchTransformInputProperty
- All Superinterfaces:
- software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
- CfnModelQualityJobDefinition.BatchTransformInputProperty.Jsii$Proxy
- Enclosing class:
- CfnModelQualityJobDefinition
@Stability(Stable)
public static interface CfnModelQualityJobDefinition.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.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())
         .localPath("localPath")
         // the properties below are optional
         .endTimeOffset("endTimeOffset")
         .inferenceAttribute("inferenceAttribute")
         .probabilityAttribute("probabilityAttribute")
         .probabilityThresholdAttribute(123)
         .s3DataDistributionType("s3DataDistributionType")
         .s3InputMode("s3InputMode")
         .startTimeOffset("startTimeOffset")
         .build();
 - See Also:
- 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnModelQualityJobDefinition.BatchTransformInputPropertystatic final classAn implementation forCfnModelQualityJobDefinition.BatchTransformInputProperty
- 
Method SummaryModifier and TypeMethodDescriptionbuilder()The Amazon S3 location being used to capture the data.The dataset format for your batch transform job.default StringIf specified, monitoring jobs subtract this time from the end time.default StringThe attribute of the input data that represents the ground truth label.Path to the filesystem where the batch transform data is available to the container.default StringIn a classification problem, the attribute that represents the class probability.default NumberThe threshold for the class probability to be evaluated as a positive result.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.default StringIf specified, monitoring jobs substract this time from the start time.Methods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getDataCapturedDestinationS3UriThe Amazon S3 location being used to capture the data.- See Also:
 
- 
getDatasetFormatThe dataset format for your batch transform job.Returns union: either IResolvableorCfnModelQualityJobDefinition.DatasetFormatProperty- See Also:
 
- 
getLocalPathPath to the filesystem where the batch transform data is available to the container.- See Also:
 
- 
getEndTimeOffsetIf specified, monitoring jobs subtract this time from the end time.For information about using offsets for scheduling monitoring jobs, see Schedule Model Quality Monitoring Jobs . - See Also:
 
- 
getInferenceAttributeThe attribute of the input data that represents the ground truth label.- See Also:
 
- 
getProbabilityAttributeIn a classification problem, the attribute that represents the class probability.- See Also:
 
- 
getProbabilityThresholdAttributeThe threshold for the class probability to be evaluated as a positive result.- See Also:
 
- 
getS3DataDistributionTypeWhether input data distributed in Amazon S3 is fully replicated or sharded by an S3 key.Defaults to FullyReplicated- See Also:
 
- 
getS3InputModeWhether 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:
 
- 
getStartTimeOffsetIf specified, monitoring jobs substract this time from the start time.For information about using offsets for scheduling monitoring jobs, see Schedule Model Quality Monitoring Jobs . - See Also:
 
- 
builder@Stability(Stable) static CfnModelQualityJobDefinition.BatchTransformInputProperty.Builder builder()
 
-