interface DataSetUsageConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnDataSetPropsMixin.DataSetUsageConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnDataSetPropsMixin_DataSetUsageConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnDataSetPropsMixin.DataSetUsageConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnDataSetPropsMixin.DataSetUsageConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » CfnDataSetPropsMixin » DataSetUsageConfigurationProperty |
The usage configuration to apply to child datasets that reference this dataset as a source.
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 dataSetUsageConfigurationProperty: quicksight.CfnDataSetPropsMixin.DataSetUsageConfigurationProperty = {
disableUseAsDirectQuerySource: false,
disableUseAsImportedSource: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| disable | boolean | IResolvable | An option that controls whether a child dataset of a direct query can use this dataset as a source. |
| disable | boolean | IResolvable | An option that controls whether a child dataset that's stored in Quick Sight can use this dataset as a source. |
disableUseAsDirectQuerySource?
Type:
boolean | IResolvable
(optional, default: false)
An option that controls whether a child dataset of a direct query can use this dataset as a source.
disableUseAsImportedSource?
Type:
boolean | IResolvable
(optional, default: false)
An option that controls whether a child dataset that's stored in Quick Sight can use this dataset as a source.

.NET
Go
Java
Python
TypeScript