Skip to content

Commit 94e6732

Browse files
AWSghetelgb
authored andcommitted
Amazon QuickSight Update: Added DigitGroupingStyle in ThousandsSeparator to allow grouping by LAKH( Indian Grouping system ) currency. Support LAKH and CRORE currency types in Column Formatting.
1 parent 9f650e9 commit 94e6732

File tree

2 files changed

+27
-3
lines changed

2 files changed

+27
-3
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"type": "feature",
3+
"category": "Amazon QuickSight",
4+
"contributor": "",
5+
"description": "Added `DigitGroupingStyle` in ThousandsSeparator to allow grouping by `LAKH`( Indian Grouping system ) currency. Support LAKH and `CRORE` currency types in Column Formatting."
6+
}

services/quicksight/src/main/resources/codegen-resources/service-2.json

Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16920,6 +16920,13 @@
1692016920
},
1692116921
"documentation":"<p>The configuration of destination parameter values.</p> <p>This is a union type structure. For this structure to be valid, only one of the attributes can be defined.</p>"
1692216922
},
16923+
"DigitGroupingStyle":{
16924+
"type":"string",
16925+
"enum":[
16926+
"DEFAULT",
16927+
"LAKHS"
16928+
]
16929+
},
1692316930
"DimensionField":{
1692416931
"type":"structure",
1692516932
"members":{
@@ -25217,7 +25224,9 @@
2521725224
"THOUSANDS",
2521825225
"MILLIONS",
2521925226
"BILLIONS",
25220-
"TRILLIONS"
25227+
"TRILLIONS",
25228+
"LAKHS",
25229+
"CRORES"
2522125230
]
2522225231
},
2522325232
"NumericAxisOptions":{
@@ -31878,7 +31887,7 @@
3187831887
"TableFieldOptionList":{
3187931888
"type":"list",
3188031889
"member":{"shape":"TableFieldOption"},
31881-
"max":100
31890+
"max":201
3188231891
},
3188331892
"TableFieldOptions":{
3188431893
"type":"structure",
@@ -32089,11 +32098,16 @@
3208932098
"SCROLLED"
3209032099
]
3209132100
},
32101+
"TableUnaggregatedFieldList":{
32102+
"type":"list",
32103+
"member":{"shape":"UnaggregatedField"},
32104+
"max":201
32105+
},
3209232106
"TableUnaggregatedFieldWells":{
3209332107
"type":"structure",
3209432108
"members":{
3209532109
"Values":{
32096-
"shape":"UnaggregatedFieldList",
32110+
"shape":"TableUnaggregatedFieldList",
3209732111
"documentation":"<p>The values field well for a pivot table. Values are unaggregated for an unaggregated table.</p>"
3209832112
}
3209932113
},
@@ -32846,6 +32860,10 @@
3284632860
"Visibility":{
3284732861
"shape":"Visibility",
3284832862
"documentation":"<p>Determines the visibility of the thousands separator.</p>"
32863+
},
32864+
"GroupingStyle":{
32865+
"shape":"DigitGroupingStyle",
32866+
"documentation":"<p>Determines the way numbers are styled to accommodate different readability standards. The <code>DEFAULT</code> value uses the standard international grouping system and groups numbers by the thousands. The <code>LAKHS</code> value uses the Indian numbering system and groups numbers by lakhs and crores.</p>"
3284932867
}
3285032868
},
3285132869
"documentation":"<p>The options that determine the thousands separator configuration.</p>"

0 commit comments

Comments
 (0)