Class: Aws::LookoutMetrics::Types::TimestampColumn
- Inherits:
-
Struct
- Object
- Struct
- Aws::LookoutMetrics::Types::TimestampColumn
- Defined in:
- gems/aws-sdk-lookoutmetrics/lib/aws-sdk-lookoutmetrics/types.rb
Overview
Note:
When making an API call, you may pass TimestampColumn data as a hash:
{
column_name: "ColumnName",
column_format: "DateTimeFormat",
}
Contains information about the column used to track time in a source data file.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#column_format ⇒ String
The format of the timestamp column.
-
#column_name ⇒ String
The name of the timestamp column.
Instance Attribute Details
#column_format ⇒ String
The format of the timestamp column.
3168 3169 3170 3171 3172 3173 |
# File 'gems/aws-sdk-lookoutmetrics/lib/aws-sdk-lookoutmetrics/types.rb', line 3168 class TimestampColumn < Struct.new( :column_name, :column_format) SENSITIVE = [] include Aws::Structure end |
#column_name ⇒ String
The name of the timestamp column.
3168 3169 3170 3171 3172 3173 |
# File 'gems/aws-sdk-lookoutmetrics/lib/aws-sdk-lookoutmetrics/types.rb', line 3168 class TimestampColumn < Struct.new( :column_name, :column_format) SENSITIVE = [] include Aws::Structure end |