aws-cdk-lib.aws_quicksight.CfnDashboard.FilterDateTimePickerControlProperty

interface FilterDateTimePickerControlProperty

LanguageType name
.NETAmazon.CDK.AWS.QuickSight.CfnDashboard.FilterDateTimePickerControlProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDashboard_FilterDateTimePickerControlProperty
Javasoftware.amazon.awscdk.services.quicksight.CfnDashboard.FilterDateTimePickerControlProperty
Pythonaws_cdk.aws_quicksight.CfnDashboard.FilterDateTimePickerControlProperty
TypeScript aws-cdk-lib » aws_quicksight » CfnDashboard » 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.CfnDashboard.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

NameTypeDescription
filterControlIdstringThe ID of the FilterDateTimePickerControl .
sourceFilterIdstringThe source filter ID of the FilterDateTimePickerControl .
titlestringThe title of the FilterDateTimePickerControl .
displayOptions?IResolvable | DateTimePickerControlDisplayOptionsPropertyThe display options of a control.
type?stringThe 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 | DateTimePickerControlDisplayOptionsProperty (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.