Interface CfnProcessingJob.S3InputProperty

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

@Stability(Stable) public static interface CfnProcessingJob.S3InputProperty extends software.amazon.jsii.JsiiSerializable
Configuration for downloading input data from Amazon S3 into the processing container.

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.*;
 S3InputProperty s3InputProperty = S3InputProperty.builder()
         .s3DataType("s3DataType")
         .s3Uri("s3Uri")
         // the properties below are optional
         .localPath("localPath")
         .s3CompressionType("s3CompressionType")
         .s3DataDistributionType("s3DataDistributionType")
         .s3InputMode("s3InputMode")
         .build();
 

See Also: