interface DefaultRelativeDateTimeControlOptionsProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.QuickSight.CfnAnalysis.DefaultRelativeDateTimeControlOptionsProperty | 
  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnAnalysis_DefaultRelativeDateTimeControlOptionsProperty | 
  Java | software.amazon.awscdk.services.quicksight.CfnAnalysis.DefaultRelativeDateTimeControlOptionsProperty | 
  Python | aws_cdk.aws_quicksight.CfnAnalysis.DefaultRelativeDateTimeControlOptionsProperty | 
  TypeScript  | aws-cdk-lib » aws_quicksight » CfnAnalysis » DefaultRelativeDateTimeControlOptionsProperty | 
The default options that correspond to the RelativeDateTime filter control type.
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 defaultRelativeDateTimeControlOptionsProperty: quicksight.CfnAnalysis.DefaultRelativeDateTimeControlOptionsProperty = {
  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',
    },
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| commit | string | The visibility configuration of the Apply button on a RelativeDateTimeControl . | 
| display | IResolvable | Relative | The display options of a control. | 
commitMode?
Type:
string
(optional)
The visibility configuration of the Apply button on a RelativeDateTimeControl .
displayOptions?
Type:
IResolvable | Relative
(optional)
The display options of a control.

 .NET
 Go
 Java
 Python
 TypeScript