Class: Aws::QuickSight::Types::ColumnTag
- Inherits:
-
Struct
- Object
- Struct
- Aws::QuickSight::Types::ColumnTag
- Defined in:
- gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb
Overview
Note:
When making an API call, you may pass ColumnTag data as a hash:
{
column_geographic_role: "COUNTRY", # accepts COUNTRY, STATE, COUNTY, CITY, POSTCODE, LONGITUDE, LATITUDE
column_description: {
text: "ColumnDescriptiveText",
},
}
A tag for a column in a TagColumnOperation
structure. This is a
variant type structure. For this structure to be valid, only one of
the attributes can be non-null.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#column_description ⇒ Types::ColumnDescription
A description for a column.
-
#column_geographic_role ⇒ String
A geospatial role for a column.
Instance Attribute Details
#column_description ⇒ Types::ColumnDescription
A description for a column.
871 872 873 874 875 876 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 871 class ColumnTag < Struct.new( :column_geographic_role, :column_description) SENSITIVE = [] include Aws::Structure end |