interface InputNameConfigurationProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.LookoutEquipment.CfnInferenceScheduler.InputNameConfigurationProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awslookoutequipment#CfnInferenceScheduler_InputNameConfigurationProperty | 
|  Java | software.amazon.awscdk.services.lookoutequipment.CfnInferenceScheduler.InputNameConfigurationProperty | 
|  Python | aws_cdk.aws_lookoutequipment.CfnInferenceScheduler.InputNameConfigurationProperty | 
|  TypeScript | aws-cdk-lib»aws_lookoutequipment»CfnInferenceScheduler»InputNameConfigurationProperty | 
Specifies configuration information for the input data for the inference, including timestamp format and delimiter.
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-lib';
const inputNameConfigurationProperty: lookoutequipment.CfnInferenceScheduler.InputNameConfigurationProperty = {
  componentTimestampDelimiter: 'componentTimestampDelimiter',
  timestampFormat: 'timestampFormat',
};
Properties
| Name | Type | Description | 
|---|---|---|
| component | string | Indicates the delimiter character used between items in the data. | 
| timestamp | string | The format of the timestamp, whether Epoch time, or standard, with or without hyphens (-). | 
componentTimestampDelimiter?
Type:
string
(optional)
Indicates the delimiter character used between items in the data.
timestampFormat?
Type:
string
(optional)
The format of the timestamp, whether Epoch time, or standard, with or without hyphens (-).
