public static interface CfnDataSet.TagColumnOperationProperty
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnDataSet.TagColumnOperationProperty.Builder
A builder for
CfnDataSet.TagColumnOperationProperty |
static class |
CfnDataSet.TagColumnOperationProperty.Jsii$Proxy
An implementation for
CfnDataSet.TagColumnOperationProperty |
Modifier and Type | Method and Description |
---|---|
static CfnDataSet.TagColumnOperationProperty.Builder |
builder() |
java.lang.String |
getColumnName()
The column that this operation acts on.
|
java.util.List<CfnDataSet.ColumnTagProperty> |
getTags()
The dataset column tag, currently only used for geospatial type tagging.
|
java.lang.String getColumnName()
java.util.List<CfnDataSet.ColumnTagProperty> getTags()
This is not tags for the AWS tagging feature.
static CfnDataSet.TagColumnOperationProperty.Builder builder()