interface DataSetSchemaProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnTemplate.DataSetSchemaProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnTemplate_DataSetSchemaProperty |
Java | software.amazon.awscdk.services.quicksight.CfnTemplate.DataSetSchemaProperty |
Python | aws_cdk.aws_quicksight.CfnTemplate.DataSetSchemaProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnTemplate » DataSetSchemaProperty |
Dataset 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 dataSetSchemaProperty: quicksight.CfnTemplate.DataSetSchemaProperty = {
columnSchemaList: [{
dataType: 'dataType',
geographicRole: 'geographicRole',
name: 'name',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| column | IResolvable | (IResolvable | Column)[] | A structure containing the list of column schemas. |
columnSchemaList?
Type:
IResolvable | (IResolvable | Column)[]
(optional)
A structure containing the list of column schemas.

.NET
Go
Java
Python
TypeScript