interface DataSetConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnTemplatePropsMixin.DataSetConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnTemplatePropsMixin_DataSetConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnTemplatePropsMixin.DataSetConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnTemplatePropsMixin.DataSetConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » 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 { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const dataSetConfigurationProperty: quicksight_mixins.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