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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDataSet.TagColumnOperationProperty
static final class
An implementation forCfnDataSet.TagColumnOperationProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getColumnName
The column that this operation acts on. -
getTags
The dataset column tag, currently only used for geospatial type tagging.This is not tags for the AWS tagging feature.
-
builder
-