interface ColumnGroupSchemaProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnTemplate.ColumnGroupSchemaProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnTemplate_ColumnGroupSchemaProperty |
Java | software.amazon.awscdk.services.quicksight.CfnTemplate.ColumnGroupSchemaProperty |
Python | aws_cdk.aws_quicksight.CfnTemplate.ColumnGroupSchemaProperty |
TypeScript | aws-cdk-lib » 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 { aws_quicksight as quicksight } from 'aws-cdk-lib';
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
Go
Java
Python
TypeScript