interface FilterDateTimePickerControlProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.QuickSight.CfnTemplate.FilterDateTimePickerControlProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnTemplate_FilterDateTimePickerControlProperty |
![]() | software.amazon.awscdk.services.quicksight.CfnTemplate.FilterDateTimePickerControlProperty |
![]() | aws_cdk.aws_quicksight.CfnTemplate.FilterDateTimePickerControlProperty |
![]() | aws-cdk-lib » aws_quicksight » CfnTemplate » FilterDateTimePickerControlProperty |
A control from a date filter that is used to specify date and time.
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 filterDateTimePickerControlProperty: quicksight.CfnTemplate.FilterDateTimePickerControlProperty = {
filterControlId: 'filterControlId',
sourceFilterId: 'sourceFilterId',
title: 'title',
// the properties below are optional
commitMode: 'commitMode',
displayOptions: {
dateTimeFormat: 'dateTimeFormat',
infoIconLabelOptions: {
infoIconText: 'infoIconText',
visibility: 'visibility',
},
titleOptions: {
customLabel: 'customLabel',
fontConfiguration: {
fontColor: 'fontColor',
fontDecoration: 'fontDecoration',
fontSize: {
relative: 'relative',
},
fontStyle: 'fontStyle',
fontWeight: {
name: 'name',
},
},
visibility: 'visibility',
},
},
type: 'type',
};
Properties
Name | Type | Description |
---|---|---|
filter | string | The ID of the FilterDateTimePickerControl . |
source | string | The source filter ID of the FilterDateTimePickerControl . |
title | string | The title of the FilterDateTimePickerControl . |
commit | string | The visibility configurationof the Apply button on a DateTimePickerControl . |
display | IResolvable | Date | The display options of a control. |
type? | string | The type of the FilterDropDownControl . Choose one of the following options:. |
filterControlId
Type:
string
The ID of the FilterDateTimePickerControl
.
sourceFilterId
Type:
string
The source filter ID of the FilterDateTimePickerControl
.
title
Type:
string
The title of the FilterDateTimePickerControl
.
commitMode?
Type:
string
(optional)
The visibility configurationof the Apply button on a DateTimePickerControl
.
displayOptions?
Type:
IResolvable
|
Date
(optional)
The display options of a control.
type?
Type:
string
(optional)
The type of the FilterDropDownControl
. Choose one of the following options:.
MULTI_SELECT
: The user can select multiple entries from a dropdown menu.SINGLE_SELECT
: The user can select a single entry from a dropdown menu.