Class: Aws::QuickSight::Types::GeoSpatialColumnGroup
- Inherits:
-
Struct
- Object
- Struct
- Aws::QuickSight::Types::GeoSpatialColumnGroup
- Defined in:
- gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb
Overview
Note:
When making an API call, you may pass GeoSpatialColumnGroup data as a hash:
{
name: "ColumnGroupName", # required
country_code: "US", # required, accepts US
columns: ["ColumnName"], # required
}
Geospatial column group that denotes a hierarchy.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#columns ⇒ Array<String>
Columns in this hierarchy.
-
#country_code ⇒ String
Country code.
-
#name ⇒ String
A display name for the hierarchy.
Instance Attribute Details
#columns ⇒ Array<String>
Columns in this hierarchy.
7271 7272 7273 7274 7275 7276 7277 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7271 class GeoSpatialColumnGroup < Struct.new( :name, :country_code, :columns) SENSITIVE = [] include Aws::Structure end |
#country_code ⇒ String
Country code.
7271 7272 7273 7274 7275 7276 7277 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7271 class GeoSpatialColumnGroup < Struct.new( :name, :country_code, :columns) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
A display name for the hierarchy.
7271 7272 7273 7274 7275 7276 7277 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7271 class GeoSpatialColumnGroup < Struct.new( :name, :country_code, :columns) SENSITIVE = [] include Aws::Structure end |