Interface CfnInferenceSchedulerPropsMixin.DataInputConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnInferenceSchedulerPropsMixin.DataInputConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnInferenceSchedulerPropsMixin
@Stability(Stable)
public static interface CfnInferenceSchedulerPropsMixin.DataInputConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Specifies configuration information for the input data for the inference scheduler, including delimiter, format, and dataset 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.cfnpropertymixins.services.lookoutequipment.*;
DataInputConfigurationProperty dataInputConfigurationProperty = DataInputConfigurationProperty.builder()
.inferenceInputNameConfiguration(InputNameConfigurationProperty.builder()
.componentTimestampDelimiter("componentTimestampDelimiter")
.timestampFormat("timestampFormat")
.build())
.inputTimeZoneOffset("inputTimeZoneOffset")
.s3InputConfiguration(S3InputConfigurationProperty.builder()
.bucket("bucket")
.prefix("prefix")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnInferenceSchedulerPropsMixin.DataInputConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectSpecifies configuration information for the input data for the inference, including timestamp format and delimiter.default StringIndicates the difference between your time zone and Greenwich Mean Time (GMT).default ObjectSpecifies configuration information for the input data for the inference, including input data S3 location.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getInferenceInputNameConfiguration
Specifies configuration information for the input data for the inference, including timestamp format and delimiter.Returns union: either
IResolvableorCfnInferenceSchedulerPropsMixin.InputNameConfigurationProperty- See Also:
-
getInputTimeZoneOffset
Indicates the difference between your time zone and Greenwich Mean Time (GMT).- See Also:
-
getS3InputConfiguration
Specifies configuration information for the input data for the inference, including input data S3 location.Returns union: either
IResolvableorCfnInferenceSchedulerPropsMixin.S3InputConfigurationProperty- See Also:
-
builder
@Stability(Stable) static CfnInferenceSchedulerPropsMixin.DataInputConfigurationProperty.Builder builder()
-