aws-cdk-lib.aws_quicksight.CfnAnalysis.NumberDisplayFormatConfigurationProperty

interface NumberDisplayFormatConfigurationProperty

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

The options that determine the number display format configuration.

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

Properties

NameTypeDescription
decimalPlacesConfiguration?IResolvable | DecimalPlacesConfigurationPropertyThe option that determines the decimal places configuration.
negativeValueConfiguration?IResolvable | NegativeValueConfigurationPropertyThe options that determine the negative value configuration.
nullValueFormatConfiguration?IResolvable | NullValueFormatConfigurationPropertyThe options that determine the null value format configuration.
numberScale?stringDetermines the number scale value of the number format.
prefix?stringDetermines the prefix value of the number format.
separatorConfiguration?IResolvable | NumericSeparatorConfigurationPropertyThe options that determine the numeric separator configuration.
suffix?stringDetermines the suffix value of the number format.

decimalPlacesConfiguration?

Type: IResolvable | DecimalPlacesConfigurationProperty (optional)

The option that determines the decimal places configuration.


negativeValueConfiguration?

Type: IResolvable | NegativeValueConfigurationProperty (optional)

The options that determine the negative value configuration.


nullValueFormatConfiguration?

Type: IResolvable | NullValueFormatConfigurationProperty (optional)

The options that determine the null value format configuration.


numberScale?

Type: string (optional)

Determines the number scale value of the number format.


prefix?

Type: string (optional)

Determines the prefix value of the number format.


separatorConfiguration?

Type: IResolvable | NumericSeparatorConfigurationProperty (optional)

The options that determine the numeric separator configuration.


suffix?

Type: string (optional)

Determines the suffix value of the number format.