interface TimestampColumnProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.LookoutMetrics.CfnAnomalyDetector.TimestampColumnProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awslookoutmetrics#CfnAnomalyDetector_TimestampColumnProperty |
Java | software.amazon.awscdk.services.lookoutmetrics.CfnAnomalyDetector.TimestampColumnProperty |
Python | aws_cdk.aws_lookoutmetrics.CfnAnomalyDetector.TimestampColumnProperty |
TypeScript | aws-cdk-lib » aws_lookoutmetrics » CfnAnomalyDetector » 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 { aws_lookoutmetrics as lookoutmetrics } from 'aws-cdk-lib';
const timestampColumnProperty: lookoutmetrics.CfnAnomalyDetector.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