interface GeoSpatialColumnGroupProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnDataSetPropsMixin.GeoSpatialColumnGroupProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnDataSetPropsMixin_GeoSpatialColumnGroupProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnDataSetPropsMixin.GeoSpatialColumnGroupProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnDataSetPropsMixin.GeoSpatialColumnGroupProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » CfnDataSetPropsMixin » GeoSpatialColumnGroupProperty |
Geospatial column group that denotes a hierarchy.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_quicksight as quicksight } from '@aws-cdk/cfn-property-mixins';
const geoSpatialColumnGroupProperty: quicksight.CfnDataSetPropsMixin.GeoSpatialColumnGroupProperty = {
columns: ['columns'],
countryCode: 'countryCode',
name: 'name',
};
Properties
| Name | Type | Description |
|---|---|---|
| columns? | string[] | Columns in this hierarchy. |
| country | string | Country code. |
| name? | string | A display name for the hierarchy. |
columns?
Type:
string[]
(optional)
Columns in this hierarchy.
countryCode?
Type:
string
(optional)
Country code.
name?
Type:
string
(optional)
A display name for the hierarchy.

.NET
Go
Java
Python
TypeScript