interface ColumnIdentifierProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnDashboardPropsMixin.ColumnIdentifierProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnDashboardPropsMixin_ColumnIdentifierProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnDashboardPropsMixin.ColumnIdentifierProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnDashboardPropsMixin.ColumnIdentifierProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnDashboardPropsMixin » ColumnIdentifierProperty |
A column of a data set.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const columnIdentifierProperty: quicksight_mixins.CfnDashboardPropsMixin.ColumnIdentifierProperty = {
columnName: 'columnName',
dataSetIdentifier: 'dataSetIdentifier',
};
Properties
| Name | Type | Description |
|---|---|---|
| column | string | The name of the column. |
| data | string | The data set that the column belongs to. |
columnName?
Type:
string
(optional)
The name of the column.
dataSetIdentifier?
Type:
string
(optional)
The data set that the column belongs to.

.NET
Go
Java
Python
TypeScript