Class Table
- java.lang.Object
-
- com.amazonaws.athena.connectors.cloudwatch.metrics.tables.Table
-
- Direct Known Subclasses:
MetricSamplesTable
,MetricsTable
public abstract class Table extends Object
Defines some commonly required field names used by all tables and consumers of tables in this connector.
-
-
Field Summary
Fields Modifier and Type Field Description static String
DIMENSION_NAME_FIELD
static String
DIMENSION_VALUE_FIELD
static String
DIMENSIONS_FIELD
static String
METRIC_NAME_FIELD
static String
NAMESPACE_FIELD
static String
PERIOD_FIELD
static String
STATISTIC_FIELD
static String
TIMESTAMP_FIELD
static String
VALUE_FIELD
-
Constructor Summary
Constructors Constructor Description Table()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract String
getName()
abstract Set<String>
getPartitionColumns()
abstract org.apache.arrow.vector.types.pojo.Schema
getSchema()
-
-
-
Field Detail
-
METRIC_NAME_FIELD
public static final String METRIC_NAME_FIELD
- See Also:
- Constant Field Values
-
NAMESPACE_FIELD
public static final String NAMESPACE_FIELD
- See Also:
- Constant Field Values
-
DIMENSIONS_FIELD
public static final String DIMENSIONS_FIELD
- See Also:
- Constant Field Values
-
DIMENSION_NAME_FIELD
public static final String DIMENSION_NAME_FIELD
- See Also:
- Constant Field Values
-
DIMENSION_VALUE_FIELD
public static final String DIMENSION_VALUE_FIELD
- See Also:
- Constant Field Values
-
TIMESTAMP_FIELD
public static final String TIMESTAMP_FIELD
- See Also:
- Constant Field Values
-
VALUE_FIELD
public static final String VALUE_FIELD
- See Also:
- Constant Field Values
-
STATISTIC_FIELD
public static final String STATISTIC_FIELD
- See Also:
- Constant Field Values
-
PERIOD_FIELD
public static final String PERIOD_FIELD
- See Also:
- Constant Field Values
-
-