table_tags
Expands all tag keys and values for tables
in a region
Overview
Name | table_tags |
Type | Resource |
Description | Resource schema for AWS::Cassandra::Table |
Id | aws.cassandra.table_tags |
Fields
Name | Datatype | Description |
---|---|---|
keyspace_name | string | Name for Cassandra keyspace |
table_name | string | Name for Cassandra table |
regular_columns | array | Non-key columns of the table |
partition_key_columns | array | Partition key columns of the table |
clustering_key_columns | array | Clustering key columns of the table |
billing_mode | object | |
point_in_time_recovery_enabled | boolean | Indicates whether point in time recovery is enabled (true) or disabled (false) on the table |
client_side_timestamps_enabled | boolean | Indicates whether client side timestamps are enabled (true) or disabled (false) on the table. False by default, once it is enabled it cannot be disabled again. |
default_time_to_live | integer | Default TTL (Time To Live) in seconds, where zero is disabled. If the value is greater than zero, TTL is enabled for the entire table and an expiration timestamp is added to each column. |
encryption_specification | object | Represents the settings used to enable server-side encryption |
auto_scaling_specifications | object | Represents the read and write settings used for AutoScaling. |
replica_specifications | array | |
tag_key | string | Tag key. |
tag_value | string | Tag value. |
region | string | AWS region. |
Methods
Name | Accessible by | Required Params |
---|---|---|
list_resources | SELECT | region |
SELECT
examples
Expands tags for all tables
in a region.
SELECT
region,
keyspace_name,
table_name,
regular_columns,
partition_key_columns,
clustering_key_columns,
billing_mode,
point_in_time_recovery_enabled,
client_side_timestamps_enabled,
default_time_to_live,
encryption_specification,
auto_scaling_specifications,
replica_specifications,
tag_key,
tag_value
FROM aws.cassandra.table_tags
WHERE region = 'us-east-1';
Permissions
For permissions required to operate on the table_tags
resource, see tables