interface NumericSeparatorConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnDashboardPropsMixin.NumericSeparatorConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnDashboardPropsMixin_NumericSeparatorConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnDashboardPropsMixin.NumericSeparatorConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnDashboardPropsMixin.NumericSeparatorConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » CfnDashboardPropsMixin » NumericSeparatorConfigurationProperty |
The options that determine the numeric separator 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/cfn-property-mixins';
const numericSeparatorConfigurationProperty: quicksight.CfnDashboardPropsMixin.NumericSeparatorConfigurationProperty = {
decimalSeparator: 'decimalSeparator',
thousandsSeparator: {
groupingStyle: 'groupingStyle',
symbol: 'symbol',
visibility: 'visibility',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| decimal | string | Determines the decimal separator. |
| thousands | IResolvable | Thousand | The options that determine the thousands separator configuration. |
decimalSeparator?
Type:
string
(optional)
Determines the decimal separator.
thousandsSeparator?
Type:
IResolvable | Thousand
(optional)
The options that determine the thousands separator configuration.

.NET
Go
Java
Python
TypeScript