@aws-sdk/client-quicksight 3.691.0 → 3.692.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +143 -7
- package/dist-cjs/index.js +1116 -216
- package/dist-es/QuickSight.js +34 -0
- package/dist-es/commands/CreateBrandCommand.js +22 -0
- package/dist-es/commands/CreateCustomPermissionsCommand.js +22 -0
- package/dist-es/commands/DeleteBrandAssignmentCommand.js +22 -0
- package/dist-es/commands/DeleteBrandCommand.js +22 -0
- package/dist-es/commands/DeleteCustomPermissionsCommand.js +22 -0
- package/dist-es/commands/DeleteUserCustomPermissionCommand.js +22 -0
- package/dist-es/commands/DescribeBrandAssignmentCommand.js +22 -0
- package/dist-es/commands/DescribeBrandCommand.js +22 -0
- package/dist-es/commands/DescribeBrandPublishedVersionCommand.js +22 -0
- package/dist-es/commands/DescribeCustomPermissionsCommand.js +22 -0
- package/dist-es/commands/DescribeTemplateDefinitionCommand.js +1 -1
- package/dist-es/commands/DescribeTopicCommand.js +1 -1
- package/dist-es/commands/ListBrandsCommand.js +22 -0
- package/dist-es/commands/ListCustomPermissionsCommand.js +22 -0
- package/dist-es/commands/UpdateBrandAssignmentCommand.js +22 -0
- package/dist-es/commands/UpdateBrandCommand.js +22 -0
- package/dist-es/commands/UpdateBrandPublishedVersionCommand.js +22 -0
- package/dist-es/commands/UpdateCustomPermissionsCommand.js +22 -0
- package/dist-es/commands/UpdateUserCustomPermissionCommand.js +22 -0
- package/dist-es/commands/index.js +17 -0
- package/dist-es/models/models_2.js +52 -107
- package/dist-es/models/models_3.js +108 -29
- package/dist-es/models/models_4.js +30 -16
- package/dist-es/pagination/ListBrandsPaginator.js +4 -0
- package/dist-es/pagination/ListCustomPermissionsPaginator.js +4 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +540 -6
- package/dist-types/QuickSight.d.ts +119 -0
- package/dist-types/QuickSightClient.d.ts +19 -2
- package/dist-types/commands/CreateBrandCommand.d.ts +268 -0
- package/dist-types/commands/CreateCustomPermissionsCommand.d.ts +132 -0
- package/dist-types/commands/DeleteBrandAssignmentCommand.d.ts +92 -0
- package/dist-types/commands/DeleteBrandCommand.d.ts +93 -0
- package/dist-types/commands/DeleteCustomPermissionsCommand.d.ts +104 -0
- package/dist-types/commands/DeleteUserCustomPermissionCommand.d.ts +101 -0
- package/dist-types/commands/DescribeBrandAssignmentCommand.d.ts +93 -0
- package/dist-types/commands/DescribeBrandCommand.d.ts +204 -0
- package/dist-types/commands/DescribeBrandPublishedVersionCommand.d.ts +203 -0
- package/dist-types/commands/DescribeCustomPermissionsCommand.d.ts +120 -0
- package/dist-types/commands/DescribeIngestionCommand.d.ts +2 -1
- package/dist-types/commands/DescribeIpRestrictionCommand.d.ts +1 -1
- package/dist-types/commands/DescribeKeyRegistrationCommand.d.ts +1 -1
- package/dist-types/commands/DescribeNamespaceCommand.d.ts +1 -1
- package/dist-types/commands/DescribeQPersonalizationConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/DescribeRefreshScheduleCommand.d.ts +1 -1
- package/dist-types/commands/DescribeRoleCustomPermissionCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTemplateAliasCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTemplateCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTemplateDefinitionCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTemplatePermissionsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeThemeAliasCommand.d.ts +1 -1
- package/dist-types/commands/DescribeThemeCommand.d.ts +1 -1
- package/dist-types/commands/DescribeThemePermissionsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTopicCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTopicPermissionsCommand.d.ts +1 -2
- package/dist-types/commands/ListBrandsCommand.d.ts +99 -0
- package/dist-types/commands/ListCustomPermissionsCommand.d.ts +124 -0
- package/dist-types/commands/UpdateBrandAssignmentCommand.d.ts +94 -0
- package/dist-types/commands/UpdateBrandCommand.d.ts +262 -0
- package/dist-types/commands/UpdateBrandPublishedVersionCommand.d.ts +95 -0
- package/dist-types/commands/UpdateCustomPermissionsCommand.d.ts +120 -0
- package/dist-types/commands/UpdateUserCustomPermissionCommand.d.ts +102 -0
- package/dist-types/commands/index.d.ts +17 -0
- package/dist-types/models/models_2.d.ts +1343 -1408
- package/dist-types/models/models_3.d.ts +4131 -4269
- package/dist-types/models/models_4.d.ts +1387 -21
- package/dist-types/pagination/ListBrandsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListCustomPermissionsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +153 -0
- package/dist-types/ts3.4/QuickSight.d.ts +289 -0
- package/dist-types/ts3.4/QuickSightClient.d.ts +102 -0
- package/dist-types/ts3.4/commands/CreateBrandCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/CreateCustomPermissionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteBrandAssignmentCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteBrandCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DeleteCustomPermissionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteUserCustomPermissionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeBrandAssignmentCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeBrandCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DescribeBrandPublishedVersionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeCustomPermissionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeIngestionCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeIpRestrictionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeKeyRegistrationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeNamespaceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeQPersonalizationConfigurationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeRefreshScheduleCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeRoleCustomPermissionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeTemplateAliasCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeTemplateCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeTemplateDefinitionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeTemplatePermissionsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeThemeAliasCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeThemeCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeThemePermissionsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeTopicCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeTopicPermissionsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/ListBrandsCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListCustomPermissionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateBrandAssignmentCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateBrandCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UpdateBrandPublishedVersionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateCustomPermissionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateUserCustomPermissionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +17 -0
- package/dist-types/ts3.4/models/models_2.d.ts +188 -311
- package/dist-types/ts3.4/models/models_3.d.ts +389 -267
- package/dist-types/ts3.4/models/models_4.d.ts +342 -18
- package/dist-types/ts3.4/pagination/ListBrandsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListCustomPermissionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +204 -0
- package/package.json +35 -35
|
@@ -5,6 +5,8 @@ import { CancelIngestionCommandInput, CancelIngestionCommandOutput } from "./com
|
|
|
5
5
|
import { CreateAccountCustomizationCommandInput, CreateAccountCustomizationCommandOutput } from "./commands/CreateAccountCustomizationCommand";
|
|
6
6
|
import { CreateAccountSubscriptionCommandInput, CreateAccountSubscriptionCommandOutput } from "./commands/CreateAccountSubscriptionCommand";
|
|
7
7
|
import { CreateAnalysisCommandInput, CreateAnalysisCommandOutput } from "./commands/CreateAnalysisCommand";
|
|
8
|
+
import { CreateBrandCommandInput, CreateBrandCommandOutput } from "./commands/CreateBrandCommand";
|
|
9
|
+
import { CreateCustomPermissionsCommandInput, CreateCustomPermissionsCommandOutput } from "./commands/CreateCustomPermissionsCommand";
|
|
8
10
|
import { CreateDashboardCommandInput, CreateDashboardCommandOutput } from "./commands/CreateDashboardCommand";
|
|
9
11
|
import { CreateDataSetCommandInput, CreateDataSetCommandOutput } from "./commands/CreateDataSetCommand";
|
|
10
12
|
import { CreateDataSourceCommandInput, CreateDataSourceCommandOutput } from "./commands/CreateDataSourceCommand";
|
|
@@ -27,6 +29,9 @@ import { CreateVPCConnectionCommandInput, CreateVPCConnectionCommandOutput } fro
|
|
|
27
29
|
import { DeleteAccountCustomizationCommandInput, DeleteAccountCustomizationCommandOutput } from "./commands/DeleteAccountCustomizationCommand";
|
|
28
30
|
import { DeleteAccountSubscriptionCommandInput, DeleteAccountSubscriptionCommandOutput } from "./commands/DeleteAccountSubscriptionCommand";
|
|
29
31
|
import { DeleteAnalysisCommandInput, DeleteAnalysisCommandOutput } from "./commands/DeleteAnalysisCommand";
|
|
32
|
+
import { DeleteBrandAssignmentCommandInput, DeleteBrandAssignmentCommandOutput } from "./commands/DeleteBrandAssignmentCommand";
|
|
33
|
+
import { DeleteBrandCommandInput, DeleteBrandCommandOutput } from "./commands/DeleteBrandCommand";
|
|
34
|
+
import { DeleteCustomPermissionsCommandInput, DeleteCustomPermissionsCommandOutput } from "./commands/DeleteCustomPermissionsCommand";
|
|
30
35
|
import { DeleteDashboardCommandInput, DeleteDashboardCommandOutput } from "./commands/DeleteDashboardCommand";
|
|
31
36
|
import { DeleteDataSetCommandInput, DeleteDataSetCommandOutput } from "./commands/DeleteDataSetCommand";
|
|
32
37
|
import { DeleteDataSetRefreshPropertiesCommandInput, DeleteDataSetRefreshPropertiesCommandOutput } from "./commands/DeleteDataSetRefreshPropertiesCommand";
|
|
@@ -49,6 +54,7 @@ import { DeleteTopicCommandInput, DeleteTopicCommandOutput } from "./commands/De
|
|
|
49
54
|
import { DeleteTopicRefreshScheduleCommandInput, DeleteTopicRefreshScheduleCommandOutput } from "./commands/DeleteTopicRefreshScheduleCommand";
|
|
50
55
|
import { DeleteUserByPrincipalIdCommandInput, DeleteUserByPrincipalIdCommandOutput } from "./commands/DeleteUserByPrincipalIdCommand";
|
|
51
56
|
import { DeleteUserCommandInput, DeleteUserCommandOutput } from "./commands/DeleteUserCommand";
|
|
57
|
+
import { DeleteUserCustomPermissionCommandInput, DeleteUserCustomPermissionCommandOutput } from "./commands/DeleteUserCustomPermissionCommand";
|
|
52
58
|
import { DeleteVPCConnectionCommandInput, DeleteVPCConnectionCommandOutput } from "./commands/DeleteVPCConnectionCommand";
|
|
53
59
|
import { DescribeAccountCustomizationCommandInput, DescribeAccountCustomizationCommandOutput } from "./commands/DescribeAccountCustomizationCommand";
|
|
54
60
|
import { DescribeAccountSettingsCommandInput, DescribeAccountSettingsCommandOutput } from "./commands/DescribeAccountSettingsCommand";
|
|
@@ -58,6 +64,10 @@ import { DescribeAnalysisDefinitionCommandInput, DescribeAnalysisDefinitionComma
|
|
|
58
64
|
import { DescribeAnalysisPermissionsCommandInput, DescribeAnalysisPermissionsCommandOutput } from "./commands/DescribeAnalysisPermissionsCommand";
|
|
59
65
|
import { DescribeAssetBundleExportJobCommandInput, DescribeAssetBundleExportJobCommandOutput } from "./commands/DescribeAssetBundleExportJobCommand";
|
|
60
66
|
import { DescribeAssetBundleImportJobCommandInput, DescribeAssetBundleImportJobCommandOutput } from "./commands/DescribeAssetBundleImportJobCommand";
|
|
67
|
+
import { DescribeBrandAssignmentCommandInput, DescribeBrandAssignmentCommandOutput } from "./commands/DescribeBrandAssignmentCommand";
|
|
68
|
+
import { DescribeBrandCommandInput, DescribeBrandCommandOutput } from "./commands/DescribeBrandCommand";
|
|
69
|
+
import { DescribeBrandPublishedVersionCommandInput, DescribeBrandPublishedVersionCommandOutput } from "./commands/DescribeBrandPublishedVersionCommand";
|
|
70
|
+
import { DescribeCustomPermissionsCommandInput, DescribeCustomPermissionsCommandOutput } from "./commands/DescribeCustomPermissionsCommand";
|
|
61
71
|
import { DescribeDashboardCommandInput, DescribeDashboardCommandOutput } from "./commands/DescribeDashboardCommand";
|
|
62
72
|
import { DescribeDashboardDefinitionCommandInput, DescribeDashboardDefinitionCommandOutput } from "./commands/DescribeDashboardDefinitionCommand";
|
|
63
73
|
import { DescribeDashboardPermissionsCommandInput, DescribeDashboardPermissionsCommandOutput } from "./commands/DescribeDashboardPermissionsCommand";
|
|
@@ -101,6 +111,8 @@ import { GetSessionEmbedUrlCommandInput, GetSessionEmbedUrlCommandOutput } from
|
|
|
101
111
|
import { ListAnalysesCommandInput, ListAnalysesCommandOutput } from "./commands/ListAnalysesCommand";
|
|
102
112
|
import { ListAssetBundleExportJobsCommandInput, ListAssetBundleExportJobsCommandOutput } from "./commands/ListAssetBundleExportJobsCommand";
|
|
103
113
|
import { ListAssetBundleImportJobsCommandInput, ListAssetBundleImportJobsCommandOutput } from "./commands/ListAssetBundleImportJobsCommand";
|
|
114
|
+
import { ListBrandsCommandInput, ListBrandsCommandOutput } from "./commands/ListBrandsCommand";
|
|
115
|
+
import { ListCustomPermissionsCommandInput, ListCustomPermissionsCommandOutput } from "./commands/ListCustomPermissionsCommand";
|
|
104
116
|
import { ListDashboardsCommandInput, ListDashboardsCommandOutput } from "./commands/ListDashboardsCommand";
|
|
105
117
|
import { ListDashboardVersionsCommandInput, ListDashboardVersionsCommandOutput } from "./commands/ListDashboardVersionsCommand";
|
|
106
118
|
import { ListDataSetsCommandInput, ListDataSetsCommandOutput } from "./commands/ListDataSetsCommand";
|
|
@@ -149,6 +161,10 @@ import { UpdateAccountCustomizationCommandInput, UpdateAccountCustomizationComma
|
|
|
149
161
|
import { UpdateAccountSettingsCommandInput, UpdateAccountSettingsCommandOutput } from "./commands/UpdateAccountSettingsCommand";
|
|
150
162
|
import { UpdateAnalysisCommandInput, UpdateAnalysisCommandOutput } from "./commands/UpdateAnalysisCommand";
|
|
151
163
|
import { UpdateAnalysisPermissionsCommandInput, UpdateAnalysisPermissionsCommandOutput } from "./commands/UpdateAnalysisPermissionsCommand";
|
|
164
|
+
import { UpdateBrandAssignmentCommandInput, UpdateBrandAssignmentCommandOutput } from "./commands/UpdateBrandAssignmentCommand";
|
|
165
|
+
import { UpdateBrandCommandInput, UpdateBrandCommandOutput } from "./commands/UpdateBrandCommand";
|
|
166
|
+
import { UpdateBrandPublishedVersionCommandInput, UpdateBrandPublishedVersionCommandOutput } from "./commands/UpdateBrandPublishedVersionCommand";
|
|
167
|
+
import { UpdateCustomPermissionsCommandInput, UpdateCustomPermissionsCommandOutput } from "./commands/UpdateCustomPermissionsCommand";
|
|
152
168
|
import { UpdateDashboardCommandInput, UpdateDashboardCommandOutput } from "./commands/UpdateDashboardCommand";
|
|
153
169
|
import { UpdateDashboardLinksCommandInput, UpdateDashboardLinksCommandOutput } from "./commands/UpdateDashboardLinksCommand";
|
|
154
170
|
import { UpdateDashboardPermissionsCommandInput, UpdateDashboardPermissionsCommandOutput } from "./commands/UpdateDashboardPermissionsCommand";
|
|
@@ -179,6 +195,7 @@ import { UpdateTopicCommandInput, UpdateTopicCommandOutput } from "./commands/Up
|
|
|
179
195
|
import { UpdateTopicPermissionsCommandInput, UpdateTopicPermissionsCommandOutput } from "./commands/UpdateTopicPermissionsCommand";
|
|
180
196
|
import { UpdateTopicRefreshScheduleCommandInput, UpdateTopicRefreshScheduleCommandOutput } from "./commands/UpdateTopicRefreshScheduleCommand";
|
|
181
197
|
import { UpdateUserCommandInput, UpdateUserCommandOutput } from "./commands/UpdateUserCommand";
|
|
198
|
+
import { UpdateUserCustomPermissionCommandInput, UpdateUserCustomPermissionCommandOutput } from "./commands/UpdateUserCustomPermissionCommand";
|
|
182
199
|
import { UpdateVPCConnectionCommandInput, UpdateVPCConnectionCommandOutput } from "./commands/UpdateVPCConnectionCommand";
|
|
183
200
|
import { QuickSightClient } from "./QuickSightClient";
|
|
184
201
|
export interface QuickSight {
|
|
@@ -218,6 +235,18 @@ export interface QuickSight {
|
|
|
218
235
|
createAnalysis(args: CreateAnalysisCommandInput, options?: __HttpHandlerOptions): Promise<CreateAnalysisCommandOutput>;
|
|
219
236
|
createAnalysis(args: CreateAnalysisCommandInput, cb: (err: any, data?: CreateAnalysisCommandOutput) => void): void;
|
|
220
237
|
createAnalysis(args: CreateAnalysisCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateAnalysisCommandOutput) => void): void;
|
|
238
|
+
/**
|
|
239
|
+
* @see {@link CreateBrandCommand}
|
|
240
|
+
*/
|
|
241
|
+
createBrand(args: CreateBrandCommandInput, options?: __HttpHandlerOptions): Promise<CreateBrandCommandOutput>;
|
|
242
|
+
createBrand(args: CreateBrandCommandInput, cb: (err: any, data?: CreateBrandCommandOutput) => void): void;
|
|
243
|
+
createBrand(args: CreateBrandCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateBrandCommandOutput) => void): void;
|
|
244
|
+
/**
|
|
245
|
+
* @see {@link CreateCustomPermissionsCommand}
|
|
246
|
+
*/
|
|
247
|
+
createCustomPermissions(args: CreateCustomPermissionsCommandInput, options?: __HttpHandlerOptions): Promise<CreateCustomPermissionsCommandOutput>;
|
|
248
|
+
createCustomPermissions(args: CreateCustomPermissionsCommandInput, cb: (err: any, data?: CreateCustomPermissionsCommandOutput) => void): void;
|
|
249
|
+
createCustomPermissions(args: CreateCustomPermissionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateCustomPermissionsCommandOutput) => void): void;
|
|
221
250
|
/**
|
|
222
251
|
* @see {@link CreateDashboardCommand}
|
|
223
252
|
*/
|
|
@@ -350,6 +379,24 @@ export interface QuickSight {
|
|
|
350
379
|
deleteAnalysis(args: DeleteAnalysisCommandInput, options?: __HttpHandlerOptions): Promise<DeleteAnalysisCommandOutput>;
|
|
351
380
|
deleteAnalysis(args: DeleteAnalysisCommandInput, cb: (err: any, data?: DeleteAnalysisCommandOutput) => void): void;
|
|
352
381
|
deleteAnalysis(args: DeleteAnalysisCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteAnalysisCommandOutput) => void): void;
|
|
382
|
+
/**
|
|
383
|
+
* @see {@link DeleteBrandCommand}
|
|
384
|
+
*/
|
|
385
|
+
deleteBrand(args: DeleteBrandCommandInput, options?: __HttpHandlerOptions): Promise<DeleteBrandCommandOutput>;
|
|
386
|
+
deleteBrand(args: DeleteBrandCommandInput, cb: (err: any, data?: DeleteBrandCommandOutput) => void): void;
|
|
387
|
+
deleteBrand(args: DeleteBrandCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteBrandCommandOutput) => void): void;
|
|
388
|
+
/**
|
|
389
|
+
* @see {@link DeleteBrandAssignmentCommand}
|
|
390
|
+
*/
|
|
391
|
+
deleteBrandAssignment(args: DeleteBrandAssignmentCommandInput, options?: __HttpHandlerOptions): Promise<DeleteBrandAssignmentCommandOutput>;
|
|
392
|
+
deleteBrandAssignment(args: DeleteBrandAssignmentCommandInput, cb: (err: any, data?: DeleteBrandAssignmentCommandOutput) => void): void;
|
|
393
|
+
deleteBrandAssignment(args: DeleteBrandAssignmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteBrandAssignmentCommandOutput) => void): void;
|
|
394
|
+
/**
|
|
395
|
+
* @see {@link DeleteCustomPermissionsCommand}
|
|
396
|
+
*/
|
|
397
|
+
deleteCustomPermissions(args: DeleteCustomPermissionsCommandInput, options?: __HttpHandlerOptions): Promise<DeleteCustomPermissionsCommandOutput>;
|
|
398
|
+
deleteCustomPermissions(args: DeleteCustomPermissionsCommandInput, cb: (err: any, data?: DeleteCustomPermissionsCommandOutput) => void): void;
|
|
399
|
+
deleteCustomPermissions(args: DeleteCustomPermissionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteCustomPermissionsCommandOutput) => void): void;
|
|
353
400
|
/**
|
|
354
401
|
* @see {@link DeleteDashboardCommand}
|
|
355
402
|
*/
|
|
@@ -482,6 +529,12 @@ export interface QuickSight {
|
|
|
482
529
|
deleteUserByPrincipalId(args: DeleteUserByPrincipalIdCommandInput, options?: __HttpHandlerOptions): Promise<DeleteUserByPrincipalIdCommandOutput>;
|
|
483
530
|
deleteUserByPrincipalId(args: DeleteUserByPrincipalIdCommandInput, cb: (err: any, data?: DeleteUserByPrincipalIdCommandOutput) => void): void;
|
|
484
531
|
deleteUserByPrincipalId(args: DeleteUserByPrincipalIdCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteUserByPrincipalIdCommandOutput) => void): void;
|
|
532
|
+
/**
|
|
533
|
+
* @see {@link DeleteUserCustomPermissionCommand}
|
|
534
|
+
*/
|
|
535
|
+
deleteUserCustomPermission(args: DeleteUserCustomPermissionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteUserCustomPermissionCommandOutput>;
|
|
536
|
+
deleteUserCustomPermission(args: DeleteUserCustomPermissionCommandInput, cb: (err: any, data?: DeleteUserCustomPermissionCommandOutput) => void): void;
|
|
537
|
+
deleteUserCustomPermission(args: DeleteUserCustomPermissionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteUserCustomPermissionCommandOutput) => void): void;
|
|
485
538
|
/**
|
|
486
539
|
* @see {@link DeleteVPCConnectionCommand}
|
|
487
540
|
*/
|
|
@@ -536,6 +589,30 @@ export interface QuickSight {
|
|
|
536
589
|
describeAssetBundleImportJob(args: DescribeAssetBundleImportJobCommandInput, options?: __HttpHandlerOptions): Promise<DescribeAssetBundleImportJobCommandOutput>;
|
|
537
590
|
describeAssetBundleImportJob(args: DescribeAssetBundleImportJobCommandInput, cb: (err: any, data?: DescribeAssetBundleImportJobCommandOutput) => void): void;
|
|
538
591
|
describeAssetBundleImportJob(args: DescribeAssetBundleImportJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeAssetBundleImportJobCommandOutput) => void): void;
|
|
592
|
+
/**
|
|
593
|
+
* @see {@link DescribeBrandCommand}
|
|
594
|
+
*/
|
|
595
|
+
describeBrand(args: DescribeBrandCommandInput, options?: __HttpHandlerOptions): Promise<DescribeBrandCommandOutput>;
|
|
596
|
+
describeBrand(args: DescribeBrandCommandInput, cb: (err: any, data?: DescribeBrandCommandOutput) => void): void;
|
|
597
|
+
describeBrand(args: DescribeBrandCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeBrandCommandOutput) => void): void;
|
|
598
|
+
/**
|
|
599
|
+
* @see {@link DescribeBrandAssignmentCommand}
|
|
600
|
+
*/
|
|
601
|
+
describeBrandAssignment(args: DescribeBrandAssignmentCommandInput, options?: __HttpHandlerOptions): Promise<DescribeBrandAssignmentCommandOutput>;
|
|
602
|
+
describeBrandAssignment(args: DescribeBrandAssignmentCommandInput, cb: (err: any, data?: DescribeBrandAssignmentCommandOutput) => void): void;
|
|
603
|
+
describeBrandAssignment(args: DescribeBrandAssignmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeBrandAssignmentCommandOutput) => void): void;
|
|
604
|
+
/**
|
|
605
|
+
* @see {@link DescribeBrandPublishedVersionCommand}
|
|
606
|
+
*/
|
|
607
|
+
describeBrandPublishedVersion(args: DescribeBrandPublishedVersionCommandInput, options?: __HttpHandlerOptions): Promise<DescribeBrandPublishedVersionCommandOutput>;
|
|
608
|
+
describeBrandPublishedVersion(args: DescribeBrandPublishedVersionCommandInput, cb: (err: any, data?: DescribeBrandPublishedVersionCommandOutput) => void): void;
|
|
609
|
+
describeBrandPublishedVersion(args: DescribeBrandPublishedVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeBrandPublishedVersionCommandOutput) => void): void;
|
|
610
|
+
/**
|
|
611
|
+
* @see {@link DescribeCustomPermissionsCommand}
|
|
612
|
+
*/
|
|
613
|
+
describeCustomPermissions(args: DescribeCustomPermissionsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeCustomPermissionsCommandOutput>;
|
|
614
|
+
describeCustomPermissions(args: DescribeCustomPermissionsCommandInput, cb: (err: any, data?: DescribeCustomPermissionsCommandOutput) => void): void;
|
|
615
|
+
describeCustomPermissions(args: DescribeCustomPermissionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeCustomPermissionsCommandOutput) => void): void;
|
|
539
616
|
/**
|
|
540
617
|
* @see {@link DescribeDashboardCommand}
|
|
541
618
|
*/
|
|
@@ -794,6 +871,18 @@ export interface QuickSight {
|
|
|
794
871
|
listAssetBundleImportJobs(args: ListAssetBundleImportJobsCommandInput, options?: __HttpHandlerOptions): Promise<ListAssetBundleImportJobsCommandOutput>;
|
|
795
872
|
listAssetBundleImportJobs(args: ListAssetBundleImportJobsCommandInput, cb: (err: any, data?: ListAssetBundleImportJobsCommandOutput) => void): void;
|
|
796
873
|
listAssetBundleImportJobs(args: ListAssetBundleImportJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAssetBundleImportJobsCommandOutput) => void): void;
|
|
874
|
+
/**
|
|
875
|
+
* @see {@link ListBrandsCommand}
|
|
876
|
+
*/
|
|
877
|
+
listBrands(args: ListBrandsCommandInput, options?: __HttpHandlerOptions): Promise<ListBrandsCommandOutput>;
|
|
878
|
+
listBrands(args: ListBrandsCommandInput, cb: (err: any, data?: ListBrandsCommandOutput) => void): void;
|
|
879
|
+
listBrands(args: ListBrandsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListBrandsCommandOutput) => void): void;
|
|
880
|
+
/**
|
|
881
|
+
* @see {@link ListCustomPermissionsCommand}
|
|
882
|
+
*/
|
|
883
|
+
listCustomPermissions(args: ListCustomPermissionsCommandInput, options?: __HttpHandlerOptions): Promise<ListCustomPermissionsCommandOutput>;
|
|
884
|
+
listCustomPermissions(args: ListCustomPermissionsCommandInput, cb: (err: any, data?: ListCustomPermissionsCommandOutput) => void): void;
|
|
885
|
+
listCustomPermissions(args: ListCustomPermissionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCustomPermissionsCommandOutput) => void): void;
|
|
797
886
|
/**
|
|
798
887
|
* @see {@link ListDashboardsCommand}
|
|
799
888
|
*/
|
|
@@ -1082,6 +1171,30 @@ export interface QuickSight {
|
|
|
1082
1171
|
updateAnalysisPermissions(args: UpdateAnalysisPermissionsCommandInput, options?: __HttpHandlerOptions): Promise<UpdateAnalysisPermissionsCommandOutput>;
|
|
1083
1172
|
updateAnalysisPermissions(args: UpdateAnalysisPermissionsCommandInput, cb: (err: any, data?: UpdateAnalysisPermissionsCommandOutput) => void): void;
|
|
1084
1173
|
updateAnalysisPermissions(args: UpdateAnalysisPermissionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateAnalysisPermissionsCommandOutput) => void): void;
|
|
1174
|
+
/**
|
|
1175
|
+
* @see {@link UpdateBrandCommand}
|
|
1176
|
+
*/
|
|
1177
|
+
updateBrand(args: UpdateBrandCommandInput, options?: __HttpHandlerOptions): Promise<UpdateBrandCommandOutput>;
|
|
1178
|
+
updateBrand(args: UpdateBrandCommandInput, cb: (err: any, data?: UpdateBrandCommandOutput) => void): void;
|
|
1179
|
+
updateBrand(args: UpdateBrandCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateBrandCommandOutput) => void): void;
|
|
1180
|
+
/**
|
|
1181
|
+
* @see {@link UpdateBrandAssignmentCommand}
|
|
1182
|
+
*/
|
|
1183
|
+
updateBrandAssignment(args: UpdateBrandAssignmentCommandInput, options?: __HttpHandlerOptions): Promise<UpdateBrandAssignmentCommandOutput>;
|
|
1184
|
+
updateBrandAssignment(args: UpdateBrandAssignmentCommandInput, cb: (err: any, data?: UpdateBrandAssignmentCommandOutput) => void): void;
|
|
1185
|
+
updateBrandAssignment(args: UpdateBrandAssignmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateBrandAssignmentCommandOutput) => void): void;
|
|
1186
|
+
/**
|
|
1187
|
+
* @see {@link UpdateBrandPublishedVersionCommand}
|
|
1188
|
+
*/
|
|
1189
|
+
updateBrandPublishedVersion(args: UpdateBrandPublishedVersionCommandInput, options?: __HttpHandlerOptions): Promise<UpdateBrandPublishedVersionCommandOutput>;
|
|
1190
|
+
updateBrandPublishedVersion(args: UpdateBrandPublishedVersionCommandInput, cb: (err: any, data?: UpdateBrandPublishedVersionCommandOutput) => void): void;
|
|
1191
|
+
updateBrandPublishedVersion(args: UpdateBrandPublishedVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateBrandPublishedVersionCommandOutput) => void): void;
|
|
1192
|
+
/**
|
|
1193
|
+
* @see {@link UpdateCustomPermissionsCommand}
|
|
1194
|
+
*/
|
|
1195
|
+
updateCustomPermissions(args: UpdateCustomPermissionsCommandInput, options?: __HttpHandlerOptions): Promise<UpdateCustomPermissionsCommandOutput>;
|
|
1196
|
+
updateCustomPermissions(args: UpdateCustomPermissionsCommandInput, cb: (err: any, data?: UpdateCustomPermissionsCommandOutput) => void): void;
|
|
1197
|
+
updateCustomPermissions(args: UpdateCustomPermissionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateCustomPermissionsCommandOutput) => void): void;
|
|
1085
1198
|
/**
|
|
1086
1199
|
* @see {@link UpdateDashboardCommand}
|
|
1087
1200
|
*/
|
|
@@ -1262,6 +1375,12 @@ export interface QuickSight {
|
|
|
1262
1375
|
updateUser(args: UpdateUserCommandInput, options?: __HttpHandlerOptions): Promise<UpdateUserCommandOutput>;
|
|
1263
1376
|
updateUser(args: UpdateUserCommandInput, cb: (err: any, data?: UpdateUserCommandOutput) => void): void;
|
|
1264
1377
|
updateUser(args: UpdateUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateUserCommandOutput) => void): void;
|
|
1378
|
+
/**
|
|
1379
|
+
* @see {@link UpdateUserCustomPermissionCommand}
|
|
1380
|
+
*/
|
|
1381
|
+
updateUserCustomPermission(args: UpdateUserCustomPermissionCommandInput, options?: __HttpHandlerOptions): Promise<UpdateUserCustomPermissionCommandOutput>;
|
|
1382
|
+
updateUserCustomPermission(args: UpdateUserCustomPermissionCommandInput, cb: (err: any, data?: UpdateUserCustomPermissionCommandOutput) => void): void;
|
|
1383
|
+
updateUserCustomPermission(args: UpdateUserCustomPermissionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateUserCustomPermissionCommandOutput) => void): void;
|
|
1265
1384
|
/**
|
|
1266
1385
|
* @see {@link UpdateVPCConnectionCommand}
|
|
1267
1386
|
*/
|
|
@@ -13,6 +13,8 @@ import { CancelIngestionCommandInput, CancelIngestionCommandOutput } from "./com
|
|
|
13
13
|
import { CreateAccountCustomizationCommandInput, CreateAccountCustomizationCommandOutput } from "./commands/CreateAccountCustomizationCommand";
|
|
14
14
|
import { CreateAccountSubscriptionCommandInput, CreateAccountSubscriptionCommandOutput } from "./commands/CreateAccountSubscriptionCommand";
|
|
15
15
|
import { CreateAnalysisCommandInput, CreateAnalysisCommandOutput } from "./commands/CreateAnalysisCommand";
|
|
16
|
+
import { CreateBrandCommandInput, CreateBrandCommandOutput } from "./commands/CreateBrandCommand";
|
|
17
|
+
import { CreateCustomPermissionsCommandInput, CreateCustomPermissionsCommandOutput } from "./commands/CreateCustomPermissionsCommand";
|
|
16
18
|
import { CreateDashboardCommandInput, CreateDashboardCommandOutput } from "./commands/CreateDashboardCommand";
|
|
17
19
|
import { CreateDataSetCommandInput, CreateDataSetCommandOutput } from "./commands/CreateDataSetCommand";
|
|
18
20
|
import { CreateDataSourceCommandInput, CreateDataSourceCommandOutput } from "./commands/CreateDataSourceCommand";
|
|
@@ -35,6 +37,9 @@ import { CreateVPCConnectionCommandInput, CreateVPCConnectionCommandOutput } fro
|
|
|
35
37
|
import { DeleteAccountCustomizationCommandInput, DeleteAccountCustomizationCommandOutput } from "./commands/DeleteAccountCustomizationCommand";
|
|
36
38
|
import { DeleteAccountSubscriptionCommandInput, DeleteAccountSubscriptionCommandOutput } from "./commands/DeleteAccountSubscriptionCommand";
|
|
37
39
|
import { DeleteAnalysisCommandInput, DeleteAnalysisCommandOutput } from "./commands/DeleteAnalysisCommand";
|
|
40
|
+
import { DeleteBrandAssignmentCommandInput, DeleteBrandAssignmentCommandOutput } from "./commands/DeleteBrandAssignmentCommand";
|
|
41
|
+
import { DeleteBrandCommandInput, DeleteBrandCommandOutput } from "./commands/DeleteBrandCommand";
|
|
42
|
+
import { DeleteCustomPermissionsCommandInput, DeleteCustomPermissionsCommandOutput } from "./commands/DeleteCustomPermissionsCommand";
|
|
38
43
|
import { DeleteDashboardCommandInput, DeleteDashboardCommandOutput } from "./commands/DeleteDashboardCommand";
|
|
39
44
|
import { DeleteDataSetCommandInput, DeleteDataSetCommandOutput } from "./commands/DeleteDataSetCommand";
|
|
40
45
|
import { DeleteDataSetRefreshPropertiesCommandInput, DeleteDataSetRefreshPropertiesCommandOutput } from "./commands/DeleteDataSetRefreshPropertiesCommand";
|
|
@@ -57,6 +62,7 @@ import { DeleteTopicCommandInput, DeleteTopicCommandOutput } from "./commands/De
|
|
|
57
62
|
import { DeleteTopicRefreshScheduleCommandInput, DeleteTopicRefreshScheduleCommandOutput } from "./commands/DeleteTopicRefreshScheduleCommand";
|
|
58
63
|
import { DeleteUserByPrincipalIdCommandInput, DeleteUserByPrincipalIdCommandOutput } from "./commands/DeleteUserByPrincipalIdCommand";
|
|
59
64
|
import { DeleteUserCommandInput, DeleteUserCommandOutput } from "./commands/DeleteUserCommand";
|
|
65
|
+
import { DeleteUserCustomPermissionCommandInput, DeleteUserCustomPermissionCommandOutput } from "./commands/DeleteUserCustomPermissionCommand";
|
|
60
66
|
import { DeleteVPCConnectionCommandInput, DeleteVPCConnectionCommandOutput } from "./commands/DeleteVPCConnectionCommand";
|
|
61
67
|
import { DescribeAccountCustomizationCommandInput, DescribeAccountCustomizationCommandOutput } from "./commands/DescribeAccountCustomizationCommand";
|
|
62
68
|
import { DescribeAccountSettingsCommandInput, DescribeAccountSettingsCommandOutput } from "./commands/DescribeAccountSettingsCommand";
|
|
@@ -66,6 +72,10 @@ import { DescribeAnalysisDefinitionCommandInput, DescribeAnalysisDefinitionComma
|
|
|
66
72
|
import { DescribeAnalysisPermissionsCommandInput, DescribeAnalysisPermissionsCommandOutput } from "./commands/DescribeAnalysisPermissionsCommand";
|
|
67
73
|
import { DescribeAssetBundleExportJobCommandInput, DescribeAssetBundleExportJobCommandOutput } from "./commands/DescribeAssetBundleExportJobCommand";
|
|
68
74
|
import { DescribeAssetBundleImportJobCommandInput, DescribeAssetBundleImportJobCommandOutput } from "./commands/DescribeAssetBundleImportJobCommand";
|
|
75
|
+
import { DescribeBrandAssignmentCommandInput, DescribeBrandAssignmentCommandOutput } from "./commands/DescribeBrandAssignmentCommand";
|
|
76
|
+
import { DescribeBrandCommandInput, DescribeBrandCommandOutput } from "./commands/DescribeBrandCommand";
|
|
77
|
+
import { DescribeBrandPublishedVersionCommandInput, DescribeBrandPublishedVersionCommandOutput } from "./commands/DescribeBrandPublishedVersionCommand";
|
|
78
|
+
import { DescribeCustomPermissionsCommandInput, DescribeCustomPermissionsCommandOutput } from "./commands/DescribeCustomPermissionsCommand";
|
|
69
79
|
import { DescribeDashboardCommandInput, DescribeDashboardCommandOutput } from "./commands/DescribeDashboardCommand";
|
|
70
80
|
import { DescribeDashboardDefinitionCommandInput, DescribeDashboardDefinitionCommandOutput } from "./commands/DescribeDashboardDefinitionCommand";
|
|
71
81
|
import { DescribeDashboardPermissionsCommandInput, DescribeDashboardPermissionsCommandOutput } from "./commands/DescribeDashboardPermissionsCommand";
|
|
@@ -109,6 +119,8 @@ import { GetSessionEmbedUrlCommandInput, GetSessionEmbedUrlCommandOutput } from
|
|
|
109
119
|
import { ListAnalysesCommandInput, ListAnalysesCommandOutput } from "./commands/ListAnalysesCommand";
|
|
110
120
|
import { ListAssetBundleExportJobsCommandInput, ListAssetBundleExportJobsCommandOutput } from "./commands/ListAssetBundleExportJobsCommand";
|
|
111
121
|
import { ListAssetBundleImportJobsCommandInput, ListAssetBundleImportJobsCommandOutput } from "./commands/ListAssetBundleImportJobsCommand";
|
|
122
|
+
import { ListBrandsCommandInput, ListBrandsCommandOutput } from "./commands/ListBrandsCommand";
|
|
123
|
+
import { ListCustomPermissionsCommandInput, ListCustomPermissionsCommandOutput } from "./commands/ListCustomPermissionsCommand";
|
|
112
124
|
import { ListDashboardsCommandInput, ListDashboardsCommandOutput } from "./commands/ListDashboardsCommand";
|
|
113
125
|
import { ListDashboardVersionsCommandInput, ListDashboardVersionsCommandOutput } from "./commands/ListDashboardVersionsCommand";
|
|
114
126
|
import { ListDataSetsCommandInput, ListDataSetsCommandOutput } from "./commands/ListDataSetsCommand";
|
|
@@ -157,6 +169,10 @@ import { UpdateAccountCustomizationCommandInput, UpdateAccountCustomizationComma
|
|
|
157
169
|
import { UpdateAccountSettingsCommandInput, UpdateAccountSettingsCommandOutput } from "./commands/UpdateAccountSettingsCommand";
|
|
158
170
|
import { UpdateAnalysisCommandInput, UpdateAnalysisCommandOutput } from "./commands/UpdateAnalysisCommand";
|
|
159
171
|
import { UpdateAnalysisPermissionsCommandInput, UpdateAnalysisPermissionsCommandOutput } from "./commands/UpdateAnalysisPermissionsCommand";
|
|
172
|
+
import { UpdateBrandAssignmentCommandInput, UpdateBrandAssignmentCommandOutput } from "./commands/UpdateBrandAssignmentCommand";
|
|
173
|
+
import { UpdateBrandCommandInput, UpdateBrandCommandOutput } from "./commands/UpdateBrandCommand";
|
|
174
|
+
import { UpdateBrandPublishedVersionCommandInput, UpdateBrandPublishedVersionCommandOutput } from "./commands/UpdateBrandPublishedVersionCommand";
|
|
175
|
+
import { UpdateCustomPermissionsCommandInput, UpdateCustomPermissionsCommandOutput } from "./commands/UpdateCustomPermissionsCommand";
|
|
160
176
|
import { UpdateDashboardCommandInput, UpdateDashboardCommandOutput } from "./commands/UpdateDashboardCommand";
|
|
161
177
|
import { UpdateDashboardLinksCommandInput, UpdateDashboardLinksCommandOutput } from "./commands/UpdateDashboardLinksCommand";
|
|
162
178
|
import { UpdateDashboardPermissionsCommandInput, UpdateDashboardPermissionsCommandOutput } from "./commands/UpdateDashboardPermissionsCommand";
|
|
@@ -187,6 +203,7 @@ import { UpdateTopicCommandInput, UpdateTopicCommandOutput } from "./commands/Up
|
|
|
187
203
|
import { UpdateTopicPermissionsCommandInput, UpdateTopicPermissionsCommandOutput } from "./commands/UpdateTopicPermissionsCommand";
|
|
188
204
|
import { UpdateTopicRefreshScheduleCommandInput, UpdateTopicRefreshScheduleCommandOutput } from "./commands/UpdateTopicRefreshScheduleCommand";
|
|
189
205
|
import { UpdateUserCommandInput, UpdateUserCommandOutput } from "./commands/UpdateUserCommand";
|
|
206
|
+
import { UpdateUserCustomPermissionCommandInput, UpdateUserCustomPermissionCommandOutput } from "./commands/UpdateUserCustomPermissionCommand";
|
|
190
207
|
import { UpdateVPCConnectionCommandInput, UpdateVPCConnectionCommandOutput } from "./commands/UpdateVPCConnectionCommand";
|
|
191
208
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
192
209
|
import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
@@ -194,11 +211,11 @@ export { __Client };
|
|
|
194
211
|
/**
|
|
195
212
|
* @public
|
|
196
213
|
*/
|
|
197
|
-
export type ServiceInputTypes = BatchCreateTopicReviewedAnswerCommandInput | BatchDeleteTopicReviewedAnswerCommandInput | CancelIngestionCommandInput | CreateAccountCustomizationCommandInput | CreateAccountSubscriptionCommandInput | CreateAnalysisCommandInput | CreateDashboardCommandInput | CreateDataSetCommandInput | CreateDataSourceCommandInput | CreateFolderCommandInput | CreateFolderMembershipCommandInput | CreateGroupCommandInput | CreateGroupMembershipCommandInput | CreateIAMPolicyAssignmentCommandInput | CreateIngestionCommandInput | CreateNamespaceCommandInput | CreateRefreshScheduleCommandInput | CreateRoleMembershipCommandInput | CreateTemplateAliasCommandInput | CreateTemplateCommandInput | CreateThemeAliasCommandInput | CreateThemeCommandInput | CreateTopicCommandInput | CreateTopicRefreshScheduleCommandInput | CreateVPCConnectionCommandInput | DeleteAccountCustomizationCommandInput | DeleteAccountSubscriptionCommandInput | DeleteAnalysisCommandInput | DeleteDashboardCommandInput | DeleteDataSetCommandInput | DeleteDataSetRefreshPropertiesCommandInput | DeleteDataSourceCommandInput | DeleteFolderCommandInput | DeleteFolderMembershipCommandInput | DeleteGroupCommandInput | DeleteGroupMembershipCommandInput | DeleteIAMPolicyAssignmentCommandInput | DeleteIdentityPropagationConfigCommandInput | DeleteNamespaceCommandInput | DeleteRefreshScheduleCommandInput | DeleteRoleCustomPermissionCommandInput | DeleteRoleMembershipCommandInput | DeleteTemplateAliasCommandInput | DeleteTemplateCommandInput | DeleteThemeAliasCommandInput | DeleteThemeCommandInput | DeleteTopicCommandInput | DeleteTopicRefreshScheduleCommandInput | DeleteUserByPrincipalIdCommandInput | DeleteUserCommandInput | DeleteVPCConnectionCommandInput | DescribeAccountCustomizationCommandInput | DescribeAccountSettingsCommandInput | DescribeAccountSubscriptionCommandInput | DescribeAnalysisCommandInput | DescribeAnalysisDefinitionCommandInput | DescribeAnalysisPermissionsCommandInput | DescribeAssetBundleExportJobCommandInput | DescribeAssetBundleImportJobCommandInput | DescribeDashboardCommandInput | DescribeDashboardDefinitionCommandInput | DescribeDashboardPermissionsCommandInput | DescribeDashboardSnapshotJobCommandInput | DescribeDashboardSnapshotJobResultCommandInput | DescribeDataSetCommandInput | DescribeDataSetPermissionsCommandInput | DescribeDataSetRefreshPropertiesCommandInput | DescribeDataSourceCommandInput | DescribeDataSourcePermissionsCommandInput | DescribeFolderCommandInput | DescribeFolderPermissionsCommandInput | DescribeFolderResolvedPermissionsCommandInput | DescribeGroupCommandInput | DescribeGroupMembershipCommandInput | DescribeIAMPolicyAssignmentCommandInput | DescribeIngestionCommandInput | DescribeIpRestrictionCommandInput | DescribeKeyRegistrationCommandInput | DescribeNamespaceCommandInput | DescribeQPersonalizationConfigurationCommandInput | DescribeRefreshScheduleCommandInput | DescribeRoleCustomPermissionCommandInput | DescribeTemplateAliasCommandInput | DescribeTemplateCommandInput | DescribeTemplateDefinitionCommandInput | DescribeTemplatePermissionsCommandInput | DescribeThemeAliasCommandInput | DescribeThemeCommandInput | DescribeThemePermissionsCommandInput | DescribeTopicCommandInput | DescribeTopicPermissionsCommandInput | DescribeTopicRefreshCommandInput | DescribeTopicRefreshScheduleCommandInput | DescribeUserCommandInput | DescribeVPCConnectionCommandInput | GenerateEmbedUrlForAnonymousUserCommandInput | GenerateEmbedUrlForRegisteredUserCommandInput | GetDashboardEmbedUrlCommandInput | GetSessionEmbedUrlCommandInput | ListAnalysesCommandInput | ListAssetBundleExportJobsCommandInput | ListAssetBundleImportJobsCommandInput | ListDashboardVersionsCommandInput | ListDashboardsCommandInput | ListDataSetsCommandInput | ListDataSourcesCommandInput | ListFolderMembersCommandInput | ListFoldersCommandInput | ListFoldersForResourceCommandInput | ListGroupMembershipsCommandInput | ListGroupsCommandInput | ListIAMPolicyAssignmentsCommandInput | ListIAMPolicyAssignmentsForUserCommandInput | ListIdentityPropagationConfigsCommandInput | ListIngestionsCommandInput | ListNamespacesCommandInput | ListRefreshSchedulesCommandInput | ListRoleMembershipsCommandInput | ListTagsForResourceCommandInput | ListTemplateAliasesCommandInput | ListTemplateVersionsCommandInput | ListTemplatesCommandInput | ListThemeAliasesCommandInput | ListThemeVersionsCommandInput | ListThemesCommandInput | ListTopicRefreshSchedulesCommandInput | ListTopicReviewedAnswersCommandInput | ListTopicsCommandInput | ListUserGroupsCommandInput | ListUsersCommandInput | ListVPCConnectionsCommandInput | PutDataSetRefreshPropertiesCommandInput | RegisterUserCommandInput | RestoreAnalysisCommandInput | SearchAnalysesCommandInput | SearchDashboardsCommandInput | SearchDataSetsCommandInput | SearchDataSourcesCommandInput | SearchFoldersCommandInput | SearchGroupsCommandInput | StartAssetBundleExportJobCommandInput | StartAssetBundleImportJobCommandInput | StartDashboardSnapshotJobCommandInput | StartDashboardSnapshotJobScheduleCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAccountCustomizationCommandInput | UpdateAccountSettingsCommandInput | UpdateAnalysisCommandInput | UpdateAnalysisPermissionsCommandInput | UpdateDashboardCommandInput | UpdateDashboardLinksCommandInput | UpdateDashboardPermissionsCommandInput | UpdateDashboardPublishedVersionCommandInput | UpdateDataSetCommandInput | UpdateDataSetPermissionsCommandInput | UpdateDataSourceCommandInput | UpdateDataSourcePermissionsCommandInput | UpdateFolderCommandInput | UpdateFolderPermissionsCommandInput | UpdateGroupCommandInput | UpdateIAMPolicyAssignmentCommandInput | UpdateIdentityPropagationConfigCommandInput | UpdateIpRestrictionCommandInput | UpdateKeyRegistrationCommandInput | UpdatePublicSharingSettingsCommandInput | UpdateQPersonalizationConfigurationCommandInput | UpdateRefreshScheduleCommandInput | UpdateRoleCustomPermissionCommandInput | UpdateSPICECapacityConfigurationCommandInput | UpdateTemplateAliasCommandInput | UpdateTemplateCommandInput | UpdateTemplatePermissionsCommandInput | UpdateThemeAliasCommandInput | UpdateThemeCommandInput | UpdateThemePermissionsCommandInput | UpdateTopicCommandInput | UpdateTopicPermissionsCommandInput | UpdateTopicRefreshScheduleCommandInput | UpdateUserCommandInput | UpdateVPCConnectionCommandInput;
|
|
214
|
+
export type ServiceInputTypes = BatchCreateTopicReviewedAnswerCommandInput | BatchDeleteTopicReviewedAnswerCommandInput | CancelIngestionCommandInput | CreateAccountCustomizationCommandInput | CreateAccountSubscriptionCommandInput | CreateAnalysisCommandInput | CreateBrandCommandInput | CreateCustomPermissionsCommandInput | CreateDashboardCommandInput | CreateDataSetCommandInput | CreateDataSourceCommandInput | CreateFolderCommandInput | CreateFolderMembershipCommandInput | CreateGroupCommandInput | CreateGroupMembershipCommandInput | CreateIAMPolicyAssignmentCommandInput | CreateIngestionCommandInput | CreateNamespaceCommandInput | CreateRefreshScheduleCommandInput | CreateRoleMembershipCommandInput | CreateTemplateAliasCommandInput | CreateTemplateCommandInput | CreateThemeAliasCommandInput | CreateThemeCommandInput | CreateTopicCommandInput | CreateTopicRefreshScheduleCommandInput | CreateVPCConnectionCommandInput | DeleteAccountCustomizationCommandInput | DeleteAccountSubscriptionCommandInput | DeleteAnalysisCommandInput | DeleteBrandAssignmentCommandInput | DeleteBrandCommandInput | DeleteCustomPermissionsCommandInput | DeleteDashboardCommandInput | DeleteDataSetCommandInput | DeleteDataSetRefreshPropertiesCommandInput | DeleteDataSourceCommandInput | DeleteFolderCommandInput | DeleteFolderMembershipCommandInput | DeleteGroupCommandInput | DeleteGroupMembershipCommandInput | DeleteIAMPolicyAssignmentCommandInput | DeleteIdentityPropagationConfigCommandInput | DeleteNamespaceCommandInput | DeleteRefreshScheduleCommandInput | DeleteRoleCustomPermissionCommandInput | DeleteRoleMembershipCommandInput | DeleteTemplateAliasCommandInput | DeleteTemplateCommandInput | DeleteThemeAliasCommandInput | DeleteThemeCommandInput | DeleteTopicCommandInput | DeleteTopicRefreshScheduleCommandInput | DeleteUserByPrincipalIdCommandInput | DeleteUserCommandInput | DeleteUserCustomPermissionCommandInput | DeleteVPCConnectionCommandInput | DescribeAccountCustomizationCommandInput | DescribeAccountSettingsCommandInput | DescribeAccountSubscriptionCommandInput | DescribeAnalysisCommandInput | DescribeAnalysisDefinitionCommandInput | DescribeAnalysisPermissionsCommandInput | DescribeAssetBundleExportJobCommandInput | DescribeAssetBundleImportJobCommandInput | DescribeBrandAssignmentCommandInput | DescribeBrandCommandInput | DescribeBrandPublishedVersionCommandInput | DescribeCustomPermissionsCommandInput | DescribeDashboardCommandInput | DescribeDashboardDefinitionCommandInput | DescribeDashboardPermissionsCommandInput | DescribeDashboardSnapshotJobCommandInput | DescribeDashboardSnapshotJobResultCommandInput | DescribeDataSetCommandInput | DescribeDataSetPermissionsCommandInput | DescribeDataSetRefreshPropertiesCommandInput | DescribeDataSourceCommandInput | DescribeDataSourcePermissionsCommandInput | DescribeFolderCommandInput | DescribeFolderPermissionsCommandInput | DescribeFolderResolvedPermissionsCommandInput | DescribeGroupCommandInput | DescribeGroupMembershipCommandInput | DescribeIAMPolicyAssignmentCommandInput | DescribeIngestionCommandInput | DescribeIpRestrictionCommandInput | DescribeKeyRegistrationCommandInput | DescribeNamespaceCommandInput | DescribeQPersonalizationConfigurationCommandInput | DescribeRefreshScheduleCommandInput | DescribeRoleCustomPermissionCommandInput | DescribeTemplateAliasCommandInput | DescribeTemplateCommandInput | DescribeTemplateDefinitionCommandInput | DescribeTemplatePermissionsCommandInput | DescribeThemeAliasCommandInput | DescribeThemeCommandInput | DescribeThemePermissionsCommandInput | DescribeTopicCommandInput | DescribeTopicPermissionsCommandInput | DescribeTopicRefreshCommandInput | DescribeTopicRefreshScheduleCommandInput | DescribeUserCommandInput | DescribeVPCConnectionCommandInput | GenerateEmbedUrlForAnonymousUserCommandInput | GenerateEmbedUrlForRegisteredUserCommandInput | GetDashboardEmbedUrlCommandInput | GetSessionEmbedUrlCommandInput | ListAnalysesCommandInput | ListAssetBundleExportJobsCommandInput | ListAssetBundleImportJobsCommandInput | ListBrandsCommandInput | ListCustomPermissionsCommandInput | ListDashboardVersionsCommandInput | ListDashboardsCommandInput | ListDataSetsCommandInput | ListDataSourcesCommandInput | ListFolderMembersCommandInput | ListFoldersCommandInput | ListFoldersForResourceCommandInput | ListGroupMembershipsCommandInput | ListGroupsCommandInput | ListIAMPolicyAssignmentsCommandInput | ListIAMPolicyAssignmentsForUserCommandInput | ListIdentityPropagationConfigsCommandInput | ListIngestionsCommandInput | ListNamespacesCommandInput | ListRefreshSchedulesCommandInput | ListRoleMembershipsCommandInput | ListTagsForResourceCommandInput | ListTemplateAliasesCommandInput | ListTemplateVersionsCommandInput | ListTemplatesCommandInput | ListThemeAliasesCommandInput | ListThemeVersionsCommandInput | ListThemesCommandInput | ListTopicRefreshSchedulesCommandInput | ListTopicReviewedAnswersCommandInput | ListTopicsCommandInput | ListUserGroupsCommandInput | ListUsersCommandInput | ListVPCConnectionsCommandInput | PutDataSetRefreshPropertiesCommandInput | RegisterUserCommandInput | RestoreAnalysisCommandInput | SearchAnalysesCommandInput | SearchDashboardsCommandInput | SearchDataSetsCommandInput | SearchDataSourcesCommandInput | SearchFoldersCommandInput | SearchGroupsCommandInput | StartAssetBundleExportJobCommandInput | StartAssetBundleImportJobCommandInput | StartDashboardSnapshotJobCommandInput | StartDashboardSnapshotJobScheduleCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAccountCustomizationCommandInput | UpdateAccountSettingsCommandInput | UpdateAnalysisCommandInput | UpdateAnalysisPermissionsCommandInput | UpdateBrandAssignmentCommandInput | UpdateBrandCommandInput | UpdateBrandPublishedVersionCommandInput | UpdateCustomPermissionsCommandInput | UpdateDashboardCommandInput | UpdateDashboardLinksCommandInput | UpdateDashboardPermissionsCommandInput | UpdateDashboardPublishedVersionCommandInput | UpdateDataSetCommandInput | UpdateDataSetPermissionsCommandInput | UpdateDataSourceCommandInput | UpdateDataSourcePermissionsCommandInput | UpdateFolderCommandInput | UpdateFolderPermissionsCommandInput | UpdateGroupCommandInput | UpdateIAMPolicyAssignmentCommandInput | UpdateIdentityPropagationConfigCommandInput | UpdateIpRestrictionCommandInput | UpdateKeyRegistrationCommandInput | UpdatePublicSharingSettingsCommandInput | UpdateQPersonalizationConfigurationCommandInput | UpdateRefreshScheduleCommandInput | UpdateRoleCustomPermissionCommandInput | UpdateSPICECapacityConfigurationCommandInput | UpdateTemplateAliasCommandInput | UpdateTemplateCommandInput | UpdateTemplatePermissionsCommandInput | UpdateThemeAliasCommandInput | UpdateThemeCommandInput | UpdateThemePermissionsCommandInput | UpdateTopicCommandInput | UpdateTopicPermissionsCommandInput | UpdateTopicRefreshScheduleCommandInput | UpdateUserCommandInput | UpdateUserCustomPermissionCommandInput | UpdateVPCConnectionCommandInput;
|
|
198
215
|
/**
|
|
199
216
|
* @public
|
|
200
217
|
*/
|
|
201
|
-
export type ServiceOutputTypes = BatchCreateTopicReviewedAnswerCommandOutput | BatchDeleteTopicReviewedAnswerCommandOutput | CancelIngestionCommandOutput | CreateAccountCustomizationCommandOutput | CreateAccountSubscriptionCommandOutput | CreateAnalysisCommandOutput | CreateDashboardCommandOutput | CreateDataSetCommandOutput | CreateDataSourceCommandOutput | CreateFolderCommandOutput | CreateFolderMembershipCommandOutput | CreateGroupCommandOutput | CreateGroupMembershipCommandOutput | CreateIAMPolicyAssignmentCommandOutput | CreateIngestionCommandOutput | CreateNamespaceCommandOutput | CreateRefreshScheduleCommandOutput | CreateRoleMembershipCommandOutput | CreateTemplateAliasCommandOutput | CreateTemplateCommandOutput | CreateThemeAliasCommandOutput | CreateThemeCommandOutput | CreateTopicCommandOutput | CreateTopicRefreshScheduleCommandOutput | CreateVPCConnectionCommandOutput | DeleteAccountCustomizationCommandOutput | DeleteAccountSubscriptionCommandOutput | DeleteAnalysisCommandOutput | DeleteDashboardCommandOutput | DeleteDataSetCommandOutput | DeleteDataSetRefreshPropertiesCommandOutput | DeleteDataSourceCommandOutput | DeleteFolderCommandOutput | DeleteFolderMembershipCommandOutput | DeleteGroupCommandOutput | DeleteGroupMembershipCommandOutput | DeleteIAMPolicyAssignmentCommandOutput | DeleteIdentityPropagationConfigCommandOutput | DeleteNamespaceCommandOutput | DeleteRefreshScheduleCommandOutput | DeleteRoleCustomPermissionCommandOutput | DeleteRoleMembershipCommandOutput | DeleteTemplateAliasCommandOutput | DeleteTemplateCommandOutput | DeleteThemeAliasCommandOutput | DeleteThemeCommandOutput | DeleteTopicCommandOutput | DeleteTopicRefreshScheduleCommandOutput | DeleteUserByPrincipalIdCommandOutput | DeleteUserCommandOutput | DeleteVPCConnectionCommandOutput | DescribeAccountCustomizationCommandOutput | DescribeAccountSettingsCommandOutput | DescribeAccountSubscriptionCommandOutput | DescribeAnalysisCommandOutput | DescribeAnalysisDefinitionCommandOutput | DescribeAnalysisPermissionsCommandOutput | DescribeAssetBundleExportJobCommandOutput | DescribeAssetBundleImportJobCommandOutput | DescribeDashboardCommandOutput | DescribeDashboardDefinitionCommandOutput | DescribeDashboardPermissionsCommandOutput | DescribeDashboardSnapshotJobCommandOutput | DescribeDashboardSnapshotJobResultCommandOutput | DescribeDataSetCommandOutput | DescribeDataSetPermissionsCommandOutput | DescribeDataSetRefreshPropertiesCommandOutput | DescribeDataSourceCommandOutput | DescribeDataSourcePermissionsCommandOutput | DescribeFolderCommandOutput | DescribeFolderPermissionsCommandOutput | DescribeFolderResolvedPermissionsCommandOutput | DescribeGroupCommandOutput | DescribeGroupMembershipCommandOutput | DescribeIAMPolicyAssignmentCommandOutput | DescribeIngestionCommandOutput | DescribeIpRestrictionCommandOutput | DescribeKeyRegistrationCommandOutput | DescribeNamespaceCommandOutput | DescribeQPersonalizationConfigurationCommandOutput | DescribeRefreshScheduleCommandOutput | DescribeRoleCustomPermissionCommandOutput | DescribeTemplateAliasCommandOutput | DescribeTemplateCommandOutput | DescribeTemplateDefinitionCommandOutput | DescribeTemplatePermissionsCommandOutput | DescribeThemeAliasCommandOutput | DescribeThemeCommandOutput | DescribeThemePermissionsCommandOutput | DescribeTopicCommandOutput | DescribeTopicPermissionsCommandOutput | DescribeTopicRefreshCommandOutput | DescribeTopicRefreshScheduleCommandOutput | DescribeUserCommandOutput | DescribeVPCConnectionCommandOutput | GenerateEmbedUrlForAnonymousUserCommandOutput | GenerateEmbedUrlForRegisteredUserCommandOutput | GetDashboardEmbedUrlCommandOutput | GetSessionEmbedUrlCommandOutput | ListAnalysesCommandOutput | ListAssetBundleExportJobsCommandOutput | ListAssetBundleImportJobsCommandOutput | ListDashboardVersionsCommandOutput | ListDashboardsCommandOutput | ListDataSetsCommandOutput | ListDataSourcesCommandOutput | ListFolderMembersCommandOutput | ListFoldersCommandOutput | ListFoldersForResourceCommandOutput | ListGroupMembershipsCommandOutput | ListGroupsCommandOutput | ListIAMPolicyAssignmentsCommandOutput | ListIAMPolicyAssignmentsForUserCommandOutput | ListIdentityPropagationConfigsCommandOutput | ListIngestionsCommandOutput | ListNamespacesCommandOutput | ListRefreshSchedulesCommandOutput | ListRoleMembershipsCommandOutput | ListTagsForResourceCommandOutput | ListTemplateAliasesCommandOutput | ListTemplateVersionsCommandOutput | ListTemplatesCommandOutput | ListThemeAliasesCommandOutput | ListThemeVersionsCommandOutput | ListThemesCommandOutput | ListTopicRefreshSchedulesCommandOutput | ListTopicReviewedAnswersCommandOutput | ListTopicsCommandOutput | ListUserGroupsCommandOutput | ListUsersCommandOutput | ListVPCConnectionsCommandOutput | PutDataSetRefreshPropertiesCommandOutput | RegisterUserCommandOutput | RestoreAnalysisCommandOutput | SearchAnalysesCommandOutput | SearchDashboardsCommandOutput | SearchDataSetsCommandOutput | SearchDataSourcesCommandOutput | SearchFoldersCommandOutput | SearchGroupsCommandOutput | StartAssetBundleExportJobCommandOutput | StartAssetBundleImportJobCommandOutput | StartDashboardSnapshotJobCommandOutput | StartDashboardSnapshotJobScheduleCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAccountCustomizationCommandOutput | UpdateAccountSettingsCommandOutput | UpdateAnalysisCommandOutput | UpdateAnalysisPermissionsCommandOutput | UpdateDashboardCommandOutput | UpdateDashboardLinksCommandOutput | UpdateDashboardPermissionsCommandOutput | UpdateDashboardPublishedVersionCommandOutput | UpdateDataSetCommandOutput | UpdateDataSetPermissionsCommandOutput | UpdateDataSourceCommandOutput | UpdateDataSourcePermissionsCommandOutput | UpdateFolderCommandOutput | UpdateFolderPermissionsCommandOutput | UpdateGroupCommandOutput | UpdateIAMPolicyAssignmentCommandOutput | UpdateIdentityPropagationConfigCommandOutput | UpdateIpRestrictionCommandOutput | UpdateKeyRegistrationCommandOutput | UpdatePublicSharingSettingsCommandOutput | UpdateQPersonalizationConfigurationCommandOutput | UpdateRefreshScheduleCommandOutput | UpdateRoleCustomPermissionCommandOutput | UpdateSPICECapacityConfigurationCommandOutput | UpdateTemplateAliasCommandOutput | UpdateTemplateCommandOutput | UpdateTemplatePermissionsCommandOutput | UpdateThemeAliasCommandOutput | UpdateThemeCommandOutput | UpdateThemePermissionsCommandOutput | UpdateTopicCommandOutput | UpdateTopicPermissionsCommandOutput | UpdateTopicRefreshScheduleCommandOutput | UpdateUserCommandOutput | UpdateVPCConnectionCommandOutput;
|
|
218
|
+
export type ServiceOutputTypes = BatchCreateTopicReviewedAnswerCommandOutput | BatchDeleteTopicReviewedAnswerCommandOutput | CancelIngestionCommandOutput | CreateAccountCustomizationCommandOutput | CreateAccountSubscriptionCommandOutput | CreateAnalysisCommandOutput | CreateBrandCommandOutput | CreateCustomPermissionsCommandOutput | CreateDashboardCommandOutput | CreateDataSetCommandOutput | CreateDataSourceCommandOutput | CreateFolderCommandOutput | CreateFolderMembershipCommandOutput | CreateGroupCommandOutput | CreateGroupMembershipCommandOutput | CreateIAMPolicyAssignmentCommandOutput | CreateIngestionCommandOutput | CreateNamespaceCommandOutput | CreateRefreshScheduleCommandOutput | CreateRoleMembershipCommandOutput | CreateTemplateAliasCommandOutput | CreateTemplateCommandOutput | CreateThemeAliasCommandOutput | CreateThemeCommandOutput | CreateTopicCommandOutput | CreateTopicRefreshScheduleCommandOutput | CreateVPCConnectionCommandOutput | DeleteAccountCustomizationCommandOutput | DeleteAccountSubscriptionCommandOutput | DeleteAnalysisCommandOutput | DeleteBrandAssignmentCommandOutput | DeleteBrandCommandOutput | DeleteCustomPermissionsCommandOutput | DeleteDashboardCommandOutput | DeleteDataSetCommandOutput | DeleteDataSetRefreshPropertiesCommandOutput | DeleteDataSourceCommandOutput | DeleteFolderCommandOutput | DeleteFolderMembershipCommandOutput | DeleteGroupCommandOutput | DeleteGroupMembershipCommandOutput | DeleteIAMPolicyAssignmentCommandOutput | DeleteIdentityPropagationConfigCommandOutput | DeleteNamespaceCommandOutput | DeleteRefreshScheduleCommandOutput | DeleteRoleCustomPermissionCommandOutput | DeleteRoleMembershipCommandOutput | DeleteTemplateAliasCommandOutput | DeleteTemplateCommandOutput | DeleteThemeAliasCommandOutput | DeleteThemeCommandOutput | DeleteTopicCommandOutput | DeleteTopicRefreshScheduleCommandOutput | DeleteUserByPrincipalIdCommandOutput | DeleteUserCommandOutput | DeleteUserCustomPermissionCommandOutput | DeleteVPCConnectionCommandOutput | DescribeAccountCustomizationCommandOutput | DescribeAccountSettingsCommandOutput | DescribeAccountSubscriptionCommandOutput | DescribeAnalysisCommandOutput | DescribeAnalysisDefinitionCommandOutput | DescribeAnalysisPermissionsCommandOutput | DescribeAssetBundleExportJobCommandOutput | DescribeAssetBundleImportJobCommandOutput | DescribeBrandAssignmentCommandOutput | DescribeBrandCommandOutput | DescribeBrandPublishedVersionCommandOutput | DescribeCustomPermissionsCommandOutput | DescribeDashboardCommandOutput | DescribeDashboardDefinitionCommandOutput | DescribeDashboardPermissionsCommandOutput | DescribeDashboardSnapshotJobCommandOutput | DescribeDashboardSnapshotJobResultCommandOutput | DescribeDataSetCommandOutput | DescribeDataSetPermissionsCommandOutput | DescribeDataSetRefreshPropertiesCommandOutput | DescribeDataSourceCommandOutput | DescribeDataSourcePermissionsCommandOutput | DescribeFolderCommandOutput | DescribeFolderPermissionsCommandOutput | DescribeFolderResolvedPermissionsCommandOutput | DescribeGroupCommandOutput | DescribeGroupMembershipCommandOutput | DescribeIAMPolicyAssignmentCommandOutput | DescribeIngestionCommandOutput | DescribeIpRestrictionCommandOutput | DescribeKeyRegistrationCommandOutput | DescribeNamespaceCommandOutput | DescribeQPersonalizationConfigurationCommandOutput | DescribeRefreshScheduleCommandOutput | DescribeRoleCustomPermissionCommandOutput | DescribeTemplateAliasCommandOutput | DescribeTemplateCommandOutput | DescribeTemplateDefinitionCommandOutput | DescribeTemplatePermissionsCommandOutput | DescribeThemeAliasCommandOutput | DescribeThemeCommandOutput | DescribeThemePermissionsCommandOutput | DescribeTopicCommandOutput | DescribeTopicPermissionsCommandOutput | DescribeTopicRefreshCommandOutput | DescribeTopicRefreshScheduleCommandOutput | DescribeUserCommandOutput | DescribeVPCConnectionCommandOutput | GenerateEmbedUrlForAnonymousUserCommandOutput | GenerateEmbedUrlForRegisteredUserCommandOutput | GetDashboardEmbedUrlCommandOutput | GetSessionEmbedUrlCommandOutput | ListAnalysesCommandOutput | ListAssetBundleExportJobsCommandOutput | ListAssetBundleImportJobsCommandOutput | ListBrandsCommandOutput | ListCustomPermissionsCommandOutput | ListDashboardVersionsCommandOutput | ListDashboardsCommandOutput | ListDataSetsCommandOutput | ListDataSourcesCommandOutput | ListFolderMembersCommandOutput | ListFoldersCommandOutput | ListFoldersForResourceCommandOutput | ListGroupMembershipsCommandOutput | ListGroupsCommandOutput | ListIAMPolicyAssignmentsCommandOutput | ListIAMPolicyAssignmentsForUserCommandOutput | ListIdentityPropagationConfigsCommandOutput | ListIngestionsCommandOutput | ListNamespacesCommandOutput | ListRefreshSchedulesCommandOutput | ListRoleMembershipsCommandOutput | ListTagsForResourceCommandOutput | ListTemplateAliasesCommandOutput | ListTemplateVersionsCommandOutput | ListTemplatesCommandOutput | ListThemeAliasesCommandOutput | ListThemeVersionsCommandOutput | ListThemesCommandOutput | ListTopicRefreshSchedulesCommandOutput | ListTopicReviewedAnswersCommandOutput | ListTopicsCommandOutput | ListUserGroupsCommandOutput | ListUsersCommandOutput | ListVPCConnectionsCommandOutput | PutDataSetRefreshPropertiesCommandOutput | RegisterUserCommandOutput | RestoreAnalysisCommandOutput | SearchAnalysesCommandOutput | SearchDashboardsCommandOutput | SearchDataSetsCommandOutput | SearchDataSourcesCommandOutput | SearchFoldersCommandOutput | SearchGroupsCommandOutput | StartAssetBundleExportJobCommandOutput | StartAssetBundleImportJobCommandOutput | StartDashboardSnapshotJobCommandOutput | StartDashboardSnapshotJobScheduleCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAccountCustomizationCommandOutput | UpdateAccountSettingsCommandOutput | UpdateAnalysisCommandOutput | UpdateAnalysisPermissionsCommandOutput | UpdateBrandAssignmentCommandOutput | UpdateBrandCommandOutput | UpdateBrandPublishedVersionCommandOutput | UpdateCustomPermissionsCommandOutput | UpdateDashboardCommandOutput | UpdateDashboardLinksCommandOutput | UpdateDashboardPermissionsCommandOutput | UpdateDashboardPublishedVersionCommandOutput | UpdateDataSetCommandOutput | UpdateDataSetPermissionsCommandOutput | UpdateDataSourceCommandOutput | UpdateDataSourcePermissionsCommandOutput | UpdateFolderCommandOutput | UpdateFolderPermissionsCommandOutput | UpdateGroupCommandOutput | UpdateIAMPolicyAssignmentCommandOutput | UpdateIdentityPropagationConfigCommandOutput | UpdateIpRestrictionCommandOutput | UpdateKeyRegistrationCommandOutput | UpdatePublicSharingSettingsCommandOutput | UpdateQPersonalizationConfigurationCommandOutput | UpdateRefreshScheduleCommandOutput | UpdateRoleCustomPermissionCommandOutput | UpdateSPICECapacityConfigurationCommandOutput | UpdateTemplateAliasCommandOutput | UpdateTemplateCommandOutput | UpdateTemplatePermissionsCommandOutput | UpdateThemeAliasCommandOutput | UpdateThemeCommandOutput | UpdateThemePermissionsCommandOutput | UpdateTopicCommandOutput | UpdateTopicPermissionsCommandOutput | UpdateTopicRefreshScheduleCommandOutput | UpdateUserCommandOutput | UpdateUserCustomPermissionCommandOutput | UpdateVPCConnectionCommandOutput;
|
|
202
219
|
/**
|
|
203
220
|
* @public
|
|
204
221
|
*/
|
|
@@ -0,0 +1,268 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { CreateBrandRequest, CreateBrandResponse } from "../models/models_2";
|
|
4
|
+
import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link CreateBrandCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface CreateBrandCommandInput extends CreateBrandRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link CreateBrandCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface CreateBrandCommandOutput extends CreateBrandResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const CreateBrandCommand_base: {
|
|
25
|
+
new (input: CreateBrandCommandInput): import("@smithy/smithy-client").CommandImpl<CreateBrandCommandInput, CreateBrandCommandOutput, QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: CreateBrandCommandInput): import("@smithy/smithy-client").CommandImpl<CreateBrandCommandInput, CreateBrandCommandOutput, QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Creates an Amazon QuickSight brand.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { QuickSightClient, CreateBrandCommand } from "@aws-sdk/client-quicksight"; // ES Modules import
|
|
35
|
+
* // const { QuickSightClient, CreateBrandCommand } = require("@aws-sdk/client-quicksight"); // CommonJS import
|
|
36
|
+
* const client = new QuickSightClient(config);
|
|
37
|
+
* const input = { // CreateBrandRequest
|
|
38
|
+
* AwsAccountId: "STRING_VALUE", // required
|
|
39
|
+
* BrandId: "STRING_VALUE", // required
|
|
40
|
+
* BrandDefinition: { // BrandDefinition
|
|
41
|
+
* BrandName: "STRING_VALUE", // required
|
|
42
|
+
* Description: "STRING_VALUE",
|
|
43
|
+
* ApplicationTheme: { // ApplicationTheme
|
|
44
|
+
* BrandColorPalette: { // BrandColorPalette
|
|
45
|
+
* Primary: { // Palette
|
|
46
|
+
* Foreground: "STRING_VALUE",
|
|
47
|
+
* Background: "STRING_VALUE",
|
|
48
|
+
* },
|
|
49
|
+
* Secondary: {
|
|
50
|
+
* Foreground: "STRING_VALUE",
|
|
51
|
+
* Background: "STRING_VALUE",
|
|
52
|
+
* },
|
|
53
|
+
* Accent: {
|
|
54
|
+
* Foreground: "STRING_VALUE",
|
|
55
|
+
* Background: "STRING_VALUE",
|
|
56
|
+
* },
|
|
57
|
+
* Measure: {
|
|
58
|
+
* Foreground: "STRING_VALUE",
|
|
59
|
+
* Background: "STRING_VALUE",
|
|
60
|
+
* },
|
|
61
|
+
* Dimension: {
|
|
62
|
+
* Foreground: "STRING_VALUE",
|
|
63
|
+
* Background: "STRING_VALUE",
|
|
64
|
+
* },
|
|
65
|
+
* Success: "<Palette>",
|
|
66
|
+
* Info: "<Palette>",
|
|
67
|
+
* Warning: "<Palette>",
|
|
68
|
+
* Danger: "<Palette>",
|
|
69
|
+
* },
|
|
70
|
+
* BrandElementStyle: { // BrandElementStyle
|
|
71
|
+
* NavbarStyle: { // NavbarStyle
|
|
72
|
+
* GlobalNavbar: "<Palette>",
|
|
73
|
+
* ContextualNavbar: "<Palette>",
|
|
74
|
+
* },
|
|
75
|
+
* },
|
|
76
|
+
* },
|
|
77
|
+
* LogoConfiguration: { // LogoConfiguration
|
|
78
|
+
* AltText: "STRING_VALUE", // required
|
|
79
|
+
* LogoSet: { // LogoSetConfiguration
|
|
80
|
+
* Primary: { // ImageSetConfiguration
|
|
81
|
+
* Original: { // ImageConfiguration
|
|
82
|
+
* Source: { // ImageSource Union: only one key present
|
|
83
|
+
* PublicUrl: "STRING_VALUE",
|
|
84
|
+
* S3Uri: "STRING_VALUE",
|
|
85
|
+
* },
|
|
86
|
+
* },
|
|
87
|
+
* },
|
|
88
|
+
* Favicon: {
|
|
89
|
+
* Original: {
|
|
90
|
+
* Source: {// Union: only one key present
|
|
91
|
+
* PublicUrl: "STRING_VALUE",
|
|
92
|
+
* S3Uri: "STRING_VALUE",
|
|
93
|
+
* },
|
|
94
|
+
* },
|
|
95
|
+
* },
|
|
96
|
+
* },
|
|
97
|
+
* },
|
|
98
|
+
* },
|
|
99
|
+
* Tags: [ // TagList
|
|
100
|
+
* { // Tag
|
|
101
|
+
* Key: "STRING_VALUE", // required
|
|
102
|
+
* Value: "STRING_VALUE", // required
|
|
103
|
+
* },
|
|
104
|
+
* ],
|
|
105
|
+
* };
|
|
106
|
+
* const command = new CreateBrandCommand(input);
|
|
107
|
+
* const response = await client.send(command);
|
|
108
|
+
* // { // CreateBrandResponse
|
|
109
|
+
* // RequestId: "STRING_VALUE",
|
|
110
|
+
* // BrandDetail: { // BrandDetail
|
|
111
|
+
* // BrandId: "STRING_VALUE", // required
|
|
112
|
+
* // Arn: "STRING_VALUE",
|
|
113
|
+
* // BrandStatus: "CREATE_IN_PROGRESS" || "CREATE_SUCCEEDED" || "CREATE_FAILED" || "DELETE_IN_PROGRESS" || "DELETE_FAILED",
|
|
114
|
+
* // CreatedTime: new Date("TIMESTAMP"),
|
|
115
|
+
* // LastUpdatedTime: new Date("TIMESTAMP"),
|
|
116
|
+
* // VersionId: "STRING_VALUE",
|
|
117
|
+
* // VersionStatus: "CREATE_IN_PROGRESS" || "CREATE_SUCCEEDED" || "CREATE_FAILED",
|
|
118
|
+
* // Errors: [ // ErrorList
|
|
119
|
+
* // "STRING_VALUE",
|
|
120
|
+
* // ],
|
|
121
|
+
* // Logo: { // Logo
|
|
122
|
+
* // AltText: "STRING_VALUE", // required
|
|
123
|
+
* // LogoSet: { // LogoSet
|
|
124
|
+
* // Primary: { // ImageSet
|
|
125
|
+
* // Original: { // Image
|
|
126
|
+
* // Source: { // ImageSource Union: only one key present
|
|
127
|
+
* // PublicUrl: "STRING_VALUE",
|
|
128
|
+
* // S3Uri: "STRING_VALUE",
|
|
129
|
+
* // },
|
|
130
|
+
* // GeneratedImageUrl: "STRING_VALUE",
|
|
131
|
+
* // },
|
|
132
|
+
* // Height64: {
|
|
133
|
+
* // Source: {// Union: only one key present
|
|
134
|
+
* // PublicUrl: "STRING_VALUE",
|
|
135
|
+
* // S3Uri: "STRING_VALUE",
|
|
136
|
+
* // },
|
|
137
|
+
* // GeneratedImageUrl: "STRING_VALUE",
|
|
138
|
+
* // },
|
|
139
|
+
* // Height32: {
|
|
140
|
+
* // Source: {// Union: only one key present
|
|
141
|
+
* // PublicUrl: "STRING_VALUE",
|
|
142
|
+
* // S3Uri: "STRING_VALUE",
|
|
143
|
+
* // },
|
|
144
|
+
* // GeneratedImageUrl: "STRING_VALUE",
|
|
145
|
+
* // },
|
|
146
|
+
* // },
|
|
147
|
+
* // Favicon: {
|
|
148
|
+
* // Original: {
|
|
149
|
+
* // Source: {// Union: only one key present
|
|
150
|
+
* // PublicUrl: "STRING_VALUE",
|
|
151
|
+
* // S3Uri: "STRING_VALUE",
|
|
152
|
+
* // },
|
|
153
|
+
* // GeneratedImageUrl: "STRING_VALUE",
|
|
154
|
+
* // },
|
|
155
|
+
* // Height64: {
|
|
156
|
+
* // Source: {// Union: only one key present
|
|
157
|
+
* // PublicUrl: "STRING_VALUE",
|
|
158
|
+
* // S3Uri: "STRING_VALUE",
|
|
159
|
+
* // },
|
|
160
|
+
* // GeneratedImageUrl: "STRING_VALUE",
|
|
161
|
+
* // },
|
|
162
|
+
* // Height32: "<Image>",
|
|
163
|
+
* // },
|
|
164
|
+
* // },
|
|
165
|
+
* // },
|
|
166
|
+
* // },
|
|
167
|
+
* // BrandDefinition: { // BrandDefinition
|
|
168
|
+
* // BrandName: "STRING_VALUE", // required
|
|
169
|
+
* // Description: "STRING_VALUE",
|
|
170
|
+
* // ApplicationTheme: { // ApplicationTheme
|
|
171
|
+
* // BrandColorPalette: { // BrandColorPalette
|
|
172
|
+
* // Primary: { // Palette
|
|
173
|
+
* // Foreground: "STRING_VALUE",
|
|
174
|
+
* // Background: "STRING_VALUE",
|
|
175
|
+
* // },
|
|
176
|
+
* // Secondary: {
|
|
177
|
+
* // Foreground: "STRING_VALUE",
|
|
178
|
+
* // Background: "STRING_VALUE",
|
|
179
|
+
* // },
|
|
180
|
+
* // Accent: {
|
|
181
|
+
* // Foreground: "STRING_VALUE",
|
|
182
|
+
* // Background: "STRING_VALUE",
|
|
183
|
+
* // },
|
|
184
|
+
* // Measure: {
|
|
185
|
+
* // Foreground: "STRING_VALUE",
|
|
186
|
+
* // Background: "STRING_VALUE",
|
|
187
|
+
* // },
|
|
188
|
+
* // Dimension: {
|
|
189
|
+
* // Foreground: "STRING_VALUE",
|
|
190
|
+
* // Background: "STRING_VALUE",
|
|
191
|
+
* // },
|
|
192
|
+
* // Success: "<Palette>",
|
|
193
|
+
* // Info: "<Palette>",
|
|
194
|
+
* // Warning: "<Palette>",
|
|
195
|
+
* // Danger: "<Palette>",
|
|
196
|
+
* // },
|
|
197
|
+
* // BrandElementStyle: { // BrandElementStyle
|
|
198
|
+
* // NavbarStyle: { // NavbarStyle
|
|
199
|
+
* // GlobalNavbar: "<Palette>",
|
|
200
|
+
* // ContextualNavbar: "<Palette>",
|
|
201
|
+
* // },
|
|
202
|
+
* // },
|
|
203
|
+
* // },
|
|
204
|
+
* // LogoConfiguration: { // LogoConfiguration
|
|
205
|
+
* // AltText: "STRING_VALUE", // required
|
|
206
|
+
* // LogoSet: { // LogoSetConfiguration
|
|
207
|
+
* // Primary: { // ImageSetConfiguration
|
|
208
|
+
* // Original: { // ImageConfiguration
|
|
209
|
+
* // Source: "<ImageSource>",
|
|
210
|
+
* // },
|
|
211
|
+
* // },
|
|
212
|
+
* // Favicon: {
|
|
213
|
+
* // Original: {
|
|
214
|
+
* // Source: "<ImageSource>",
|
|
215
|
+
* // },
|
|
216
|
+
* // },
|
|
217
|
+
* // },
|
|
218
|
+
* // },
|
|
219
|
+
* // },
|
|
220
|
+
* // };
|
|
221
|
+
*
|
|
222
|
+
* ```
|
|
223
|
+
*
|
|
224
|
+
* @param CreateBrandCommandInput - {@link CreateBrandCommandInput}
|
|
225
|
+
* @returns {@link CreateBrandCommandOutput}
|
|
226
|
+
* @see {@link CreateBrandCommandInput} for command's `input` shape.
|
|
227
|
+
* @see {@link CreateBrandCommandOutput} for command's `response` shape.
|
|
228
|
+
* @see {@link QuickSightClientResolvedConfig | config} for QuickSightClient's `config` shape.
|
|
229
|
+
*
|
|
230
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
231
|
+
* <p>You don't have access to this item. The provided credentials couldn't be
|
|
232
|
+
* validated. You might not be authorized to carry out the request. Make sure that your
|
|
233
|
+
* account is authorized to use the Amazon QuickSight service, that your policies have the
|
|
234
|
+
* correct permissions, and that you are using the correct credentials.</p>
|
|
235
|
+
*
|
|
236
|
+
* @throws {@link ConflictException} (client fault)
|
|
237
|
+
* <p>Updating or deleting a resource can cause an inconsistent state.</p>
|
|
238
|
+
*
|
|
239
|
+
* @throws {@link InternalServerException} (server fault)
|
|
240
|
+
* <p>An internal service exception.</p>
|
|
241
|
+
*
|
|
242
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
243
|
+
* <p>You don't have this feature activated for your account. To fix this issue, contact Amazon Web Services support.</p>
|
|
244
|
+
*
|
|
245
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
246
|
+
* <p>A limit is exceeded.</p>
|
|
247
|
+
*
|
|
248
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
249
|
+
* <p>Access is throttled.</p>
|
|
250
|
+
*
|
|
251
|
+
* @throws {@link QuickSightServiceException}
|
|
252
|
+
* <p>Base exception class for all service exceptions from QuickSight service.</p>
|
|
253
|
+
*
|
|
254
|
+
* @public
|
|
255
|
+
*/
|
|
256
|
+
export declare class CreateBrandCommand extends CreateBrandCommand_base {
|
|
257
|
+
/** @internal type navigation helper, not in runtime. */
|
|
258
|
+
protected static __types: {
|
|
259
|
+
api: {
|
|
260
|
+
input: CreateBrandRequest;
|
|
261
|
+
output: CreateBrandResponse;
|
|
262
|
+
};
|
|
263
|
+
sdk: {
|
|
264
|
+
input: CreateBrandCommandInput;
|
|
265
|
+
output: CreateBrandCommandOutput;
|
|
266
|
+
};
|
|
267
|
+
};
|
|
268
|
+
}
|