aws-cdk-lib.aws_quicksight.CfnDashboard.DropDownControlDisplayOptionsProperty

interface DropDownControlDisplayOptionsProperty

LanguageType name
.NETAmazon.CDK.AWS.QuickSight.CfnDashboard.DropDownControlDisplayOptionsProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDashboard_DropDownControlDisplayOptionsProperty
Javasoftware.amazon.awscdk.services.quicksight.CfnDashboard.DropDownControlDisplayOptionsProperty
Pythonaws_cdk.aws_quicksight.CfnDashboard.DropDownControlDisplayOptionsProperty
TypeScript aws-cdk-lib » aws_quicksight » CfnDashboard » DropDownControlDisplayOptionsProperty

The display options of a control.

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 dropDownControlDisplayOptionsProperty: quicksight.CfnDashboard.DropDownControlDisplayOptionsProperty = {
  selectAllOptions: {
    visibility: 'visibility',
  },
  titleOptions: {
    customLabel: 'customLabel',
    fontConfiguration: {
      fontColor: 'fontColor',
      fontDecoration: 'fontDecoration',
      fontSize: {
        relative: 'relative',
      },
      fontStyle: 'fontStyle',
      fontWeight: {
        name: 'name',
      },
    },
    visibility: 'visibility',
  },
};

Properties

NameTypeDescription
selectAllOptions?IResolvable | ListControlSelectAllOptionsPropertyThe configuration of the Select all options in a dropdown control.
titleOptions?IResolvable | LabelOptionsPropertyThe options to configure the title visibility, name, and font size.

selectAllOptions?

Type: IResolvable | ListControlSelectAllOptionsProperty (optional)

The configuration of the Select all options in a dropdown control.


titleOptions?

Type: IResolvable | LabelOptionsProperty (optional)

The options to configure the title visibility, name, and font size.