interface TimestampColumnProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.LookoutMetrics.CfnAnomalyDetectorPropsMixin.TimestampColumnProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awslookoutmetrics#CfnAnomalyDetectorPropsMixin_TimestampColumnProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.lookoutmetrics.CfnAnomalyDetectorPropsMixin.TimestampColumnProperty |
Python | aws_cdk.cfn_property_mixins.aws_lookoutmetrics.CfnAnomalyDetectorPropsMixin.TimestampColumnProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_lookoutmetrics » 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 { aws_lookoutmetrics as lookoutmetrics } from '@aws-cdk/cfn-property-mixins';
const timestampColumnProperty: lookoutmetrics.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