Interface CfnDataSet.ColumnTagProperty

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

@Stability(Stable) public static interface CfnDataSet.ColumnTagProperty extends software.amazon.jsii.JsiiSerializable
A tag for a column in a [TagColumnOperation](https://docs.aws.amazon.com/quicksight/latest/APIReference/API_TagColumnOperation.html) structure. 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.*;
 ColumnTagProperty columnTagProperty = ColumnTagProperty.builder()
         .columnDescription(ColumnDescriptionProperty.builder()
                 .text("text")
                 .build())
         .columnGeographicRole("columnGeographicRole")
         .build();
 

See Also: