interface DateTimePickerControlDisplayOptionsProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.QuickSight.CfnAnalysis.DateTimePickerControlDisplayOptionsProperty | 
|  Java | software.amazon.awscdk.services.quicksight.CfnAnalysis.DateTimePickerControlDisplayOptionsProperty | 
|  Python | aws_cdk.aws_quicksight.CfnAnalysis.DateTimePickerControlDisplayOptionsProperty | 
|  TypeScript | @aws-cdk/aws-quicksight»CfnAnalysis»DateTimePickerControlDisplayOptionsProperty | 
The display options of a control.
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 dateTimePickerControlDisplayOptionsProperty: quicksight.CfnAnalysis.DateTimePickerControlDisplayOptionsProperty = {
  dateTimeFormat: 'dateTimeFormat',
  titleOptions: {
    customLabel: 'customLabel',
    fontConfiguration: {
      fontColor: 'fontColor',
      fontDecoration: 'fontDecoration',
      fontSize: {
        relative: 'relative',
      },
      fontStyle: 'fontStyle',
      fontWeight: {
        name: 'name',
      },
    },
    visibility: 'visibility',
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| date | string | Customize how dates are formatted in controls. | 
| title | IResolvable | Label | The options to configure the title visibility, name, and font size. | 
dateTimeFormat?
Type:
string
(optional)
Customize how dates are formatted in controls.
titleOptions?
Type:
IResolvable | Label
(optional)
The options to configure the title visibility, name, and font size.
