Skip to content

Commit 90a9ac3

Browse files
author
awstools
committed
feat(client-quicksight): New Q embedding supporting Generative Q&A
1 parent df7acb1 commit 90a9ac3

36 files changed

+972
-317
lines changed

clients/client-quicksight/README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1487,6 +1487,14 @@ UpdateRoleCustomPermission
14871487

14881488
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/quicksight/command/UpdateRoleCustomPermissionCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-quicksight/Interface/UpdateRoleCustomPermissionCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-quicksight/Interface/UpdateRoleCustomPermissionCommandOutput/)
14891489

1490+
</details>
1491+
<details>
1492+
<summary>
1493+
UpdateSPICECapacityConfiguration
1494+
</summary>
1495+
1496+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/quicksight/command/UpdateSPICECapacityConfigurationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-quicksight/Interface/UpdateSPICECapacityConfigurationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-quicksight/Interface/UpdateSPICECapacityConfigurationCommandOutput/)
1497+
14901498
</details>
14911499
<details>
14921500
<summary>

clients/client-quicksight/src/QuickSight.ts

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -746,6 +746,11 @@ import {
746746
UpdateRoleCustomPermissionCommandInput,
747747
UpdateRoleCustomPermissionCommandOutput,
748748
} from "./commands/UpdateRoleCustomPermissionCommand";
749+
import {
750+
UpdateSPICECapacityConfigurationCommand,
751+
UpdateSPICECapacityConfigurationCommandInput,
752+
UpdateSPICECapacityConfigurationCommandOutput,
753+
} from "./commands/UpdateSPICECapacityConfigurationCommand";
749754
import {
750755
UpdateTemplateAliasCommand,
751756
UpdateTemplateAliasCommandInput,
@@ -952,6 +957,7 @@ const commands = {
952957
UpdatePublicSharingSettingsCommand,
953958
UpdateRefreshScheduleCommand,
954959
UpdateRoleCustomPermissionCommand,
960+
UpdateSPICECapacityConfigurationCommand,
955961
UpdateTemplateCommand,
956962
UpdateTemplateAliasCommand,
957963
UpdateTemplatePermissionsCommand,
@@ -3434,6 +3440,23 @@ export interface QuickSight {
34343440
cb: (err: any, data?: UpdateRoleCustomPermissionCommandOutput) => void
34353441
): void;
34363442

3443+
/**
3444+
* @see {@link UpdateSPICECapacityConfigurationCommand}
3445+
*/
3446+
updateSPICECapacityConfiguration(
3447+
args: UpdateSPICECapacityConfigurationCommandInput,
3448+
options?: __HttpHandlerOptions
3449+
): Promise<UpdateSPICECapacityConfigurationCommandOutput>;
3450+
updateSPICECapacityConfiguration(
3451+
args: UpdateSPICECapacityConfigurationCommandInput,
3452+
cb: (err: any, data?: UpdateSPICECapacityConfigurationCommandOutput) => void
3453+
): void;
3454+
updateSPICECapacityConfiguration(
3455+
args: UpdateSPICECapacityConfigurationCommandInput,
3456+
options: __HttpHandlerOptions,
3457+
cb: (err: any, data?: UpdateSPICECapacityConfigurationCommandOutput) => void
3458+
): void;
3459+
34373460
/**
34383461
* @see {@link UpdateTemplateCommand}
34393462
*/

clients/client-quicksight/src/QuickSightClient.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -477,6 +477,10 @@ import {
477477
UpdateRoleCustomPermissionCommandInput,
478478
UpdateRoleCustomPermissionCommandOutput,
479479
} from "./commands/UpdateRoleCustomPermissionCommand";
480+
import {
481+
UpdateSPICECapacityConfigurationCommandInput,
482+
UpdateSPICECapacityConfigurationCommandOutput,
483+
} from "./commands/UpdateSPICECapacityConfigurationCommand";
480484
import {
481485
UpdateTemplateAliasCommandInput,
482486
UpdateTemplateAliasCommandOutput,
@@ -681,6 +685,7 @@ export type ServiceInputTypes =
681685
| UpdatePublicSharingSettingsCommandInput
682686
| UpdateRefreshScheduleCommandInput
683687
| UpdateRoleCustomPermissionCommandInput
688+
| UpdateSPICECapacityConfigurationCommandInput
684689
| UpdateTemplateAliasCommandInput
685690
| UpdateTemplateCommandInput
686691
| UpdateTemplatePermissionsCommandInput
@@ -857,6 +862,7 @@ export type ServiceOutputTypes =
857862
| UpdatePublicSharingSettingsCommandOutput
858863
| UpdateRefreshScheduleCommandOutput
859864
| UpdateRoleCustomPermissionCommandOutput
865+
| UpdateSPICECapacityConfigurationCommandOutput
860866
| UpdateTemplateAliasCommandOutput
861867
| UpdateTemplateCommandOutput
862868
| UpdateTemplatePermissionsCommandOutput

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

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ export interface CreateAccountSubscriptionCommandOutput extends CreateAccountSub
5656
* // const { QuickSightClient, CreateAccountSubscriptionCommand } = require("@aws-sdk/client-quicksight"); // CommonJS import
5757
* const client = new QuickSightClient(config);
5858
* const input = { // CreateAccountSubscriptionRequest
59-
* Edition: "STANDARD" || "ENTERPRISE" || "ENTERPRISE_AND_Q", // required
59+
* Edition: "STANDARD" || "ENTERPRISE" || "ENTERPRISE_AND_Q",
6060
* AuthenticationMethod: "IAM_AND_QUICKSIGHT" || "IAM_ONLY" || "ACTIVE_DIRECTORY" || "IAM_IDENTITY_CENTER", // required
6161
* AwsAccountId: "STRING_VALUE", // required
6262
* AccountName: "STRING_VALUE", // required
@@ -73,6 +73,13 @@ export interface CreateAccountSubscriptionCommandOutput extends CreateAccountSub
7373
* ReaderGroup: [
7474
* "STRING_VALUE",
7575
* ],
76+
* AdminProGroup: [
77+
* "STRING_VALUE",
78+
* ],
79+
* AuthorProGroup: [
80+
* "STRING_VALUE",
81+
* ],
82+
* ReaderProGroup: "<GroupsList>",
7683
* FirstName: "STRING_VALUE",
7784
* LastName: "STRING_VALUE",
7885
* EmailAddress: "STRING_VALUE",

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2923,6 +2923,10 @@ export interface CreateAnalysisCommandOutput extends CreateAnalysisResponse, __M
29232923
* },
29242924
* ],
29252925
* },
2926+
* ColorConfiguration: { // GaugeChartColorConfiguration
2927+
* ForegroundColor: "STRING_VALUE",
2928+
* BackgroundColor: "STRING_VALUE",
2929+
* },
29262930
* Interactions: "<VisualInteractionOptions>",
29272931
* },
29282932
* ConditionalFormatting: { // GaugeChartConditionalFormatting

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2967,6 +2967,10 @@ export interface CreateDashboardCommandOutput extends CreateDashboardResponse, _
29672967
* },
29682968
* ],
29692969
* },
2970+
* ColorConfiguration: { // GaugeChartColorConfiguration
2971+
* ForegroundColor: "STRING_VALUE",
2972+
* BackgroundColor: "STRING_VALUE",
2973+
* },
29702974
* Interactions: "<VisualInteractionOptions>",
29712975
* },
29722976
* ConditionalFormatting: { // GaugeChartConditionalFormatting

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export interface CreateRoleMembershipCommandOutput extends CreateRoleMembershipR
3838
* MemberName: "STRING_VALUE", // required
3939
* AwsAccountId: "STRING_VALUE", // required
4040
* Namespace: "STRING_VALUE", // required
41-
* Role: "ADMIN" || "AUTHOR" || "READER", // required
41+
* Role: "ADMIN" || "AUTHOR" || "READER" || "ADMIN_PRO" || "AUTHOR_PRO" || "READER_PRO", // required
4242
* };
4343
* const command = new CreateRoleMembershipCommand(input);
4444
* const response = await client.send(command);

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2917,6 +2917,10 @@ export interface CreateTemplateCommandOutput extends CreateTemplateResponse, __M
29172917
* },
29182918
* ],
29192919
* },
2920+
* ColorConfiguration: { // GaugeChartColorConfiguration
2921+
* ForegroundColor: "STRING_VALUE",
2922+
* BackgroundColor: "STRING_VALUE",
2923+
* },
29202924
* Interactions: "<VisualInteractionOptions>",
29212925
* },
29222926
* ConditionalFormatting: { // GaugeChartConditionalFormatting

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export interface DeleteRoleCustomPermissionCommandOutput extends DeleteRoleCusto
3535
* // const { QuickSightClient, DeleteRoleCustomPermissionCommand } = require("@aws-sdk/client-quicksight"); // CommonJS import
3636
* const client = new QuickSightClient(config);
3737
* const input = { // DeleteRoleCustomPermissionRequest
38-
* Role: "ADMIN" || "AUTHOR" || "READER", // required
38+
* Role: "ADMIN" || "AUTHOR" || "READER" || "ADMIN_PRO" || "AUTHOR_PRO" || "READER_PRO", // required
3939
* AwsAccountId: "STRING_VALUE", // required
4040
* Namespace: "STRING_VALUE", // required
4141
* };

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export interface DeleteRoleMembershipCommandOutput extends DeleteRoleMembershipR
3636
* const client = new QuickSightClient(config);
3737
* const input = { // DeleteRoleMembershipRequest
3838
* MemberName: "STRING_VALUE", // required
39-
* Role: "ADMIN" || "AUTHOR" || "READER", // required
39+
* Role: "ADMIN" || "AUTHOR" || "READER" || "ADMIN_PRO" || "AUTHOR_PRO" || "READER_PRO", // required
4040
* AwsAccountId: "STRING_VALUE", // required
4141
* Namespace: "STRING_VALUE", // required
4242
* };

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2889,6 +2889,10 @@ export interface DescribeAnalysisDefinitionCommandOutput extends DescribeAnalysi
28892889
* // },
28902890
* // ],
28912891
* // },
2892+
* // ColorConfiguration: { // GaugeChartColorConfiguration
2893+
* // ForegroundColor: "STRING_VALUE",
2894+
* // BackgroundColor: "STRING_VALUE",
2895+
* // },
28922896
* // Interactions: "<VisualInteractionOptions>",
28932897
* // },
28942898
* // ConditionalFormatting: { // GaugeChartConditionalFormatting

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2896,6 +2896,10 @@ export interface DescribeDashboardDefinitionCommandOutput
28962896
* // },
28972897
* // ],
28982898
* // },
2899+
* // ColorConfiguration: { // GaugeChartColorConfiguration
2900+
* // ForegroundColor: "STRING_VALUE",
2901+
* // BackgroundColor: "STRING_VALUE",
2902+
* // },
28992903
* // Interactions: "<VisualInteractionOptions>",
29002904
* // },
29012905
* // ConditionalFormatting: { // GaugeChartConditionalFormatting

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export interface DescribeRoleCustomPermissionCommandOutput
4040
* // const { QuickSightClient, DescribeRoleCustomPermissionCommand } = require("@aws-sdk/client-quicksight"); // CommonJS import
4141
* const client = new QuickSightClient(config);
4242
* const input = { // DescribeRoleCustomPermissionRequest
43-
* Role: "ADMIN" || "AUTHOR" || "READER", // required
43+
* Role: "ADMIN" || "AUTHOR" || "READER" || "ADMIN_PRO" || "AUTHOR_PRO" || "READER_PRO", // required
4444
* AwsAccountId: "STRING_VALUE", // required
4545
* Namespace: "STRING_VALUE", // required
4646
* };

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2909,6 +2909,10 @@ export interface DescribeTemplateDefinitionCommandOutput extends DescribeTemplat
29092909
* // },
29102910
* // ],
29112911
* // },
2912+
* // ColorConfiguration: { // GaugeChartColorConfiguration
2913+
* // ForegroundColor: "STRING_VALUE",
2914+
* // BackgroundColor: "STRING_VALUE",
2915+
* // },
29122916
* // Interactions: "<VisualInteractionOptions>",
29132917
* // },
29142918
* // ConditionalFormatting: { // GaugeChartConditionalFormatting

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export interface DescribeUserCommandOutput extends DescribeUserResponse, __Metad
4646
* // Arn: "STRING_VALUE",
4747
* // UserName: "STRING_VALUE",
4848
* // Email: "STRING_VALUE",
49-
* // Role: "ADMIN" || "AUTHOR" || "READER" || "RESTRICTED_AUTHOR" || "RESTRICTED_READER",
49+
* // Role: "ADMIN" || "AUTHOR" || "READER" || "RESTRICTED_AUTHOR" || "RESTRICTED_READER" || "ADMIN_PRO" || "AUTHOR_PRO" || "READER_PRO",
5050
* // IdentityType: "IAM" || "QUICKSIGHT" || "IAM_IDENTITY_CENTER",
5151
* // Active: true || false,
5252
* // PrincipalId: "STRING_VALUE",

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,9 @@ export interface GenerateEmbedUrlForAnonymousUserCommandOutput
8888
* QSearchBar: { // AnonymousUserQSearchBarEmbeddingConfiguration
8989
* InitialTopicId: "STRING_VALUE", // required
9090
* },
91+
* GenerativeQnA: { // AnonymousUserGenerativeQnAEmbeddingConfiguration
92+
* InitialTopicId: "STRING_VALUE", // required
93+
* },
9194
* },
9295
* AllowedDomains: [ // StringList
9396
* "STRING_VALUE",

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,9 @@ export interface GenerateEmbedUrlForRegisteredUserCommandOutput
9797
* VisualId: "STRING_VALUE", // required
9898
* },
9999
* },
100+
* GenerativeQnA: { // RegisteredUserGenerativeQnAEmbeddingConfiguration
101+
* InitialTopicId: "STRING_VALUE",
102+
* },
100103
* },
101104
* AllowedDomains: [ // StringList
102105
* "STRING_VALUE",

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ import { Command as $Command } from "@smithy/smithy-client";
55
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
66

77
import { commonParams } from "../endpoint/EndpointParameters";
8-
import { ListFoldersRequest, ListFoldersResponse } from "../models/models_3";
8+
import { ListFoldersRequest } from "../models/models_3";
9+
import { ListFoldersResponse } from "../models/models_4";
910
import { de_ListFoldersCommand, se_ListFoldersCommand } from "../protocols/Aws_restJson1";
1011
import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
1112

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { Command as $Command } from "@smithy/smithy-client";
55
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
66

77
import { commonParams } from "../endpoint/EndpointParameters";
8-
import { ListGroupMembershipsRequest, ListGroupMembershipsResponse } from "../models/models_3";
8+
import { ListGroupMembershipsRequest, ListGroupMembershipsResponse } from "../models/models_4";
99
import { de_ListGroupMembershipsCommand, se_ListGroupMembershipsCommand } from "../protocols/Aws_restJson1";
1010
import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
1111

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export interface ListRoleMembershipsCommandOutput extends ListRoleMembershipsRes
3535
* // const { QuickSightClient, ListRoleMembershipsCommand } = require("@aws-sdk/client-quicksight"); // CommonJS import
3636
* const client = new QuickSightClient(config);
3737
* const input = { // ListRoleMembershipsRequest
38-
* Role: "ADMIN" || "AUTHOR" || "READER", // required
38+
* Role: "ADMIN" || "AUTHOR" || "READER" || "ADMIN_PRO" || "AUTHOR_PRO" || "READER_PRO", // required
3939
* NextToken: "STRING_VALUE",
4040
* MaxResults: Number("int"),
4141
* AwsAccountId: "STRING_VALUE", // required

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ export interface ListTopicsCommandOutput extends ListTopicsResponse, __MetadataB
4747
* // Arn: "STRING_VALUE",
4848
* // TopicId: "STRING_VALUE",
4949
* // Name: "STRING_VALUE",
50+
* // UserExperienceVersion: "LEGACY" || "NEW_READER_EXPERIENCE",
5051
* // },
5152
* // ],
5253
* // NextToken: "STRING_VALUE",

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ export interface ListUsersCommandOutput extends ListUsersResponse, __MetadataBea
4848
* // Arn: "STRING_VALUE",
4949
* // UserName: "STRING_VALUE",
5050
* // Email: "STRING_VALUE",
51-
* // Role: "ADMIN" || "AUTHOR" || "READER" || "RESTRICTED_AUTHOR" || "RESTRICTED_READER",
51+
* // Role: "ADMIN" || "AUTHOR" || "READER" || "RESTRICTED_AUTHOR" || "RESTRICTED_READER" || "ADMIN_PRO" || "AUTHOR_PRO" || "READER_PRO",
5252
* // IdentityType: "IAM" || "QUICKSIGHT" || "IAM_IDENTITY_CENTER",
5353
* // Active: true || false,
5454
* // PrincipalId: "STRING_VALUE",

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export interface RegisterUserCommandOutput extends RegisterUserResponse, __Metad
3737
* const input = { // RegisterUserRequest
3838
* IdentityType: "IAM" || "QUICKSIGHT" || "IAM_IDENTITY_CENTER", // required
3939
* Email: "STRING_VALUE", // required
40-
* UserRole: "ADMIN" || "AUTHOR" || "READER" || "RESTRICTED_AUTHOR" || "RESTRICTED_READER", // required
40+
* UserRole: "ADMIN" || "AUTHOR" || "READER" || "RESTRICTED_AUTHOR" || "RESTRICTED_READER" || "ADMIN_PRO" || "AUTHOR_PRO" || "READER_PRO", // required
4141
* IamArn: "STRING_VALUE",
4242
* SessionName: "STRING_VALUE",
4343
* AwsAccountId: "STRING_VALUE", // required
@@ -61,7 +61,7 @@ export interface RegisterUserCommandOutput extends RegisterUserResponse, __Metad
6161
* // Arn: "STRING_VALUE",
6262
* // UserName: "STRING_VALUE",
6363
* // Email: "STRING_VALUE",
64-
* // Role: "ADMIN" || "AUTHOR" || "READER" || "RESTRICTED_AUTHOR" || "RESTRICTED_READER",
64+
* // Role: "ADMIN" || "AUTHOR" || "READER" || "RESTRICTED_AUTHOR" || "RESTRICTED_READER" || "ADMIN_PRO" || "AUTHOR_PRO" || "READER_PRO",
6565
* // IdentityType: "IAM" || "QUICKSIGHT" || "IAM_IDENTITY_CENTER",
6666
* // Active: true || false,
6767
* // PrincipalId: "STRING_VALUE",

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2909,6 +2909,10 @@ export interface UpdateAnalysisCommandOutput extends UpdateAnalysisResponse, __M
29092909
* },
29102910
* ],
29112911
* },
2912+
* ColorConfiguration: { // GaugeChartColorConfiguration
2913+
* ForegroundColor: "STRING_VALUE",
2914+
* BackgroundColor: "STRING_VALUE",
2915+
* },
29122916
* Interactions: "<VisualInteractionOptions>",
29132917
* },
29142918
* ConditionalFormatting: { // GaugeChartConditionalFormatting

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2952,6 +2952,10 @@ export interface UpdateDashboardCommandOutput extends UpdateDashboardResponse, _
29522952
* },
29532953
* ],
29542954
* },
2955+
* ColorConfiguration: { // GaugeChartColorConfiguration
2956+
* ForegroundColor: "STRING_VALUE",
2957+
* BackgroundColor: "STRING_VALUE",
2958+
* },
29552959
* Interactions: "<VisualInteractionOptions>",
29562960
* },
29572961
* ConditionalFormatting: { // GaugeChartConditionalFormatting

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export interface UpdateRoleCustomPermissionCommandOutput extends UpdateRoleCusto
3636
* const client = new QuickSightClient(config);
3737
* const input = { // UpdateRoleCustomPermissionRequest
3838
* CustomPermissionsName: "STRING_VALUE", // required
39-
* Role: "ADMIN" || "AUTHOR" || "READER", // required
39+
* Role: "ADMIN" || "AUTHOR" || "READER" || "ADMIN_PRO" || "AUTHOR_PRO" || "READER_PRO", // required
4040
* AwsAccountId: "STRING_VALUE", // required
4141
* Namespace: "STRING_VALUE", // required
4242
* };

0 commit comments

Comments
 (0)