aws-cdk-lib.aws_quicksight.CfnDataSet.TagColumnOperationProperty

interface TagColumnOperationProperty

LanguageType name
.NETAmazon.CDK.AWS.QuickSight.CfnDataSet.TagColumnOperationProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDataSet_TagColumnOperationProperty
Javasoftware.amazon.awscdk.services.quicksight.CfnDataSet.TagColumnOperationProperty
Pythonaws_cdk.aws_quicksight.CfnDataSet.TagColumnOperationProperty
TypeScript aws-cdk-lib » aws_quicksight » CfnDataSet » TagColumnOperationProperty

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 { aws_quicksight as quicksight } from 'aws-cdk-lib';
const tagColumnOperationProperty: quicksight.CfnDataSet.TagColumnOperationProperty = {
  columnName: 'columnName',
  tags: [{
    columnDescription: {
      text: 'text',
    },
    columnGeographicRole: 'columnGeographicRole',
  }],
};

Properties

NameTypeDescription
columnNamestringThe column that this operation acts on.
tagsColumnTagProperty[]The dataset column tag, currently only used for geospatial type tagging.

columnName

Type: string

The column that this operation acts on.


tags

Type: ColumnTagProperty[]

The dataset column tag, currently only used for geospatial type tagging.

This is not tags for the AWS tagging feature.