interface DateTimeFormatConfigurationProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.QuickSight.CfnDashboard.DateTimeFormatConfigurationProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDashboard_DateTimeFormatConfigurationProperty | 
|  Java | software.amazon.awscdk.services.quicksight.CfnDashboard.DateTimeFormatConfigurationProperty | 
|  Python | aws_cdk.aws_quicksight.CfnDashboard.DateTimeFormatConfigurationProperty | 
|  TypeScript | aws-cdk-lib»aws_quicksight»CfnDashboard»DateTimeFormatConfigurationProperty | 
Formatting configuration for DateTime fields.
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 dateTimeFormatConfigurationProperty: quicksight.CfnDashboard.DateTimeFormatConfigurationProperty = {
  dateTimeFormat: 'dateTimeFormat',
  nullValueFormatConfiguration: {
    nullString: 'nullString',
  },
  numericFormatConfiguration: {
    currencyDisplayFormatConfiguration: {
      decimalPlacesConfiguration: {
        decimalPlaces: 123,
      },
      negativeValueConfiguration: {
        displayMode: 'displayMode',
      },
      nullValueFormatConfiguration: {
        nullString: 'nullString',
      },
      numberScale: 'numberScale',
      prefix: 'prefix',
      separatorConfiguration: {
        decimalSeparator: 'decimalSeparator',
        thousandsSeparator: {
          groupingStyle: 'groupingStyle',
          symbol: 'symbol',
          visibility: 'visibility',
        },
      },
      suffix: 'suffix',
      symbol: 'symbol',
    },
    numberDisplayFormatConfiguration: {
      decimalPlacesConfiguration: {
        decimalPlaces: 123,
      },
      negativeValueConfiguration: {
        displayMode: 'displayMode',
      },
      nullValueFormatConfiguration: {
        nullString: 'nullString',
      },
      numberScale: 'numberScale',
      prefix: 'prefix',
      separatorConfiguration: {
        decimalSeparator: 'decimalSeparator',
        thousandsSeparator: {
          groupingStyle: 'groupingStyle',
          symbol: 'symbol',
          visibility: 'visibility',
        },
      },
      suffix: 'suffix',
    },
    percentageDisplayFormatConfiguration: {
      decimalPlacesConfiguration: {
        decimalPlaces: 123,
      },
      negativeValueConfiguration: {
        displayMode: 'displayMode',
      },
      nullValueFormatConfiguration: {
        nullString: 'nullString',
      },
      prefix: 'prefix',
      separatorConfiguration: {
        decimalSeparator: 'decimalSeparator',
        thousandsSeparator: {
          groupingStyle: 'groupingStyle',
          symbol: 'symbol',
          visibility: 'visibility',
        },
      },
      suffix: 'suffix',
    },
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| date | string | Determines the DateTimeformat. | 
| null | IResolvable | Null | The options that determine the null value format configuration. | 
| numeric | IResolvable | Numeric | The formatting configuration for numeric DateTimefields. | 
dateTimeFormat?
Type:
string
(optional)
Determines the DateTime format.
nullValueFormatConfiguration?
Type:
IResolvable | Null
(optional)
The options that determine the null value format configuration.
numericFormatConfiguration?
Type:
IResolvable | Numeric
(optional)
The formatting configuration for numeric DateTime fields.
