Skip to content

Commit

Permalink
feat(client-quicksight): Added DigitGroupingStyle in ThousandsSepar…
Browse files Browse the repository at this point in the history
…ator to allow grouping by `LAKH`( Indian Grouping system ) currency. Support LAKH and `CRORE` currency types in Column Formatting.
  • Loading branch information
awstools committed Jan 21, 2025
1 parent 0a9cbdd commit a009440
Show file tree
Hide file tree
Showing 24 changed files with 354 additions and 239 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ export interface BatchCreateTopicReviewedAnswerCommandOutput
* FractionDigits: Number("int"),
* Prefix: "STRING_VALUE",
* Suffix: "STRING_VALUE",
* UnitScaler: "NONE" || "AUTO" || "THOUSANDS" || "MILLIONS" || "BILLIONS" || "TRILLIONS",
* UnitScaler: "NONE" || "AUTO" || "THOUSANDS" || "MILLIONS" || "BILLIONS" || "TRILLIONS" || "LAKHS" || "CRORES",
* NegativeFormat: { // NegativeFormat
* Prefix: "STRING_VALUE",
* Suffix: "STRING_VALUE",
Expand Down Expand Up @@ -128,7 +128,7 @@ export interface BatchCreateTopicReviewedAnswerCommandOutput
* FractionDigits: Number("int"),
* Prefix: "STRING_VALUE",
* Suffix: "STRING_VALUE",
* UnitScaler: "NONE" || "AUTO" || "THOUSANDS" || "MILLIONS" || "BILLIONS" || "TRILLIONS",
* UnitScaler: "NONE" || "AUTO" || "THOUSANDS" || "MILLIONS" || "BILLIONS" || "TRILLIONS" || "LAKHS" || "CRORES",
* NegativeFormat: {
* Prefix: "STRING_VALUE",
* Suffix: "STRING_VALUE",
Expand Down Expand Up @@ -367,7 +367,7 @@ export interface BatchCreateTopicReviewedAnswerCommandOutput
* FractionDigits: Number("int"),
* Prefix: "STRING_VALUE",
* Suffix: "STRING_VALUE",
* UnitScaler: "NONE" || "AUTO" || "THOUSANDS" || "MILLIONS" || "BILLIONS" || "TRILLIONS",
* UnitScaler: "NONE" || "AUTO" || "THOUSANDS" || "MILLIONS" || "BILLIONS" || "TRILLIONS" || "LAKHS" || "CRORES",
* NegativeFormat: {
* Prefix: "STRING_VALUE",
* Suffix: "STRING_VALUE",
Expand Down Expand Up @@ -395,7 +395,7 @@ export interface BatchCreateTopicReviewedAnswerCommandOutput
* FractionDigits: Number("int"),
* Prefix: "STRING_VALUE",
* Suffix: "STRING_VALUE",
* UnitScaler: "NONE" || "AUTO" || "THOUSANDS" || "MILLIONS" || "BILLIONS" || "TRILLIONS",
* UnitScaler: "NONE" || "AUTO" || "THOUSANDS" || "MILLIONS" || "BILLIONS" || "TRILLIONS" || "LAKHS" || "CRORES",
* NegativeFormat: {
* Prefix: "STRING_VALUE",
* Suffix: "STRING_VALUE",
Expand Down
29 changes: 17 additions & 12 deletions clients/client-quicksight/src/commands/CreateAnalysisCommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -509,12 +509,13 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M
* ThousandsSeparator: { // ThousandSeparatorOptions
* Symbol: "COMMA" || "DOT" || "SPACE",
* Visibility: "HIDDEN" || "VISIBLE",
* GroupingStyle: "DEFAULT" || "LAKHS",
* },
* },
* DecimalPlacesConfiguration: { // DecimalPlacesConfiguration
* DecimalPlaces: Number("long"), // required
* },
* NumberScale: "NONE" || "AUTO" || "THOUSANDS" || "MILLIONS" || "BILLIONS" || "TRILLIONS",
* NumberScale: "NONE" || "AUTO" || "THOUSANDS" || "MILLIONS" || "BILLIONS" || "TRILLIONS" || "LAKHS" || "CRORES",
* NegativeValueConfiguration: { // NegativeValueConfiguration
* DisplayMode: "POSITIVE" || "NEGATIVE", // required
* },
Expand All @@ -530,13 +531,14 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M
* ThousandsSeparator: {
* Symbol: "COMMA" || "DOT" || "SPACE",
* Visibility: "HIDDEN" || "VISIBLE",
* GroupingStyle: "DEFAULT" || "LAKHS",
* },
* },
* Symbol: "STRING_VALUE",
* DecimalPlacesConfiguration: {
* DecimalPlaces: Number("long"), // required
* },
* NumberScale: "NONE" || "AUTO" || "THOUSANDS" || "MILLIONS" || "BILLIONS" || "TRILLIONS",
* NumberScale: "NONE" || "AUTO" || "THOUSANDS" || "MILLIONS" || "BILLIONS" || "TRILLIONS" || "LAKHS" || "CRORES",
* NegativeValueConfiguration: {
* DisplayMode: "POSITIVE" || "NEGATIVE", // required
* },
Expand All @@ -552,6 +554,7 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M
* ThousandsSeparator: {
* Symbol: "COMMA" || "DOT" || "SPACE",
* Visibility: "HIDDEN" || "VISIBLE",
* GroupingStyle: "DEFAULT" || "LAKHS",
* },
* },
* DecimalPlacesConfiguration: {
Expand Down Expand Up @@ -584,12 +587,13 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M
* ThousandsSeparator: {
* Symbol: "COMMA" || "DOT" || "SPACE",
* Visibility: "HIDDEN" || "VISIBLE",
* GroupingStyle: "DEFAULT" || "LAKHS",
* },
* },
* DecimalPlacesConfiguration: {
* DecimalPlaces: Number("long"), // required
* },
* NumberScale: "NONE" || "AUTO" || "THOUSANDS" || "MILLIONS" || "BILLIONS" || "TRILLIONS",
* NumberScale: "NONE" || "AUTO" || "THOUSANDS" || "MILLIONS" || "BILLIONS" || "TRILLIONS" || "LAKHS" || "CRORES",
* NegativeValueConfiguration: {
* DisplayMode: "POSITIVE" || "NEGATIVE", // required
* },
Expand All @@ -605,13 +609,14 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M
* ThousandsSeparator: {
* Symbol: "COMMA" || "DOT" || "SPACE",
* Visibility: "HIDDEN" || "VISIBLE",
* GroupingStyle: "DEFAULT" || "LAKHS",
* },
* },
* Symbol: "STRING_VALUE",
* DecimalPlacesConfiguration: {
* DecimalPlaces: Number("long"), // required
* },
* NumberScale: "NONE" || "AUTO" || "THOUSANDS" || "MILLIONS" || "BILLIONS" || "TRILLIONS",
* NumberScale: "NONE" || "AUTO" || "THOUSANDS" || "MILLIONS" || "BILLIONS" || "TRILLIONS" || "LAKHS" || "CRORES",
* NegativeValueConfiguration: {
* DisplayMode: "POSITIVE" || "NEGATIVE", // required
* },
Expand Down Expand Up @@ -642,7 +647,7 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M
* Suffix: "STRING_VALUE",
* SeparatorConfiguration: "<NumericSeparatorConfiguration>",
* DecimalPlacesConfiguration: "<DecimalPlacesConfiguration>",
* NumberScale: "NONE" || "AUTO" || "THOUSANDS" || "MILLIONS" || "BILLIONS" || "TRILLIONS",
* NumberScale: "NONE" || "AUTO" || "THOUSANDS" || "MILLIONS" || "BILLIONS" || "TRILLIONS" || "LAKHS" || "CRORES",
* NegativeValueConfiguration: "<NegativeValueConfiguration>",
* NullValueFormatConfiguration: "<NullValueFormatConfiguration>",
* },
Expand All @@ -652,7 +657,7 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M
* SeparatorConfiguration: "<NumericSeparatorConfiguration>",
* Symbol: "STRING_VALUE",
* DecimalPlacesConfiguration: "<DecimalPlacesConfiguration>",
* NumberScale: "NONE" || "AUTO" || "THOUSANDS" || "MILLIONS" || "BILLIONS" || "TRILLIONS",
* NumberScale: "NONE" || "AUTO" || "THOUSANDS" || "MILLIONS" || "BILLIONS" || "TRILLIONS" || "LAKHS" || "CRORES",
* NegativeValueConfiguration: "<NegativeValueConfiguration>",
* NullValueFormatConfiguration: "<NullValueFormatConfiguration>",
* },
Expand Down Expand Up @@ -687,7 +692,7 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M
* Suffix: "STRING_VALUE",
* SeparatorConfiguration: "<NumericSeparatorConfiguration>",
* DecimalPlacesConfiguration: "<DecimalPlacesConfiguration>",
* NumberScale: "NONE" || "AUTO" || "THOUSANDS" || "MILLIONS" || "BILLIONS" || "TRILLIONS",
* NumberScale: "NONE" || "AUTO" || "THOUSANDS" || "MILLIONS" || "BILLIONS" || "TRILLIONS" || "LAKHS" || "CRORES",
* NegativeValueConfiguration: "<NegativeValueConfiguration>",
* NullValueFormatConfiguration: "<NullValueFormatConfiguration>",
* },
Expand All @@ -697,7 +702,7 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M
* SeparatorConfiguration: "<NumericSeparatorConfiguration>",
* Symbol: "STRING_VALUE",
* DecimalPlacesConfiguration: "<DecimalPlacesConfiguration>",
* NumberScale: "NONE" || "AUTO" || "THOUSANDS" || "MILLIONS" || "BILLIONS" || "TRILLIONS",
* NumberScale: "NONE" || "AUTO" || "THOUSANDS" || "MILLIONS" || "BILLIONS" || "TRILLIONS" || "LAKHS" || "CRORES",
* NegativeValueConfiguration: "<NegativeValueConfiguration>",
* NullValueFormatConfiguration: "<NullValueFormatConfiguration>",
* },
Expand All @@ -724,7 +729,7 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M
* Suffix: "STRING_VALUE",
* SeparatorConfiguration: "<NumericSeparatorConfiguration>",
* DecimalPlacesConfiguration: "<DecimalPlacesConfiguration>",
* NumberScale: "NONE" || "AUTO" || "THOUSANDS" || "MILLIONS" || "BILLIONS" || "TRILLIONS",
* NumberScale: "NONE" || "AUTO" || "THOUSANDS" || "MILLIONS" || "BILLIONS" || "TRILLIONS" || "LAKHS" || "CRORES",
* NegativeValueConfiguration: "<NegativeValueConfiguration>",
* NullValueFormatConfiguration: "<NullValueFormatConfiguration>",
* },
Expand All @@ -734,7 +739,7 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M
* SeparatorConfiguration: "<NumericSeparatorConfiguration>",
* Symbol: "STRING_VALUE",
* DecimalPlacesConfiguration: "<DecimalPlacesConfiguration>",
* NumberScale: "NONE" || "AUTO" || "THOUSANDS" || "MILLIONS" || "BILLIONS" || "TRILLIONS",
* NumberScale: "NONE" || "AUTO" || "THOUSANDS" || "MILLIONS" || "BILLIONS" || "TRILLIONS" || "LAKHS" || "CRORES",
* NegativeValueConfiguration: "<NegativeValueConfiguration>",
* NullValueFormatConfiguration: "<NullValueFormatConfiguration>",
* },
Expand Down Expand Up @@ -767,7 +772,7 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M
* ],
* },
* TableUnaggregatedFieldWells: { // TableUnaggregatedFieldWells
* Values: [ // UnaggregatedFieldList
* Values: [ // TableUnaggregatedFieldList
* { // UnaggregatedField
* FieldId: "STRING_VALUE", // required
* Column: "<ColumnIdentifier>", // required
Expand Down Expand Up @@ -4490,7 +4495,7 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M
* AxisName: "GROUP_BY" || "VALUE",
* Dimensions: "<DimensionFieldList>",
* Measures: "<MeasureFieldList>",
* Unaggregated: [
* Unaggregated: [ // UnaggregatedFieldList
* {
* FieldId: "STRING_VALUE", // required
* Column: "<ColumnIdentifier>", // required
Expand Down
Loading

0 comments on commit a009440

Please sign in to comment.