Interface CfnModelBiasJobDefinition.BatchTransformInputProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnModelBiasJobDefinition.BatchTransformInputProperty.Jsii$Proxy
Enclosing class:
CfnModelBiasJobDefinition

@Stability(Stable) public static interface CfnModelBiasJobDefinition.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")
         .featuresAttribute("featuresAttribute")
         .inferenceAttribute("inferenceAttribute")
         .probabilityAttribute("probabilityAttribute")
         .probabilityThresholdAttribute(123)
         .s3DataDistributionType("s3DataDistributionType")
         .s3InputMode("s3InputMode")
         .startTimeOffset("startTimeOffset")
         .build();
 

See Also: