aws-cdk-lib.aws_quicksight.CfnTemplate.NumericFormatConfigurationProperty

interface NumericFormatConfigurationProperty

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

The options that determine the numeric format configuration.

This is a union type structure. For this structure to be valid, only one of the attributes can be defined.

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 numericFormatConfigurationProperty: quicksight.CfnTemplate.NumericFormatConfigurationProperty = {
  currencyDisplayFormatConfiguration: {
    decimalPlacesConfiguration: {
      decimalPlaces: 123,
    },
    negativeValueConfiguration: {
      displayMode: 'displayMode',
    },
    nullValueFormatConfiguration: {
      nullString: 'nullString',
    },
    numberScale: 'numberScale',
    prefix: 'prefix',
    separatorConfiguration: {
      decimalSeparator: 'decimalSeparator',
      thousandsSeparator: {
        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: {
        symbol: 'symbol',
        visibility: 'visibility',
      },
    },
    suffix: 'suffix',
  },
  percentageDisplayFormatConfiguration: {
    decimalPlacesConfiguration: {
      decimalPlaces: 123,
    },
    negativeValueConfiguration: {
      displayMode: 'displayMode',
    },
    nullValueFormatConfiguration: {
      nullString: 'nullString',
    },
    prefix: 'prefix',
    separatorConfiguration: {
      decimalSeparator: 'decimalSeparator',
      thousandsSeparator: {
        symbol: 'symbol',
        visibility: 'visibility',
      },
    },
    suffix: 'suffix',
  },
};

Properties

NameTypeDescription
currencyDisplayFormatConfiguration?IResolvable | CurrencyDisplayFormatConfigurationPropertyThe options that determine the currency display format configuration.
numberDisplayFormatConfiguration?IResolvable | NumberDisplayFormatConfigurationPropertyThe options that determine the number display format configuration.
percentageDisplayFormatConfiguration?IResolvable | PercentageDisplayFormatConfigurationPropertyThe options that determine the percentage display format configuration.

currencyDisplayFormatConfiguration?

Type: IResolvable | CurrencyDisplayFormatConfigurationProperty (optional)

The options that determine the currency display format configuration.


numberDisplayFormatConfiguration?

Type: IResolvable | NumberDisplayFormatConfigurationProperty (optional)

The options that determine the number display format configuration.


percentageDisplayFormatConfiguration?

Type: IResolvable | PercentageDisplayFormatConfigurationProperty (optional)

The options that determine the percentage display format configuration.