aws-cdk-lib.aws_quicksight.CfnTemplate.PercentageDisplayFormatConfigurationProperty

interface PercentageDisplayFormatConfigurationProperty

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

The options that determine the percentage 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 percentageDisplayFormatConfigurationProperty: quicksight.CfnTemplate.PercentageDisplayFormatConfigurationProperty = {
  decimalPlacesConfiguration: {
    decimalPlaces: 123,
  },
  negativeValueConfiguration: {
    displayMode: 'displayMode',
  },
  nullValueFormatConfiguration: {
    nullString: 'nullString',
  },
  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.
prefix?stringDetermines the prefix value of the percentage format.
separatorConfiguration?IResolvable | NumericSeparatorConfigurationPropertyThe options that determine the numeric separator configuration.
suffix?stringDetermines the suffix value of the percentage 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.


prefix?

Type: string (optional)

Determines the prefix value of the percentage format.


separatorConfiguration?

Type: IResolvable | NumericSeparatorConfigurationProperty (optional)

The options that determine the numeric separator configuration.


suffix?

Type: string (optional)

Determines the suffix value of the percentage format.