Interface CfnDataSet.TagColumnOperationProperty

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

@Stability(Stable) public static interface CfnDataSet.TagColumnOperationProperty extends software.amazon.jsii.JsiiSerializable
A transform operation that tags a column with additional information.

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.*;
 TagColumnOperationProperty tagColumnOperationProperty = TagColumnOperationProperty.builder()
         .columnName("columnName")
         .tags(List.of(ColumnTagProperty.builder()
                 .columnDescription(ColumnDescriptionProperty.builder()
                         .text("text")
                         .build())
                 .columnGeographicRole("columnGeographicRole")
                 .build()))
         .build();