interface TimestampColumnProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.LookoutMetrics.Mixins.CfnAnomalyDetectorPropsMixin.TimestampColumnProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslookoutmetrics/mixins#CfnAnomalyDetectorPropsMixin_TimestampColumnProperty |
Java | software.amazon.awscdk.mixins.preview.services.lookoutmetrics.mixins.CfnAnomalyDetectorPropsMixin.TimestampColumnProperty |
Python | aws_cdk.mixins_preview.aws_lookoutmetrics.mixins.CfnAnomalyDetectorPropsMixin.TimestampColumnProperty |
TypeScript | @aws-cdk/mixins-preview » aws_lookoutmetrics » mixins » CfnAnomalyDetectorPropsMixin » TimestampColumnProperty |
Contains information about the column used to track time in a source data file.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as lookoutmetrics_mixins } from '@aws-cdk/mixins-preview/aws-lookoutmetrics';
const timestampColumnProperty: lookoutmetrics_mixins.CfnAnomalyDetectorPropsMixin.TimestampColumnProperty = {
columnFormat: 'columnFormat',
columnName: 'columnName',
};
Properties
| Name | Type | Description |
|---|---|---|
| column | string | The format of the timestamp column. |
| column | string | The name of the timestamp column. |
columnFormat?
Type:
string
(optional)
The format of the timestamp column.
columnName?
Type:
string
(optional)
The name of the timestamp column.

.NET
Go
Java
Python
TypeScript