interface AssetOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnDashboardPropsMixin.AssetOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnDashboardPropsMixin_AssetOptionsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnDashboardPropsMixin.AssetOptionsProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnDashboardPropsMixin.AssetOptionsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » CfnDashboardPropsMixin » AssetOptionsProperty |
An array of analysis level configurations.
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 assetOptionsProperty: quicksight.CfnDashboardPropsMixin.AssetOptionsProperty = {
excludedDataSetArns: ['excludedDataSetArns'],
qBusinessInsightsStatus: 'qBusinessInsightsStatus',
timezone: 'timezone',
weekStart: 'weekStart',
};
Properties
| Name | Type | Description |
|---|---|---|
| excluded | string[] | A list of dataset ARNS to exclude from Dashboard Q&A. |
| q | string | Determines whether insight summaries from Amazon Q Business are allowed in Dashboard Q&A. |
| timezone? | string | Determines the timezone for the analysis. |
| week | string | Determines the week start day for an analysis. |
excludedDataSetArns?
Type:
string[]
(optional)
A list of dataset ARNS to exclude from Dashboard Q&A.
qBusinessInsightsStatus?
Type:
string
(optional)
Determines whether insight summaries from Amazon Q Business are allowed in Dashboard Q&A.
timezone?
Type:
string
(optional)
Determines the timezone for the analysis.
weekStart?
Type:
string
(optional)
Determines the week start day for an analysis.

.NET
Go
Java
Python
TypeScript