Interface CfnDataSet.ColumnGroupProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDataSet.ColumnGroupProperty.Jsii$Proxy
Enclosing class:
CfnDataSet

@Stability(Stable) public static interface CfnDataSet.ColumnGroupProperty extends software.amazon.jsii.JsiiSerializable
Groupings of columns that work together in certain Amazon QuickSight features.

This is a variant type structure. For this structure to be valid, only one of the attributes can be non-null.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.quicksight.*;
 ColumnGroupProperty columnGroupProperty = ColumnGroupProperty.builder()
         .geoSpatialColumnGroup(GeoSpatialColumnGroupProperty.builder()
                 .columns(List.of("columns"))
                 .name("name")
                 // the properties below are optional
                 .countryCode("countryCode")
                 .build())
         .build();
 

See Also: