interface PercentageDisplayFormatConfigurationProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnDashboard.PercentageDisplayFormatConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDashboard_PercentageDisplayFormatConfigurationProperty |
Java | software.amazon.awscdk.services.quicksight.CfnDashboard.PercentageDisplayFormatConfigurationProperty |
Python | aws_cdk.aws_quicksight.CfnDashboard.PercentageDisplayFormatConfigurationProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnDashboard » 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.CfnDashboard.PercentageDisplayFormatConfigurationProperty = {
decimalPlacesConfiguration: {
decimalPlaces: 123,
},
negativeValueConfiguration: {
displayMode: 'displayMode',
},
nullValueFormatConfiguration: {
nullString: 'nullString',
},
prefix: 'prefix',
separatorConfiguration: {
decimalSeparator: 'decimalSeparator',
thousandsSeparator: {
symbol: 'symbol',
visibility: 'visibility',
},
},
suffix: 'suffix',
};
Properties
Name | Type | Description |
---|---|---|
decimal | IResolvable | Decimal | The option that determines the decimal places configuration. |
negative | IResolvable | Negative | The options that determine the negative value configuration. |
null | IResolvable | Null | The options that determine the null value format configuration. |
prefix? | string | Determines the prefix value of the percentage format. |
separator | IResolvable | Numeric | The options that determine the numeric separator configuration. |
suffix? | string | Determines the suffix value of the percentage format. |
decimalPlacesConfiguration?
Type:
IResolvable
|
Decimal
(optional)
The option that determines the decimal places configuration.
negativeValueConfiguration?
Type:
IResolvable
|
Negative
(optional)
The options that determine the negative value configuration.
nullValueFormatConfiguration?
Type:
IResolvable
|
Null
(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
|
Numeric
(optional)
The options that determine the numeric separator configuration.
suffix?
Type:
string
(optional)
Determines the suffix value of the percentage format.