@aws-sdk/client-quicksight 3.662.0 → 3.665.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.
Files changed (36) hide show
  1. package/dist-cjs/index.js +541 -524
  2. package/dist-cjs/runtimeConfig.js +1 -0
  3. package/dist-es/commands/CreateDataSetCommand.js +1 -1
  4. package/dist-es/models/models_2.js +4 -20
  5. package/dist-es/models/models_3.js +26 -13
  6. package/dist-es/models/models_4.js +14 -1
  7. package/dist-es/protocols/Aws_restJson1.js +6 -0
  8. package/dist-es/runtimeConfig.js +2 -1
  9. package/dist-types/commands/CreateDataSetCommand.d.ts +1 -1
  10. package/dist-types/commands/CreateTopicCommand.d.ts +3 -0
  11. package/dist-types/commands/DescribeAssetBundleExportJobCommand.d.ts +10 -0
  12. package/dist-types/commands/DescribeAssetBundleImportJobCommand.d.ts +19 -0
  13. package/dist-types/commands/DescribeTopicCommand.d.ts +3 -0
  14. package/dist-types/commands/DescribeTopicRefreshCommand.d.ts +2 -1
  15. package/dist-types/commands/DescribeTopicRefreshScheduleCommand.d.ts +1 -1
  16. package/dist-types/commands/DescribeUserCommand.d.ts +1 -2
  17. package/dist-types/commands/StartAssetBundleExportJobCommand.d.ts +10 -0
  18. package/dist-types/commands/StartAssetBundleImportJobCommand.d.ts +19 -0
  19. package/dist-types/commands/UpdateTopicCommand.d.ts +3 -0
  20. package/dist-types/models/models_2.d.ts +101 -212
  21. package/dist-types/models/models_3.d.ts +246 -142
  22. package/dist-types/models/models_4.d.ts +159 -2
  23. package/dist-types/runtimeConfig.browser.d.ts +2 -1
  24. package/dist-types/runtimeConfig.d.ts +2 -1
  25. package/dist-types/runtimeConfig.native.d.ts +2 -1
  26. package/dist-types/ts3.4/commands/CreateDataSetCommand.d.ts +1 -1
  27. package/dist-types/ts3.4/commands/DescribeTopicRefreshCommand.d.ts +2 -4
  28. package/dist-types/ts3.4/commands/DescribeTopicRefreshScheduleCommand.d.ts +1 -1
  29. package/dist-types/ts3.4/commands/DescribeUserCommand.d.ts +1 -2
  30. package/dist-types/ts3.4/models/models_2.d.ts +27 -51
  31. package/dist-types/ts3.4/models/models_3.d.ts +65 -45
  32. package/dist-types/ts3.4/models/models_4.d.ts +47 -2
  33. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +7 -3
  34. package/dist-types/ts3.4/runtimeConfig.d.ts +6 -3
  35. package/dist-types/ts3.4/runtimeConfig.native.d.ts +7 -3
  36. package/package.json +14 -14
@@ -44,6 +44,7 @@ const getRuntimeConfig = (config) => {
44
44
  streamCollector: config?.streamCollector ?? node_http_handler_1.streamCollector,
45
45
  useDualstackEndpoint: config?.useDualstackEndpoint ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS),
46
46
  useFipsEndpoint: config?.useFipsEndpoint ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS),
47
+ userAgentAppId: config?.userAgentAppId ?? (0, node_config_provider_1.loadConfig)(util_user_agent_node_1.NODE_APP_ID_CONFIG_OPTIONS),
47
48
  };
48
49
  };
49
50
  exports.getRuntimeConfig = getRuntimeConfig;
@@ -2,7 +2,7 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
4
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { CreateDataSetRequestFilterSensitiveLog, } from "../models/models_2";
5
+ import { CreateDataSetRequestFilterSensitiveLog, } from "../models/models_3";
6
6
  import { de_CreateDataSetCommand, se_CreateDataSetCommand } from "../protocols/Aws_restJson1";
7
7
  export { $Command };
8
8
  export class CreateDataSetCommand extends $Command
@@ -84,6 +84,10 @@ export const AssetBundleExportJobDataSourcePropertyToOverride = {
84
84
  WAREHOUSE: "Warehouse",
85
85
  WORK_GROUP: "WorkGroup",
86
86
  };
87
+ export const AssetBundleExportJobFolderPropertyToOverride = {
88
+ NAME: "Name",
89
+ PARENT_FOLDER_ARN: "ParentFolderArn",
90
+ };
87
91
  export const AssetBundleExportJobRefreshSchedulePropertyToOverride = {
88
92
  START_AFTER_DATE_TIME: "StartAfterDateTime",
89
93
  };
@@ -811,23 +815,3 @@ export const LogicalTableFilterSensitiveLog = (obj) => ({
811
815
  DataTransforms: obj.DataTransforms.map((item) => TransformOperationFilterSensitiveLog(item)),
812
816
  }),
813
817
  });
814
- export const RowLevelPermissionTagRuleFilterSensitiveLog = (obj) => ({
815
- ...obj,
816
- ...(obj.MatchAllValue && { MatchAllValue: SENSITIVE_STRING }),
817
- });
818
- export const RowLevelPermissionTagConfigurationFilterSensitiveLog = (obj) => ({
819
- ...obj,
820
- ...(obj.TagRules && { TagRules: obj.TagRules.map((item) => RowLevelPermissionTagRuleFilterSensitiveLog(item)) }),
821
- });
822
- export const CreateDataSetRequestFilterSensitiveLog = (obj) => ({
823
- ...obj,
824
- ...(obj.PhysicalTableMap && {
825
- PhysicalTableMap: Object.entries(obj.PhysicalTableMap).reduce((acc, [key, value]) => ((acc[key] = value), acc), {}),
826
- }),
827
- ...(obj.LogicalTableMap && {
828
- LogicalTableMap: Object.entries(obj.LogicalTableMap).reduce((acc, [key, value]) => ((acc[key] = LogicalTableFilterSensitiveLog(value)), acc), {}),
829
- }),
830
- ...(obj.RowLevelPermissionTagConfiguration && {
831
- RowLevelPermissionTagConfiguration: RowLevelPermissionTagConfigurationFilterSensitiveLog(obj.RowLevelPermissionTagConfiguration),
832
- }),
833
- });
@@ -1,6 +1,6 @@
1
1
  import { SENSITIVE_STRING } from "@smithy/smithy-client";
2
2
  import { CalculatedFieldFilterSensitiveLog, ColumnConfigurationFilterSensitiveLog, ParameterDeclarationFilterSensitiveLog, } from "./models_0";
3
- import { _ParametersFilterSensitiveLog, AssetBundleImportSourceDescriptionFilterSensitiveLog, LogicalTableFilterSensitiveLog, RowLevelPermissionTagConfigurationFilterSensitiveLog, } from "./models_2";
3
+ import { _ParametersFilterSensitiveLog, AssetBundleImportSourceDescriptionFilterSensitiveLog, LogicalTableFilterSensitiveLog, } from "./models_2";
4
4
  import { QuickSightServiceException as __BaseException } from "./QuickSightServiceException";
5
5
  export const DataSourceType = {
6
6
  ADOBE_ANALYTICS: "ADOBE_ANALYTICS",
@@ -250,6 +250,11 @@ export const DataSourceFilterAttribute = {
250
250
  DIRECT_QUICKSIGHT_SOLE_OWNER: "DIRECT_QUICKSIGHT_SOLE_OWNER",
251
251
  DIRECT_QUICKSIGHT_VIEWER_OR_OWNER: "DIRECT_QUICKSIGHT_VIEWER_OR_OWNER",
252
252
  };
253
+ export const IncludeFolderMembers = {
254
+ NONE: "NONE",
255
+ ONE_LEVEL: "ONE_LEVEL",
256
+ RECURSE: "RECURSE",
257
+ };
253
258
  export const SnapshotJobStatus = {
254
259
  COMPLETED: "COMPLETED",
255
260
  FAILED: "FAILED",
@@ -349,18 +354,26 @@ export const ThemeType = {
349
354
  export const ThemeErrorType = {
350
355
  INTERNAL_FAILURE: "INTERNAL_FAILURE",
351
356
  };
352
- export const TopicRefreshStatus = {
353
- CANCELLED: "CANCELLED",
354
- COMPLETED: "COMPLETED",
355
- FAILED: "FAILED",
356
- INITIALIZED: "INITIALIZED",
357
- RUNNING: "RUNNING",
358
- };
359
- export const IdentityType = {
360
- IAM: "IAM",
361
- IAM_IDENTITY_CENTER: "IAM_IDENTITY_CENTER",
362
- QUICKSIGHT: "QUICKSIGHT",
363
- };
357
+ export const RowLevelPermissionTagRuleFilterSensitiveLog = (obj) => ({
358
+ ...obj,
359
+ ...(obj.MatchAllValue && { MatchAllValue: SENSITIVE_STRING }),
360
+ });
361
+ export const RowLevelPermissionTagConfigurationFilterSensitiveLog = (obj) => ({
362
+ ...obj,
363
+ ...(obj.TagRules && { TagRules: obj.TagRules.map((item) => RowLevelPermissionTagRuleFilterSensitiveLog(item)) }),
364
+ });
365
+ export const CreateDataSetRequestFilterSensitiveLog = (obj) => ({
366
+ ...obj,
367
+ ...(obj.PhysicalTableMap && {
368
+ PhysicalTableMap: Object.entries(obj.PhysicalTableMap).reduce((acc, [key, value]) => ((acc[key] = value), acc), {}),
369
+ }),
370
+ ...(obj.LogicalTableMap && {
371
+ LogicalTableMap: Object.entries(obj.LogicalTableMap).reduce((acc, [key, value]) => ((acc[key] = LogicalTableFilterSensitiveLog(value)), acc), {}),
372
+ }),
373
+ ...(obj.RowLevelPermissionTagConfiguration && {
374
+ RowLevelPermissionTagConfiguration: RowLevelPermissionTagConfigurationFilterSensitiveLog(obj.RowLevelPermissionTagConfiguration),
375
+ }),
376
+ });
364
377
  export const DataSourceCredentialsFilterSensitiveLog = (obj) => ({
365
378
  ...obj,
366
379
  ...(obj.CredentialPair && { CredentialPair: obj.CredentialPair }),
@@ -1,6 +1,19 @@
1
1
  import { SENSITIVE_STRING } from "@smithy/smithy-client";
2
- import { _ParametersFilterSensitiveLog, AssetBundleImportSourceFilterSensitiveLog, LogicalTableFilterSensitiveLog, RowLevelPermissionTagConfigurationFilterSensitiveLog, TopicIRFilterSensitiveLog, } from "./models_2";
2
+ import { _ParametersFilterSensitiveLog, AssetBundleImportSourceFilterSensitiveLog, LogicalTableFilterSensitiveLog, TopicIRFilterSensitiveLog, } from "./models_2";
3
+ import { RowLevelPermissionTagConfigurationFilterSensitiveLog, } from "./models_3";
3
4
  import { QuickSightServiceException as __BaseException } from "./QuickSightServiceException";
5
+ export const TopicRefreshStatus = {
6
+ CANCELLED: "CANCELLED",
7
+ COMPLETED: "COMPLETED",
8
+ FAILED: "FAILED",
9
+ INITIALIZED: "INITIALIZED",
10
+ RUNNING: "RUNNING",
11
+ };
12
+ export const IdentityType = {
13
+ IAM: "IAM",
14
+ IAM_IDENTITY_CENTER: "IAM_IDENTITY_CENTER",
15
+ QUICKSIGHT: "QUICKSIGHT",
16
+ };
4
17
  export const UserRole = {
5
18
  ADMIN: "ADMIN",
6
19
  ADMIN_PRO: "ADMIN_PRO",
@@ -1890,6 +1890,8 @@ export const se_StartAssetBundleExportJobCommand = async (input, context) => {
1890
1890
  CloudFormationOverridePropertyConfiguration: (_) => _json(_),
1891
1891
  ExportFormat: [],
1892
1892
  IncludeAllDependencies: [],
1893
+ IncludeFolderMembers: [],
1894
+ IncludeFolderMemberships: [],
1893
1895
  IncludePermissions: [],
1894
1896
  IncludeTags: [],
1895
1897
  ResourceArns: (_) => _json(_),
@@ -3644,6 +3646,8 @@ export const de_DescribeAssetBundleExportJobCommand = async (output, context) =>
3644
3646
  Errors: _json,
3645
3647
  ExportFormat: __expectString,
3646
3648
  IncludeAllDependencies: __expectBoolean,
3649
+ IncludeFolderMembers: __expectString,
3650
+ IncludeFolderMemberships: __expectBoolean,
3647
3651
  IncludePermissions: __expectBoolean,
3648
3652
  IncludeTags: __expectBoolean,
3649
3653
  JobStatus: __expectString,
@@ -6410,6 +6414,7 @@ const se_AssetBundleImportJobOverrideParameters = (input, context) => {
6410
6414
  Dashboards: _json,
6411
6415
  DataSets: _json,
6412
6416
  DataSources: _json,
6417
+ Folders: _json,
6413
6418
  RefreshSchedules: (_) => se_AssetBundleImportJobRefreshScheduleOverrideParametersList(_, context),
6414
6419
  ResourceIdOverrideConfiguration: _json,
6415
6420
  Themes: _json,
@@ -8935,6 +8940,7 @@ const de_AssetBundleImportJobOverrideParameters = (output, context) => {
8935
8940
  Dashboards: _json,
8936
8941
  DataSets: _json,
8937
8942
  DataSources: _json,
8943
+ Folders: _json,
8938
8944
  RefreshSchedules: (_) => de_AssetBundleImportJobRefreshScheduleOverrideParametersList(_, context),
8939
8945
  ResourceIdOverrideConfiguration: _json,
8940
8946
  Themes: _json,
@@ -1,7 +1,7 @@
1
1
  import packageInfo from "../package.json";
2
2
  import { emitWarningIfUnsupportedVersion as awsCheckVersion } from "@aws-sdk/core";
3
3
  import { defaultProvider as credentialDefaultProvider } from "@aws-sdk/credential-provider-node";
4
- import { defaultUserAgent } from "@aws-sdk/util-user-agent-node";
4
+ import { NODE_APP_ID_CONFIG_OPTIONS, defaultUserAgent } from "@aws-sdk/util-user-agent-node";
5
5
  import { NODE_REGION_CONFIG_FILE_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, } from "@smithy/config-resolver";
6
6
  import { Hash } from "@smithy/hash-node";
7
7
  import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry";
@@ -40,5 +40,6 @@ export const getRuntimeConfig = (config) => {
40
40
  streamCollector: config?.streamCollector ?? streamCollector,
41
41
  useDualstackEndpoint: config?.useDualstackEndpoint ?? loadNodeConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS),
42
42
  useFipsEndpoint: config?.useFipsEndpoint ?? loadNodeConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS),
43
+ userAgentAppId: config?.userAgentAppId ?? loadNodeConfig(NODE_APP_ID_CONFIG_OPTIONS),
43
44
  };
44
45
  };
@@ -1,6 +1,6 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import { CreateDataSetRequest, CreateDataSetResponse } from "../models/models_2";
3
+ import { CreateDataSetRequest, CreateDataSetResponse } from "../models/models_3";
4
4
  import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
5
5
  /**
6
6
  * @public
@@ -284,6 +284,9 @@ declare const CreateTopicCommand_base: {
284
284
  * ],
285
285
  * },
286
286
  * ],
287
+ * ConfigOptions: { // TopicConfigOptions
288
+ * QBusinessInsightsEnabled: true || false,
289
+ * },
287
290
  * },
288
291
  * Tags: [ // TagList
289
292
  * { // Tag
@@ -121,6 +121,14 @@ declare const DescribeAssetBundleExportJobCommand_base: {
121
121
  * // ],
122
122
  * // },
123
123
  * // ],
124
+ * // Folders: [ // AssetBundleExportJobFolderOverridePropertiesList
125
+ * // { // AssetBundleExportJobFolderOverrideProperties
126
+ * // Arn: "STRING_VALUE", // required
127
+ * // Properties: [ // AssetBundleExportJobFolderPropertyToOverrideList // required
128
+ * // "Name" || "ParentFolderArn",
129
+ * // ],
130
+ * // },
131
+ * // ],
124
132
  * // },
125
133
  * // RequestId: "STRING_VALUE",
126
134
  * // Status: Number("int"),
@@ -135,6 +143,8 @@ declare const DescribeAssetBundleExportJobCommand_base: {
135
143
  * // Message: "STRING_VALUE",
136
144
  * // },
137
145
  * // ],
146
+ * // IncludeFolderMemberships: true || false,
147
+ * // IncludeFolderMembers: "RECURSE" || "ONE_LEVEL" || "NONE",
138
148
  * // };
139
149
  *
140
150
  * ```
@@ -266,6 +266,13 @@ declare const DescribeAssetBundleImportJobCommand_base: {
266
266
  * // Name: "STRING_VALUE",
267
267
  * // },
268
268
  * // ],
269
+ * // Folders: [ // AssetBundleImportJobFolderOverrideParametersList
270
+ * // { // AssetBundleImportJobFolderOverrideParameters
271
+ * // FolderId: "STRING_VALUE", // required
272
+ * // Name: "STRING_VALUE",
273
+ * // ParentFolderArn: "STRING_VALUE",
274
+ * // },
275
+ * // ],
269
276
  * // },
270
277
  * // FailureAction: "DO_NOTHING" || "ROLLBACK",
271
278
  * // RequestId: "STRING_VALUE",
@@ -349,6 +356,12 @@ declare const DescribeAssetBundleImportJobCommand_base: {
349
356
  * // },
350
357
  * // },
351
358
  * // ],
359
+ * // Folders: [ // AssetBundleImportJobFolderOverridePermissionsList
360
+ * // { // AssetBundleImportJobFolderOverridePermissions
361
+ * // FolderIds: "<AssetBundleRestrictiveResourceIdList>", // required
362
+ * // Permissions: "<AssetBundleResourcePermissions>",
363
+ * // },
364
+ * // ],
352
365
  * // },
353
366
  * // OverrideTags: { // AssetBundleImportJobOverrideTags
354
367
  * // VPCConnections: [ // AssetBundleImportJobVPCConnectionOverrideTagsList
@@ -412,6 +425,12 @@ declare const DescribeAssetBundleImportJobCommand_base: {
412
425
  * // Tags: "<TagList>", // required
413
426
  * // },
414
427
  * // ],
428
+ * // Folders: [ // AssetBundleImportJobFolderOverrideTagsList
429
+ * // { // AssetBundleImportJobFolderOverrideTags
430
+ * // FolderIds: "<AssetBundleRestrictiveResourceIdList>", // required
431
+ * // Tags: "<TagList>", // required
432
+ * // },
433
+ * // ],
415
434
  * // },
416
435
  * // OverrideValidationStrategy: { // AssetBundleImportJobOverrideValidationStrategy
417
436
  * // StrictModeForAllResources: true || false,
@@ -290,6 +290,9 @@ declare const DescribeTopicCommand_base: {
290
290
  * // ],
291
291
  * // },
292
292
  * // ],
293
+ * // ConfigOptions: { // TopicConfigOptions
294
+ * // QBusinessInsightsEnabled: true || false,
295
+ * // },
293
296
  * // },
294
297
  * // RequestId: "STRING_VALUE",
295
298
  * // Status: Number("int"),
@@ -1,6 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import { DescribeTopicRefreshRequest, DescribeTopicRefreshResponse } from "../models/models_3";
3
+ import { DescribeTopicRefreshRequest } from "../models/models_3";
4
+ import { DescribeTopicRefreshResponse } from "../models/models_4";
4
5
  import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
5
6
  /**
6
7
  * @public
@@ -1,6 +1,6 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import { DescribeTopicRefreshScheduleRequest, DescribeTopicRefreshScheduleResponse } from "../models/models_3";
3
+ import { DescribeTopicRefreshScheduleRequest, DescribeTopicRefreshScheduleResponse } from "../models/models_4";
4
4
  import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
5
5
  /**
6
6
  * @public
@@ -1,7 +1,6 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import { DescribeUserRequest } from "../models/models_3";
4
- import { DescribeUserResponse } from "../models/models_4";
3
+ import { DescribeUserRequest, DescribeUserResponse } from "../models/models_4";
5
4
  import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
6
5
  /**
7
6
  * @public
@@ -104,12 +104,22 @@ declare const StartAssetBundleExportJobCommand_base: {
104
104
  * ],
105
105
  * },
106
106
  * ],
107
+ * Folders: [ // AssetBundleExportJobFolderOverridePropertiesList
108
+ * { // AssetBundleExportJobFolderOverrideProperties
109
+ * Arn: "STRING_VALUE", // required
110
+ * Properties: [ // AssetBundleExportJobFolderPropertyToOverrideList // required
111
+ * "Name" || "ParentFolderArn",
112
+ * ],
113
+ * },
114
+ * ],
107
115
  * },
108
116
  * IncludePermissions: true || false,
109
117
  * IncludeTags: true || false,
110
118
  * ValidationStrategy: { // AssetBundleExportJobValidationStrategy
111
119
  * StrictModeForAllResources: true || false,
112
120
  * },
121
+ * IncludeFolderMemberships: true || false,
122
+ * IncludeFolderMembers: "RECURSE" || "ONE_LEVEL" || "NONE",
113
123
  * };
114
124
  * const command = new StartAssetBundleExportJobCommand(input);
115
125
  * const response = await client.send(command);
@@ -244,6 +244,13 @@ declare const StartAssetBundleImportJobCommand_base: {
244
244
  * Name: "STRING_VALUE",
245
245
  * },
246
246
  * ],
247
+ * Folders: [ // AssetBundleImportJobFolderOverrideParametersList
248
+ * { // AssetBundleImportJobFolderOverrideParameters
249
+ * FolderId: "STRING_VALUE", // required
250
+ * Name: "STRING_VALUE",
251
+ * ParentFolderArn: "STRING_VALUE",
252
+ * },
253
+ * ],
247
254
  * },
248
255
  * FailureAction: "DO_NOTHING" || "ROLLBACK",
249
256
  * OverridePermissions: { // AssetBundleImportJobOverridePermissions
@@ -325,6 +332,12 @@ declare const StartAssetBundleImportJobCommand_base: {
325
332
  * },
326
333
  * },
327
334
  * ],
335
+ * Folders: [ // AssetBundleImportJobFolderOverridePermissionsList
336
+ * { // AssetBundleImportJobFolderOverridePermissions
337
+ * FolderIds: "<AssetBundleRestrictiveResourceIdList>", // required
338
+ * Permissions: "<AssetBundleResourcePermissions>",
339
+ * },
340
+ * ],
328
341
  * },
329
342
  * OverrideTags: { // AssetBundleImportJobOverrideTags
330
343
  * VPCConnections: [ // AssetBundleImportJobVPCConnectionOverrideTagsList
@@ -388,6 +401,12 @@ declare const StartAssetBundleImportJobCommand_base: {
388
401
  * Tags: "<TagList>", // required
389
402
  * },
390
403
  * ],
404
+ * Folders: [ // AssetBundleImportJobFolderOverrideTagsList
405
+ * { // AssetBundleImportJobFolderOverrideTags
406
+ * FolderIds: "<AssetBundleRestrictiveResourceIdList>", // required
407
+ * Tags: "<TagList>", // required
408
+ * },
409
+ * ],
391
410
  * },
392
411
  * OverrideValidationStrategy: { // AssetBundleImportJobOverrideValidationStrategy
393
412
  * StrictModeForAllResources: true || false,
@@ -284,6 +284,9 @@ declare const UpdateTopicCommand_base: {
284
284
  * ],
285
285
  * },
286
286
  * ],
287
+ * ConfigOptions: { // TopicConfigOptions
288
+ * QBusinessInsightsEnabled: true || false,
289
+ * },
287
290
  * },
288
291
  * };
289
292
  * const command = new UpdateTopicCommand(input);