interface DefaultFilterListControlOptionsProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.QuickSight.CfnTemplate.DefaultFilterListControlOptionsProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnTemplate_DefaultFilterListControlOptionsProperty |
![]() | software.amazon.awscdk.services.quicksight.CfnTemplate.DefaultFilterListControlOptionsProperty |
![]() | aws_cdk.aws_quicksight.CfnTemplate.DefaultFilterListControlOptionsProperty |
![]() | aws-cdk-lib » aws_quicksight » CfnTemplate » DefaultFilterListControlOptionsProperty |
The default options that correspond to the List
filter control type.
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 defaultFilterListControlOptionsProperty: quicksight.CfnTemplate.DefaultFilterListControlOptionsProperty = {
displayOptions: {
infoIconLabelOptions: {
infoIconText: 'infoIconText',
visibility: 'visibility',
},
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: {
values: ['values'],
},
type: 'type',
};
Properties
Name | Type | Description |
---|---|---|
display | IResolvable | List | The display options of a control. |
selectable | IResolvable | Filter | A list of selectable values that are used in a control. |
type? | string | The type of the DefaultFilterListControlOptions . Choose one of the following options:. |
displayOptions?
Type:
IResolvable
|
List
(optional)
The display options of a control.
selectableValues?
Type:
IResolvable
|
Filter
(optional)
A list of selectable values that are used in a control.
type?
Type:
string
(optional)
The type of the DefaultFilterListControlOptions
. Choose one of the following options:.
MULTI_SELECT
: The user can select multiple entries from the list.SINGLE_SELECT
: The user can select a single entry from the list.