interface DataInputConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.LookoutEquipment.Mixins.CfnInferenceSchedulerPropsMixin.DataInputConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslookoutequipment/mixins#CfnInferenceSchedulerPropsMixin_DataInputConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.lookoutequipment.mixins.CfnInferenceSchedulerPropsMixin.DataInputConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_lookoutequipment.mixins.CfnInferenceSchedulerPropsMixin.DataInputConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_lookoutequipment » mixins » 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 { mixins as lookoutequipment_mixins } from '@aws-cdk/mixins-preview/aws-lookoutequipment';
const dataInputConfigurationProperty: lookoutequipment_mixins.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