aws-cdk-lib.aws_quicksight.CfnDashboard.ParameterListControlProperty

interface ParameterListControlProperty

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

A control to display a list with buttons or boxes that are used to select either a single value or multiple values.

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 parameterListControlProperty: quicksight.CfnDashboard.ParameterListControlProperty = {
  parameterControlId: 'parameterControlId',
  sourceParameterName: 'sourceParameterName',
  title: 'title',

  // the properties below are optional
  cascadingControlConfiguration: {
    sourceControls: [{
      columnToMatch: {
        columnName: 'columnName',
        dataSetIdentifier: 'dataSetIdentifier',
      },
      sourceSheetControlId: 'sourceSheetControlId',
    }],
  },
  displayOptions: {
    searchOptions: {
      visibility: 'visibility',
    },
    selectAllOptions: {
      visibility: 'visibility',
    },
    titleOptions: {
      customLabel: 'customLabel',
      fontConfiguration: {
        fontColor: 'fontColor',
        fontDecoration: 'fontDecoration',
        fontSize: {
          relative: 'relative',
        },
        fontStyle: 'fontStyle',
        fontWeight: {
          name: 'name',
        },
      },
      visibility: 'visibility',
    },
  },
  selectableValues: {
    linkToDataSetColumn: {
      columnName: 'columnName',
      dataSetIdentifier: 'dataSetIdentifier',
    },
    values: ['values'],
  },
  type: 'type',
};

Properties

NameTypeDescription
parameterControlIdstringThe ID of the ParameterListControl .
sourceParameterNamestringThe source parameter name of the ParameterListControl .
titlestringThe title of the ParameterListControl .
cascadingControlConfiguration?IResolvable | CascadingControlConfigurationPropertyThe values that are displayed in a control can be configured to only show values that are valid based on what's selected in other controls.
displayOptions?IResolvable | ListControlDisplayOptionsPropertyThe display options of a control.
selectableValues?IResolvable | ParameterSelectableValuesPropertyA list of selectable values that are used in a control.
type?stringThe type of ParameterListControl .

parameterControlId

Type: string

The ID of the ParameterListControl .


sourceParameterName

Type: string

The source parameter name of the ParameterListControl .


title

Type: string

The title of the ParameterListControl .


cascadingControlConfiguration?

Type: IResolvable | CascadingControlConfigurationProperty (optional)

The values that are displayed in a control can be configured to only show values that are valid based on what's selected in other controls.


displayOptions?

Type: IResolvable | ListControlDisplayOptionsProperty (optional)

The display options of a control.


selectableValues?

Type: IResolvable | ParameterSelectableValuesProperty (optional)

A list of selectable values that are used in a control.


type?

Type: string (optional)

The type of ParameterListControl .