interface ColumnTagProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnDataSetPropsMixin.ColumnTagProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnDataSetPropsMixin_ColumnTagProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnDataSetPropsMixin.ColumnTagProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnDataSetPropsMixin.ColumnTagProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » CfnDataSetPropsMixin » ColumnTagProperty |
A tag for a column in a [TagColumnOperation](https://docs.aws.amazon.com/quicksight/latest/APIReference/API_TagColumnOperation.html) structure. This is a variant type structure. For this structure to be valid, only one of the attributes can be non-null.
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/cfn-property-mixins';
const columnTagProperty: quicksight.CfnDataSetPropsMixin.ColumnTagProperty = {
columnDescription: {
text: 'text',
},
columnGeographicRole: 'columnGeographicRole',
};
Properties
| Name | Type | Description |
|---|---|---|
| column | IResolvable | Column | A description for a column. |
| column | string | A geospatial role for a column. |
columnDescription?
Type:
IResolvable | Column
(optional)
A description for a column.
columnGeographicRole?
Type:
string
(optional)
A geospatial role for a column.

.NET
Go
Java
Python
TypeScript