interface GeoSpatialColumnGroupProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnDataSetPropsMixin.GeoSpatialColumnGroupProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnDataSetPropsMixin_GeoSpatialColumnGroupProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnDataSetPropsMixin.GeoSpatialColumnGroupProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnDataSetPropsMixin.GeoSpatialColumnGroupProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » 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 { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const geoSpatialColumnGroupProperty: quicksight_mixins.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