Class CfnDataSet.ColumnGroupProperty
Groupings of columns that work together in certain Amazon QuickSight features.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDataSet.ColumnGroupProperty : CfnDataSet.IColumnGroupProperty
Syntax (vb)
Public Class CfnDataSet.ColumnGroupProperty Implements CfnDataSet.IColumnGroupProperty
Remarks
This is a variant type structure. For this structure to be valid, only one of the attributes can be non-null.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.QuickSight;
var columnGroupProperty = new ColumnGroupProperty {
GeoSpatialColumnGroup = new GeoSpatialColumnGroupProperty {
Columns = new [] { "columns" },
Name = "name",
// the properties below are optional
CountryCode = "countryCode"
}
};
Synopsis
Constructors
ColumnGroupProperty() | Groupings of columns that work together in certain Amazon QuickSight features. |
Properties
GeoSpatialColumnGroup | Geospatial column group that denotes a hierarchy. |
Constructors
ColumnGroupProperty()
Groupings of columns that work together in certain Amazon QuickSight features.
public ColumnGroupProperty()
Remarks
This is a variant type structure. For this structure to be valid, only one of the attributes can be non-null.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.QuickSight;
var columnGroupProperty = new ColumnGroupProperty {
GeoSpatialColumnGroup = new GeoSpatialColumnGroupProperty {
Columns = new [] { "columns" },
Name = "name",
// the properties below are optional
CountryCode = "countryCode"
}
};
Properties
GeoSpatialColumnGroup
Geospatial column group that denotes a hierarchy.
public object? GeoSpatialColumnGroup { get; set; }