interface DataInputConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.LookoutEquipment.CfnInferenceSchedulerPropsMixin.DataInputConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awslookoutequipment#CfnInferenceSchedulerPropsMixin_DataInputConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.lookoutequipment.CfnInferenceSchedulerPropsMixin.DataInputConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_lookoutequipment.CfnInferenceSchedulerPropsMixin.DataInputConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_lookoutequipment » CfnInferenceSchedulerPropsMixin » DataInputConfigurationProperty |
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 { aws_lookoutequipment as lookoutequipment } from '@aws-cdk/cfn-property-mixins';
const dataInputConfigurationProperty: lookoutequipment.CfnInferenceSchedulerPropsMixin.DataInputConfigurationProperty = {
inferenceInputNameConfiguration: {
componentTimestampDelimiter: 'componentTimestampDelimiter',
timestampFormat: 'timestampFormat',
},
inputTimeZoneOffset: 'inputTimeZoneOffset',
s3InputConfiguration: {
bucket: 'bucket',
prefix: 'prefix',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| inference | IResolvable | Input | Specifies configuration information for the input data for the inference, including timestamp format and delimiter. |
| input | string | Indicates the difference between your time zone and Greenwich Mean Time (GMT). |
| s3 | IResolvable | S3 | Specifies configuration information for the input data for the inference, including input data S3 location. |
inferenceInputNameConfiguration?
Type:
IResolvable | Input
(optional)
Specifies configuration information for the input data for the inference, including timestamp format and delimiter.
inputTimeZoneOffset?
Type:
string
(optional)
Indicates the difference between your time zone and Greenwich Mean Time (GMT).
s3InputConfiguration?
Type:
IResolvable | S3
(optional)
Specifies configuration information for the input data for the inference, including input data S3 location.

.NET
Go
Java
Python
TypeScript