interface DataSetConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnTemplatePropsMixin.DataSetConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnTemplatePropsMixin_DataSetConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnTemplatePropsMixin.DataSetConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnTemplatePropsMixin.DataSetConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » CfnTemplatePropsMixin » DataSetConfigurationProperty |
Dataset configuration.
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 dataSetConfigurationProperty: quicksight.CfnTemplatePropsMixin.DataSetConfigurationProperty = {
columnGroupSchemaList: [{
columnGroupColumnSchemaList: [{
name: 'name',
}],
name: 'name',
}],
dataSetSchema: {
columnSchemaList: [{
dataType: 'dataType',
geographicRole: 'geographicRole',
name: 'name',
}],
},
placeholder: 'placeholder',
};
Properties
| Name | Type | Description |
|---|---|---|
| column | IResolvable | (IResolvable | Column)[] | A structure containing the list of column group schemas. |
| data | IResolvable | Data | Dataset schema. |
| placeholder? | string | Placeholder. |
columnGroupSchemaList?
Type:
IResolvable | (IResolvable | Column)[]
(optional)
A structure containing the list of column group schemas.
dataSetSchema?
Type:
IResolvable | Data
(optional)
Dataset schema.
placeholder?
Type:
string
(optional)
Placeholder.

.NET
Go
Java
Python
TypeScript