interface FilterDateTimePickerControlProperty
This page is available in another version. Click here for the v2 documentation.
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.QuickSight.CfnTemplate.FilterDateTimePickerControlProperty |
![]() | software.amazon.awscdk.services.quicksight.CfnTemplate.FilterDateTimePickerControlProperty |
![]() | aws_cdk.aws_quicksight.CfnTemplate.FilterDateTimePickerControlProperty |
![]() | @aws-cdk/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 * as quicksight from '@aws-cdk/aws-quicksight';
const filterDateTimePickerControlProperty: quicksight.CfnTemplate.FilterDateTimePickerControlProperty = {
filterControlId: 'filterControlId',
sourceFilterId: 'sourceFilterId',
title: 'title',
// the properties below are optional
displayOptions: {
dateTimeFormat: 'dateTimeFormat',
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 . |
display | IResolvable | Date | The display options of a control. |
type? | string | The date time picker type of a FilterDateTimePickerControl . 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
.
displayOptions?
Type:
IResolvable
|
Date
(optional)
The display options of a control.
type?
Type:
string
(optional)
The date time picker type of a FilterDateTimePickerControl
. Choose one of the following options:.
SINGLE_VALUED
: The filter condition is a fixed date.DATE_RANGE
: The filter condition is a date time range.