Interface CfnInferenceScheduler.S3InputConfigurationProperty

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

@Stability(Stable) public static interface CfnInferenceScheduler.S3InputConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Specifies configuration information for the input data for the inference, including input data S3 location.

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.lookoutequipment.*;
 S3InputConfigurationProperty s3InputConfigurationProperty = S3InputConfigurationProperty.builder()
         .bucket("bucket")
         // the properties below are optional
         .prefix("prefix")
         .build();
 

See Also: