aws-cdk-lib.aws_quicksight.CfnTopic.DisplayFormatOptionsProperty

interface DisplayFormatOptionsProperty

LanguageType name
.NETAmazon.CDK.AWS.QuickSight.CfnTopic.DisplayFormatOptionsProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnTopic_DisplayFormatOptionsProperty
Javasoftware.amazon.awscdk.services.quicksight.CfnTopic.DisplayFormatOptionsProperty
Pythonaws_cdk.aws_quicksight.CfnTopic.DisplayFormatOptionsProperty
TypeScript aws-cdk-lib » aws_quicksight » CfnTopic » DisplayFormatOptionsProperty

A structure that represents additional options for display formatting.

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 displayFormatOptionsProperty: quicksight.CfnTopic.DisplayFormatOptionsProperty = {
  blankCellFormat: 'blankCellFormat',
  currencySymbol: 'currencySymbol',
  dateFormat: 'dateFormat',
  decimalSeparator: 'decimalSeparator',
  fractionDigits: 123,
  groupingSeparator: 'groupingSeparator',
  negativeFormat: {
    prefix: 'prefix',
    suffix: 'suffix',
  },
  prefix: 'prefix',
  suffix: 'suffix',
  unitScaler: 'unitScaler',
  useBlankCellFormat: false,
  useGrouping: false,
};

Properties

NameTypeDescription
blankCellFormat?stringDetermines the blank cell format.
currencySymbol?stringThe currency symbol, such as USD .
dateFormat?stringDetermines the DateTime format.
decimalSeparator?stringDetermines the decimal separator.
fractionDigits?numberDetermines the number of fraction digits.
groupingSeparator?stringDetermines the grouping separator.
negativeFormat?IResolvable | NegativeFormatPropertyThe negative format.
prefix?stringThe prefix value for a display format.
suffix?stringThe suffix value for a display format.
unitScaler?stringThe unit scaler.
useBlankCellFormat?boolean | IResolvableA Boolean value that indicates whether to use blank cell format.
useGrouping?boolean | IResolvableA Boolean value that indicates whether to use grouping.

blankCellFormat?

Type: string (optional)

Determines the blank cell format.


currencySymbol?

Type: string (optional)

The currency symbol, such as USD .


dateFormat?

Type: string (optional)

Determines the DateTime format.


decimalSeparator?

Type: string (optional)

Determines the decimal separator.


fractionDigits?

Type: number (optional)

Determines the number of fraction digits.


groupingSeparator?

Type: string (optional)

Determines the grouping separator.


negativeFormat?

Type: IResolvable | NegativeFormatProperty (optional)

The negative format.


prefix?

Type: string (optional)

The prefix value for a display format.


suffix?

Type: string (optional)

The suffix value for a display format.


unitScaler?

Type: string (optional)

The unit scaler.

Valid values for this structure are: NONE , AUTO , THOUSANDS , MILLIONS , BILLIONS , and TRILLIONS .


useBlankCellFormat?

Type: boolean | IResolvable (optional)

A Boolean value that indicates whether to use blank cell format.


useGrouping?

Type: boolean | IResolvable (optional)

A Boolean value that indicates whether to use grouping.