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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataSet.TagColumnOperationPropertystatic final classAn 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.- See Also:
-
getTags
The dataset column tag, currently only used for geospatial type tagging.This is not tags for the AWS tagging feature.
- See Also:
-
builder
-