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

.NET
Go
Java
Python
TypeScript