interface DefaultDateTimePickerControlOptionsProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnTemplate.DefaultDateTimePickerControlOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnTemplate_DefaultDateTimePickerControlOptionsProperty |
Java | software.amazon.awscdk.services.quicksight.CfnTemplate.DefaultDateTimePickerControlOptionsProperty |
Python | aws_cdk.aws_quicksight.CfnTemplate.DefaultDateTimePickerControlOptionsProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnTemplate » DefaultDateTimePickerControlOptionsProperty |
The default options that correspond to the filter control type of a DateTimePicker
.
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 defaultDateTimePickerControlOptionsProperty: quicksight.CfnTemplate.DefaultDateTimePickerControlOptionsProperty = {
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 |
---|---|---|
commit | string | The visibility configuration of the Apply button on a DateTimePickerControl . |
display | IResolvable | Date | The display options of a control. |
type? | string | The date time picker type of the DefaultDateTimePickerControlOptions . Choose one of the following options:. |
commitMode?
Type:
string
(optional)
The visibility configuration of the Apply button on a DateTimePickerControl
.
displayOptions?
Type:
IResolvable
|
Date
(optional)
The display options of a control.
type?
Type:
string
(optional)
The date time picker type of the DefaultDateTimePickerControlOptions
. 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.