interface ColumnGroupSchemaProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnTemplatePropsMixin.ColumnGroupSchemaProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnTemplatePropsMixin_ColumnGroupSchemaProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnTemplatePropsMixin.ColumnGroupSchemaProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnTemplatePropsMixin.ColumnGroupSchemaProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » CfnTemplatePropsMixin » 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/cfn-property-mixins';
const columnGroupSchemaProperty: quicksight.CfnTemplatePropsMixin.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