interface ColumnGroupSchemaProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnTemplate.ColumnGroupSchemaProperty |
Java | software.amazon.awscdk.services.quicksight.CfnTemplate.ColumnGroupSchemaProperty |
Python | aws_cdk.aws_quicksight.CfnTemplate.ColumnGroupSchemaProperty |
TypeScript | @aws-cdk/aws-quicksight » CfnTemplate » ColumnGroupSchemaProperty |
The column group schema.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as quicksight from '@aws-cdk/aws-quicksight';
const columnGroupSchemaProperty: quicksight.CfnTemplate.ColumnGroupSchemaProperty = {
columnGroupColumnSchemaList: [{
name: 'name',
}],
name: 'name',
};
Properties
| Name | Type | Description |
|---|---|---|
| column | IResolvable | IResolvable | Column[] | A structure containing the list of schemas for column group columns. |
| name? | string | The name of the column group schema. |
columnGroupColumnSchemaList?
Type:
IResolvable | IResolvable | Column[]
(optional)
A structure containing the list of schemas for column group columns.
name?
Type:
string
(optional)
The name of the column group schema.

.NET
Java
Python
TypeScript