You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
"description": "Added `DigitGroupingStyle` in ThousandsSeparator to allow grouping by `LAKH`( Indian Grouping system ) currency. Support LAKH and `CRORE` currency types in Column Formatting."
Copy file name to clipboardExpand all lines: services/quicksight/src/main/resources/codegen-resources/service-2.json
+21-3Lines changed: 21 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -16920,6 +16920,13 @@
16920
16920
},
16921
16921
"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>"
16922
16922
},
16923
+
"DigitGroupingStyle":{
16924
+
"type":"string",
16925
+
"enum":[
16926
+
"DEFAULT",
16927
+
"LAKHS"
16928
+
]
16929
+
},
16923
16930
"DimensionField":{
16924
16931
"type":"structure",
16925
16932
"members":{
@@ -25217,7 +25224,9 @@
25217
25224
"THOUSANDS",
25218
25225
"MILLIONS",
25219
25226
"BILLIONS",
25220
-
"TRILLIONS"
25227
+
"TRILLIONS",
25228
+
"LAKHS",
25229
+
"CRORES"
25221
25230
]
25222
25231
},
25223
25232
"NumericAxisOptions":{
@@ -31878,7 +31887,7 @@
31878
31887
"TableFieldOptionList":{
31879
31888
"type":"list",
31880
31889
"member":{"shape":"TableFieldOption"},
31881
-
"max":100
31890
+
"max":201
31882
31891
},
31883
31892
"TableFieldOptions":{
31884
31893
"type":"structure",
@@ -32089,11 +32098,16 @@
32089
32098
"SCROLLED"
32090
32099
]
32091
32100
},
32101
+
"TableUnaggregatedFieldList":{
32102
+
"type":"list",
32103
+
"member":{"shape":"UnaggregatedField"},
32104
+
"max":201
32105
+
},
32092
32106
"TableUnaggregatedFieldWells":{
32093
32107
"type":"structure",
32094
32108
"members":{
32095
32109
"Values":{
32096
-
"shape":"UnaggregatedFieldList",
32110
+
"shape":"TableUnaggregatedFieldList",
32097
32111
"documentation":"<p>The values field well for a pivot table. Values are unaggregated for an unaggregated table.</p>"
32098
32112
}
32099
32113
},
@@ -32846,6 +32860,10 @@
32846
32860
"Visibility":{
32847
32861
"shape":"Visibility",
32848
32862
"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>"
32849
32867
}
32850
32868
},
32851
32869
"documentation":"<p>The options that determine the thousands separator configuration.</p>"
0 commit comments