aws-cdk-lib.aws_quicksight.CfnDashboard.FilterTextAreaControlProperty

interface FilterTextAreaControlProperty

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

A control to display a text box that is used to enter multiple entries.

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 filterTextAreaControlProperty: quicksight.CfnDashboard.FilterTextAreaControlProperty = {
  filterControlId: 'filterControlId',
  sourceFilterId: 'sourceFilterId',
  title: 'title',

  // the properties below are optional
  delimiter: 'delimiter',
  displayOptions: {
    placeholderOptions: {
      visibility: 'visibility',
    },
    titleOptions: {
      customLabel: 'customLabel',
      fontConfiguration: {
        fontColor: 'fontColor',
        fontDecoration: 'fontDecoration',
        fontSize: {
          relative: 'relative',
        },
        fontStyle: 'fontStyle',
        fontWeight: {
          name: 'name',
        },
      },
      visibility: 'visibility',
    },
  },
};

Properties

NameTypeDescription
filterControlIdstringThe ID of the FilterTextAreaControl .
sourceFilterIdstringThe source filter ID of the FilterTextAreaControl .
titlestringThe title of the FilterTextAreaControl .
delimiter?stringThe delimiter that is used to separate the lines in text.
displayOptions?IResolvable | TextAreaControlDisplayOptionsPropertyThe display options of a control.

filterControlId

Type: string

The ID of the FilterTextAreaControl .


sourceFilterId

Type: string

The source filter ID of the FilterTextAreaControl .


title

Type: string

The title of the FilterTextAreaControl .


delimiter?

Type: string (optional)

The delimiter that is used to separate the lines in text.


displayOptions?

Type: IResolvable | TextAreaControlDisplayOptionsProperty (optional)

The display options of a control.