interface FilterRelativeDateTimeControlProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnDashboardPropsMixin.FilterRelativeDateTimeControlProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnDashboardPropsMixin_FilterRelativeDateTimeControlProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnDashboardPropsMixin.FilterRelativeDateTimeControlProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnDashboardPropsMixin.FilterRelativeDateTimeControlProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnDashboardPropsMixin » FilterRelativeDateTimeControlProperty |
A control from a date filter that is used to specify the relative date.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const filterRelativeDateTimeControlProperty: quicksight_mixins.CfnDashboardPropsMixin.FilterRelativeDateTimeControlProperty = {
commitMode: 'commitMode',
displayOptions: {
dateTimeFormat: 'dateTimeFormat',
infoIconLabelOptions: {
infoIconText: 'infoIconText',
visibility: 'visibility',
},
titleOptions: {
customLabel: 'customLabel',
fontConfiguration: {
fontColor: 'fontColor',
fontDecoration: 'fontDecoration',
fontFamily: 'fontFamily',
fontSize: {
absolute: 'absolute',
relative: 'relative',
},
fontStyle: 'fontStyle',
fontWeight: {
name: 'name',
},
},
visibility: 'visibility',
},
},
filterControlId: 'filterControlId',
sourceFilterId: 'sourceFilterId',
title: 'title',
};
Properties
| Name | Type | Description |
|---|---|---|
| commit | string | The visibility configuration of the Apply button on a FilterRelativeDateTimeControl . |
| display | IResolvable | Relative | The display options of a control. |
| filter | string | The ID of the FilterTextAreaControl . |
| source | string | The source filter ID of the FilterTextAreaControl . |
| title? | string | The title of the FilterTextAreaControl . |
commitMode?
Type:
string
(optional)
The visibility configuration of the Apply button on a FilterRelativeDateTimeControl .
displayOptions?
Type:
IResolvable | Relative
(optional)
The display options of a control.
filterControlId?
Type:
string
(optional)
The ID of the FilterTextAreaControl .
sourceFilterId?
Type:
string
(optional)
The source filter ID of the FilterTextAreaControl .
title?
Type:
string
(optional)
The title of the FilterTextAreaControl .

.NET
Go
Java
Python
TypeScript