Skip to content

Commit 32dded9

Browse files
author
awstools
committed
feat(client-quicksight): This release includes below three changes: small multiples axes improvement, field based coloring, removed required trait from Aggregation function for TopBottomFilter.
1 parent 2f61030 commit 32dded9

26 files changed

+1224
-664
lines changed

clients/client-quicksight/src/commands/CreateAnalysisCommand.ts

Lines changed: 31 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1690,6 +1690,14 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M
16901690
* BackgroundVisibility: "HIDDEN" || "VISIBLE",
16911691
* BackgroundColor: "STRING_VALUE",
16921692
* },
1693+
* XAxis: { // SmallMultiplesAxisProperties
1694+
* Scale: "SHARED" || "INDEPENDENT",
1695+
* Placement: "OUTSIDE" || "INSIDE",
1696+
* },
1697+
* YAxis: {
1698+
* Scale: "SHARED" || "INDEPENDENT",
1699+
* Placement: "OUTSIDE" || "INSIDE",
1700+
* },
16931701
* },
16941702
* CategoryAxis: { // AxisDisplayOptions
16951703
* TickLabelOptions: { // AxisTickLabelOptions
@@ -2404,6 +2412,14 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M
24042412
* BackgroundVisibility: "HIDDEN" || "VISIBLE",
24052413
* BackgroundColor: "STRING_VALUE",
24062414
* },
2415+
* XAxis: {
2416+
* Scale: "SHARED" || "INDEPENDENT",
2417+
* Placement: "OUTSIDE" || "INSIDE",
2418+
* },
2419+
* YAxis: {
2420+
* Scale: "SHARED" || "INDEPENDENT",
2421+
* Placement: "OUTSIDE" || "INSIDE",
2422+
* },
24072423
* },
24082424
* CategoryLabelOptions: {
24092425
* Visibility: "HIDDEN" || "VISIBLE",
@@ -2801,6 +2817,11 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M
28012817
* BackgroundVisibility: "HIDDEN" || "VISIBLE",
28022818
* BackgroundColor: "STRING_VALUE",
28032819
* },
2820+
* XAxis: {
2821+
* Scale: "SHARED" || "INDEPENDENT",
2822+
* Placement: "OUTSIDE" || "INSIDE",
2823+
* },
2824+
* YAxis: "<SmallMultiplesAxisProperties>",
28042825
* },
28052826
* XAxisDisplayOptions: {
28062827
* TickLabelOptions: {
@@ -4334,7 +4355,7 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M
43344355
* { // AggregationSortConfiguration
43354356
* Column: "<ColumnIdentifier>", // required
43364357
* SortDirection: "ASC" || "DESC", // required
4337-
* AggregationFunction: "<AggregationFunction>", // required
4358+
* AggregationFunction: "<AggregationFunction>",
43384359
* },
43394360
* ],
43404361
* TimeGranularity: "YEAR" || "QUARTER" || "MONTH" || "WEEK" || "DAY" || "HOUR" || "MINUTE" || "SECOND" || "MILLISECOND",
@@ -4368,6 +4389,15 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M
43684389
* DateTimeFormatConfiguration: "<DateTimeFormatConfiguration>",
43694390
* },
43704391
* Role: "DIMENSION" || "MEASURE",
4392+
* ColorsConfiguration: { // ColorsConfiguration
4393+
* CustomColors: [ // CustomColorsList
4394+
* { // CustomColor
4395+
* FieldValue: "STRING_VALUE",
4396+
* Color: "STRING_VALUE", // required
4397+
* SpecialValue: "EMPTY" || "NULL" || "OTHER",
4398+
* },
4399+
* ],
4400+
* },
43714401
* },
43724402
* ],
43734403
* AnalysisDefaults: { // AnalysisDefaults

clients/client-quicksight/src/commands/CreateDashboardCommand.ts

Lines changed: 31 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1736,6 +1736,14 @@ export interface CreateDashboardCommandOutput extends CreateDashboardResponse, _
17361736
* BackgroundVisibility: "HIDDEN" || "VISIBLE",
17371737
* BackgroundColor: "STRING_VALUE",
17381738
* },
1739+
* XAxis: { // SmallMultiplesAxisProperties
1740+
* Scale: "SHARED" || "INDEPENDENT",
1741+
* Placement: "OUTSIDE" || "INSIDE",
1742+
* },
1743+
* YAxis: {
1744+
* Scale: "SHARED" || "INDEPENDENT",
1745+
* Placement: "OUTSIDE" || "INSIDE",
1746+
* },
17391747
* },
17401748
* CategoryAxis: { // AxisDisplayOptions
17411749
* TickLabelOptions: { // AxisTickLabelOptions
@@ -2450,6 +2458,14 @@ export interface CreateDashboardCommandOutput extends CreateDashboardResponse, _
24502458
* BackgroundVisibility: "HIDDEN" || "VISIBLE",
24512459
* BackgroundColor: "STRING_VALUE",
24522460
* },
2461+
* XAxis: {
2462+
* Scale: "SHARED" || "INDEPENDENT",
2463+
* Placement: "OUTSIDE" || "INSIDE",
2464+
* },
2465+
* YAxis: {
2466+
* Scale: "SHARED" || "INDEPENDENT",
2467+
* Placement: "OUTSIDE" || "INSIDE",
2468+
* },
24532469
* },
24542470
* CategoryLabelOptions: {
24552471
* Visibility: "HIDDEN" || "VISIBLE",
@@ -2847,6 +2863,11 @@ export interface CreateDashboardCommandOutput extends CreateDashboardResponse, _
28472863
* BackgroundVisibility: "HIDDEN" || "VISIBLE",
28482864
* BackgroundColor: "STRING_VALUE",
28492865
* },
2866+
* XAxis: {
2867+
* Scale: "SHARED" || "INDEPENDENT",
2868+
* Placement: "OUTSIDE" || "INSIDE",
2869+
* },
2870+
* YAxis: "<SmallMultiplesAxisProperties>",
28502871
* },
28512872
* XAxisDisplayOptions: {
28522873
* TickLabelOptions: {
@@ -4380,7 +4401,7 @@ export interface CreateDashboardCommandOutput extends CreateDashboardResponse, _
43804401
* { // AggregationSortConfiguration
43814402
* Column: "<ColumnIdentifier>", // required
43824403
* SortDirection: "ASC" || "DESC", // required
4383-
* AggregationFunction: "<AggregationFunction>", // required
4404+
* AggregationFunction: "<AggregationFunction>",
43844405
* },
43854406
* ],
43864407
* TimeGranularity: "YEAR" || "QUARTER" || "MONTH" || "WEEK" || "DAY" || "HOUR" || "MINUTE" || "SECOND" || "MILLISECOND",
@@ -4414,6 +4435,15 @@ export interface CreateDashboardCommandOutput extends CreateDashboardResponse, _
44144435
* DateTimeFormatConfiguration: "<DateTimeFormatConfiguration>",
44154436
* },
44164437
* Role: "DIMENSION" || "MEASURE",
4438+
* ColorsConfiguration: { // ColorsConfiguration
4439+
* CustomColors: [ // CustomColorsList
4440+
* { // CustomColor
4441+
* FieldValue: "STRING_VALUE",
4442+
* Color: "STRING_VALUE", // required
4443+
* SpecialValue: "EMPTY" || "NULL" || "OTHER",
4444+
* },
4445+
* ],
4446+
* },
44174447
* },
44184448
* ],
44194449
* AnalysisDefaults: { // AnalysisDefaults

clients/client-quicksight/src/commands/CreateTemplateCommand.ts

Lines changed: 31 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1684,6 +1684,14 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M
16841684
* BackgroundVisibility: "HIDDEN" || "VISIBLE",
16851685
* BackgroundColor: "STRING_VALUE",
16861686
* },
1687+
* XAxis: { // SmallMultiplesAxisProperties
1688+
* Scale: "SHARED" || "INDEPENDENT",
1689+
* Placement: "OUTSIDE" || "INSIDE",
1690+
* },
1691+
* YAxis: {
1692+
* Scale: "SHARED" || "INDEPENDENT",
1693+
* Placement: "OUTSIDE" || "INSIDE",
1694+
* },
16871695
* },
16881696
* CategoryAxis: { // AxisDisplayOptions
16891697
* TickLabelOptions: { // AxisTickLabelOptions
@@ -2398,6 +2406,14 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M
23982406
* BackgroundVisibility: "HIDDEN" || "VISIBLE",
23992407
* BackgroundColor: "STRING_VALUE",
24002408
* },
2409+
* XAxis: {
2410+
* Scale: "SHARED" || "INDEPENDENT",
2411+
* Placement: "OUTSIDE" || "INSIDE",
2412+
* },
2413+
* YAxis: {
2414+
* Scale: "SHARED" || "INDEPENDENT",
2415+
* Placement: "OUTSIDE" || "INSIDE",
2416+
* },
24012417
* },
24022418
* CategoryLabelOptions: {
24032419
* Visibility: "HIDDEN" || "VISIBLE",
@@ -2795,6 +2811,11 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M
27952811
* BackgroundVisibility: "HIDDEN" || "VISIBLE",
27962812
* BackgroundColor: "STRING_VALUE",
27972813
* },
2814+
* XAxis: {
2815+
* Scale: "SHARED" || "INDEPENDENT",
2816+
* Placement: "OUTSIDE" || "INSIDE",
2817+
* },
2818+
* YAxis: "<SmallMultiplesAxisProperties>",
27982819
* },
27992820
* XAxisDisplayOptions: {
28002821
* TickLabelOptions: {
@@ -4328,7 +4349,7 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M
43284349
* { // AggregationSortConfiguration
43294350
* Column: "<ColumnIdentifier>", // required
43304351
* SortDirection: "ASC" || "DESC", // required
4331-
* AggregationFunction: "<AggregationFunction>", // required
4352+
* AggregationFunction: "<AggregationFunction>",
43324353
* },
43334354
* ],
43344355
* TimeGranularity: "YEAR" || "QUARTER" || "MONTH" || "WEEK" || "DAY" || "HOUR" || "MINUTE" || "SECOND" || "MILLISECOND",
@@ -4362,6 +4383,15 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M
43624383
* DateTimeFormatConfiguration: "<DateTimeFormatConfiguration>",
43634384
* },
43644385
* Role: "DIMENSION" || "MEASURE",
4386+
* ColorsConfiguration: { // ColorsConfiguration
4387+
* CustomColors: [ // CustomColorsList
4388+
* { // CustomColor
4389+
* FieldValue: "STRING_VALUE",
4390+
* Color: "STRING_VALUE", // required
4391+
* SpecialValue: "EMPTY" || "NULL" || "OTHER",
4392+
* },
4393+
* ],
4394+
* },
43654395
* },
43664396
* ],
43674397
* AnalysisDefaults: { // AnalysisDefaults

clients/client-quicksight/src/commands/DeleteFolderCommand.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ import {
1313
SerdeContext as __SerdeContext,
1414
} from "@smithy/types";
1515

16-
import { DeleteFolderRequest, DeleteFolderResponse } from "../models/models_2";
16+
import { DeleteFolderRequest } from "../models/models_2";
17+
import { DeleteFolderResponse } from "../models/models_3";
1718
import { de_DeleteFolderCommand, se_DeleteFolderCommand } from "../protocols/Aws_restJson1";
1819
import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
1920

clients/client-quicksight/src/commands/DeleteFolderMembershipCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import {
1313
SerdeContext as __SerdeContext,
1414
} from "@smithy/types";
1515

16-
import { DeleteFolderMembershipRequest, DeleteFolderMembershipResponse } from "../models/models_2";
16+
import { DeleteFolderMembershipRequest, DeleteFolderMembershipResponse } from "../models/models_3";
1717
import { de_DeleteFolderMembershipCommand, se_DeleteFolderMembershipCommand } from "../protocols/Aws_restJson1";
1818
import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
1919

clients/client-quicksight/src/commands/DeleteGroupCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import {
1313
SerdeContext as __SerdeContext,
1414
} from "@smithy/types";
1515

16-
import { DeleteGroupRequest, DeleteGroupResponse } from "../models/models_2";
16+
import { DeleteGroupRequest, DeleteGroupResponse } from "../models/models_3";
1717
import { de_DeleteGroupCommand, se_DeleteGroupCommand } from "../protocols/Aws_restJson1";
1818
import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
1919

clients/client-quicksight/src/commands/DeleteGroupMembershipCommand.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@ import {
1313
SerdeContext as __SerdeContext,
1414
} from "@smithy/types";
1515

16-
import { DeleteGroupMembershipRequest } from "../models/models_2";
17-
import { DeleteGroupMembershipResponse } from "../models/models_3";
16+
import { DeleteGroupMembershipRequest, DeleteGroupMembershipResponse } from "../models/models_3";
1817
import { de_DeleteGroupMembershipCommand, se_DeleteGroupMembershipCommand } from "../protocols/Aws_restJson1";
1918
import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
2019

clients/client-quicksight/src/commands/DescribeAnalysisDefinitionCommand.ts

Lines changed: 31 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1656,6 +1656,14 @@ export interface DescribeAnalysisDefinitionCommandOutput extends DescribeAnalysi
16561656
* // BackgroundVisibility: "HIDDEN" || "VISIBLE",
16571657
* // BackgroundColor: "STRING_VALUE",
16581658
* // },
1659+
* // XAxis: { // SmallMultiplesAxisProperties
1660+
* // Scale: "SHARED" || "INDEPENDENT",
1661+
* // Placement: "OUTSIDE" || "INSIDE",
1662+
* // },
1663+
* // YAxis: {
1664+
* // Scale: "SHARED" || "INDEPENDENT",
1665+
* // Placement: "OUTSIDE" || "INSIDE",
1666+
* // },
16591667
* // },
16601668
* // CategoryAxis: { // AxisDisplayOptions
16611669
* // TickLabelOptions: { // AxisTickLabelOptions
@@ -2370,6 +2378,14 @@ export interface DescribeAnalysisDefinitionCommandOutput extends DescribeAnalysi
23702378
* // BackgroundVisibility: "HIDDEN" || "VISIBLE",
23712379
* // BackgroundColor: "STRING_VALUE",
23722380
* // },
2381+
* // XAxis: {
2382+
* // Scale: "SHARED" || "INDEPENDENT",
2383+
* // Placement: "OUTSIDE" || "INSIDE",
2384+
* // },
2385+
* // YAxis: {
2386+
* // Scale: "SHARED" || "INDEPENDENT",
2387+
* // Placement: "OUTSIDE" || "INSIDE",
2388+
* // },
23732389
* // },
23742390
* // CategoryLabelOptions: {
23752391
* // Visibility: "HIDDEN" || "VISIBLE",
@@ -2767,6 +2783,11 @@ export interface DescribeAnalysisDefinitionCommandOutput extends DescribeAnalysi
27672783
* // BackgroundVisibility: "HIDDEN" || "VISIBLE",
27682784
* // BackgroundColor: "STRING_VALUE",
27692785
* // },
2786+
* // XAxis: {
2787+
* // Scale: "SHARED" || "INDEPENDENT",
2788+
* // Placement: "OUTSIDE" || "INSIDE",
2789+
* // },
2790+
* // YAxis: "<SmallMultiplesAxisProperties>",
27702791
* // },
27712792
* // XAxisDisplayOptions: {
27722793
* // TickLabelOptions: {
@@ -4300,7 +4321,7 @@ export interface DescribeAnalysisDefinitionCommandOutput extends DescribeAnalysi
43004321
* // { // AggregationSortConfiguration
43014322
* // Column: "<ColumnIdentifier>", // required
43024323
* // SortDirection: "ASC" || "DESC", // required
4303-
* // AggregationFunction: "<AggregationFunction>", // required
4324+
* // AggregationFunction: "<AggregationFunction>",
43044325
* // },
43054326
* // ],
43064327
* // TimeGranularity: "YEAR" || "QUARTER" || "MONTH" || "WEEK" || "DAY" || "HOUR" || "MINUTE" || "SECOND" || "MILLISECOND",
@@ -4334,6 +4355,15 @@ export interface DescribeAnalysisDefinitionCommandOutput extends DescribeAnalysi
43344355
* // DateTimeFormatConfiguration: "<DateTimeFormatConfiguration>",
43354356
* // },
43364357
* // Role: "DIMENSION" || "MEASURE",
4358+
* // ColorsConfiguration: { // ColorsConfiguration
4359+
* // CustomColors: [ // CustomColorsList
4360+
* // { // CustomColor
4361+
* // FieldValue: "STRING_VALUE",
4362+
* // Color: "STRING_VALUE", // required
4363+
* // SpecialValue: "EMPTY" || "NULL" || "OTHER",
4364+
* // },
4365+
* // ],
4366+
* // },
43374367
* // },
43384368
* // ],
43394369
* // AnalysisDefaults: { // AnalysisDefaults

clients/client-quicksight/src/commands/DescribeDashboardDefinitionCommand.ts

Lines changed: 31 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1663,6 +1663,14 @@ export interface DescribeDashboardDefinitionCommandOutput
16631663
* // BackgroundVisibility: "HIDDEN" || "VISIBLE",
16641664
* // BackgroundColor: "STRING_VALUE",
16651665
* // },
1666+
* // XAxis: { // SmallMultiplesAxisProperties
1667+
* // Scale: "SHARED" || "INDEPENDENT",
1668+
* // Placement: "OUTSIDE" || "INSIDE",
1669+
* // },
1670+
* // YAxis: {
1671+
* // Scale: "SHARED" || "INDEPENDENT",
1672+
* // Placement: "OUTSIDE" || "INSIDE",
1673+
* // },
16661674
* // },
16671675
* // CategoryAxis: { // AxisDisplayOptions
16681676
* // TickLabelOptions: { // AxisTickLabelOptions
@@ -2377,6 +2385,14 @@ export interface DescribeDashboardDefinitionCommandOutput
23772385
* // BackgroundVisibility: "HIDDEN" || "VISIBLE",
23782386
* // BackgroundColor: "STRING_VALUE",
23792387
* // },
2388+
* // XAxis: {
2389+
* // Scale: "SHARED" || "INDEPENDENT",
2390+
* // Placement: "OUTSIDE" || "INSIDE",
2391+
* // },
2392+
* // YAxis: {
2393+
* // Scale: "SHARED" || "INDEPENDENT",
2394+
* // Placement: "OUTSIDE" || "INSIDE",
2395+
* // },
23802396
* // },
23812397
* // CategoryLabelOptions: {
23822398
* // Visibility: "HIDDEN" || "VISIBLE",
@@ -2774,6 +2790,11 @@ export interface DescribeDashboardDefinitionCommandOutput
27742790
* // BackgroundVisibility: "HIDDEN" || "VISIBLE",
27752791
* // BackgroundColor: "STRING_VALUE",
27762792
* // },
2793+
* // XAxis: {
2794+
* // Scale: "SHARED" || "INDEPENDENT",
2795+
* // Placement: "OUTSIDE" || "INSIDE",
2796+
* // },
2797+
* // YAxis: "<SmallMultiplesAxisProperties>",
27772798
* // },
27782799
* // XAxisDisplayOptions: {
27792800
* // TickLabelOptions: {
@@ -4307,7 +4328,7 @@ export interface DescribeDashboardDefinitionCommandOutput
43074328
* // { // AggregationSortConfiguration
43084329
* // Column: "<ColumnIdentifier>", // required
43094330
* // SortDirection: "ASC" || "DESC", // required
4310-
* // AggregationFunction: "<AggregationFunction>", // required
4331+
* // AggregationFunction: "<AggregationFunction>",
43114332
* // },
43124333
* // ],
43134334
* // TimeGranularity: "YEAR" || "QUARTER" || "MONTH" || "WEEK" || "DAY" || "HOUR" || "MINUTE" || "SECOND" || "MILLISECOND",
@@ -4341,6 +4362,15 @@ export interface DescribeDashboardDefinitionCommandOutput
43414362
* // DateTimeFormatConfiguration: "<DateTimeFormatConfiguration>",
43424363
* // },
43434364
* // Role: "DIMENSION" || "MEASURE",
4365+
* // ColorsConfiguration: { // ColorsConfiguration
4366+
* // CustomColors: [ // CustomColorsList
4367+
* // { // CustomColor
4368+
* // FieldValue: "STRING_VALUE",
4369+
* // Color: "STRING_VALUE", // required
4370+
* // SpecialValue: "EMPTY" || "NULL" || "OTHER",
4371+
* // },
4372+
* // ],
4373+
* // },
43444374
* // },
43454375
* // ],
43464376
* // AnalysisDefaults: { // AnalysisDefaults

0 commit comments

Comments
 (0)