Interface CfnInferenceScheduler.DataInputConfigurationProperty

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

@Stability(Stable) public static interface CfnInferenceScheduler.DataInputConfigurationProperty extends software.amazon.jsii.JsiiSerializable
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.*;
 DataInputConfigurationProperty dataInputConfigurationProperty = DataInputConfigurationProperty.builder()
         .s3InputConfiguration(S3InputConfigurationProperty.builder()
                 .bucket("bucket")
                 // the properties below are optional
                 .prefix("prefix")
                 .build())
         // the properties below are optional
         .inferenceInputNameConfiguration(InputNameConfigurationProperty.builder()
                 .componentTimestampDelimiter("componentTimestampDelimiter")
                 .timestampFormat("timestampFormat")
                 .build())
         .inputTimeZoneOffset("inputTimeZoneOffset")
         .build();