@aws-sdk/client-quicksight 3.686.0 → 3.691.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/dist-cjs/index.js CHANGED
@@ -53,6 +53,7 @@ __export(src_exports, {
53
53
  AssetBundleImportSourceFilterSensitiveLog: () => AssetBundleImportSourceFilterSensitiveLog,
54
54
  AssignmentStatus: () => AssignmentStatus,
55
55
  AuthenticationMethodOption: () => AuthenticationMethodOption,
56
+ AuthenticationType: () => AuthenticationType,
56
57
  AuthorSpecifiedAggregation: () => AuthorSpecifiedAggregation,
57
58
  AxisBinding: () => AxisBinding,
58
59
  BarChartAggregatedFieldWellsFilterSensitiveLog: () => BarChartAggregatedFieldWellsFilterSensitiveLog,
@@ -2722,6 +2723,11 @@ var AssetBundleImportFailureAction = {
2722
2723
  DO_NOTHING: "DO_NOTHING",
2723
2724
  ROLLBACK: "ROLLBACK"
2724
2725
  };
2726
+ var AuthenticationType = {
2727
+ PASSWORD: "PASSWORD",
2728
+ TOKEN: "TOKEN",
2729
+ X509: "X509"
2730
+ };
2725
2731
  var StarburstProductType = {
2726
2732
  ENTERPRISE: "ENTERPRISE",
2727
2733
  GALAXY: "GALAXY"
@@ -3271,10 +3277,6 @@ var RowLevelPermissionPolicy = {
3271
3277
  DENY_ACCESS: "DENY_ACCESS",
3272
3278
  GRANT_ACCESS: "GRANT_ACCESS"
3273
3279
  };
3274
- var Status = {
3275
- DISABLED: "DISABLED",
3276
- ENABLED: "ENABLED"
3277
- };
3278
3280
  var TreeMapConfigurationFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
3279
3281
  ...obj,
3280
3282
  ...obj.DataLabels && { DataLabels: DataLabelOptionsFilterSensitiveLog(obj.DataLabels) }
@@ -3484,6 +3486,10 @@ var LogicalTableFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
3484
3486
 
3485
3487
  // src/models/models_3.ts
3486
3488
 
3489
+ var Status = {
3490
+ DISABLED: "DISABLED",
3491
+ ENABLED: "ENABLED"
3492
+ };
3487
3493
  var DataSourceType = {
3488
3494
  ADOBE_ANALYTICS: "ADOBE_ANALYTICS",
3489
3495
  AMAZON_ELASTICSEARCH: "AMAZON_ELASTICSEARCH",
@@ -19532,6 +19538,7 @@ var paginateSearchGroups = (0, import_core.createPaginator)(QuickSightClient, Se
19532
19538
  AssetBundleExportFormat,
19533
19539
  AssetBundleExportJobStatus,
19534
19540
  AssetBundleImportFailureAction,
19541
+ AuthenticationType,
19535
19542
  StarburstProductType,
19536
19543
  DataSourceParameters,
19537
19544
  AssetBundleImportJobStatus,
@@ -19586,7 +19593,6 @@ var paginateSearchGroups = (0, import_core.createPaginator)(QuickSightClient, Se
19586
19593
  PhysicalTable,
19587
19594
  RowLevelPermissionFormatVersion,
19588
19595
  RowLevelPermissionPolicy,
19589
- Status,
19590
19596
  TreeMapConfigurationFilterSensitiveLog,
19591
19597
  TreeMapVisualFilterSensitiveLog,
19592
19598
  WaterfallChartAggregatedFieldWellsFilterSensitiveLog,
@@ -19627,6 +19633,7 @@ var paginateSearchGroups = (0, import_core.createPaginator)(QuickSightClient, Se
19627
19633
  TagColumnOperationFilterSensitiveLog,
19628
19634
  TransformOperationFilterSensitiveLog,
19629
19635
  LogicalTableFilterSensitiveLog,
19636
+ Status,
19630
19637
  DataSourceType,
19631
19638
  CustomerManagedKeyUnavailableException,
19632
19639
  FolderType,
@@ -113,6 +113,11 @@ export const AssetBundleImportFailureAction = {
113
113
  DO_NOTHING: "DO_NOTHING",
114
114
  ROLLBACK: "ROLLBACK",
115
115
  };
116
+ export const AuthenticationType = {
117
+ PASSWORD: "PASSWORD",
118
+ TOKEN: "TOKEN",
119
+ X509: "X509",
120
+ };
116
121
  export const StarburstProductType = {
117
122
  ENTERPRISE: "ENTERPRISE",
118
123
  GALAXY: "GALAXY",
@@ -607,10 +612,6 @@ export const RowLevelPermissionPolicy = {
607
612
  DENY_ACCESS: "DENY_ACCESS",
608
613
  GRANT_ACCESS: "GRANT_ACCESS",
609
614
  };
610
- export const Status = {
611
- DISABLED: "DISABLED",
612
- ENABLED: "ENABLED",
613
- };
614
615
  export const TreeMapConfigurationFilterSensitiveLog = (obj) => ({
615
616
  ...obj,
616
617
  ...(obj.DataLabels && { DataLabels: DataLabelOptionsFilterSensitiveLog(obj.DataLabels) }),
@@ -2,6 +2,10 @@ import { SENSITIVE_STRING } from "@smithy/smithy-client";
2
2
  import { CalculatedFieldFilterSensitiveLog, ColumnConfigurationFilterSensitiveLog, ParameterDeclarationFilterSensitiveLog, } from "./models_0";
3
3
  import { _ParametersFilterSensitiveLog, AssetBundleImportSourceDescriptionFilterSensitiveLog, LogicalTableFilterSensitiveLog, } from "./models_2";
4
4
  import { QuickSightServiceException as __BaseException } from "./QuickSightServiceException";
5
+ export const Status = {
6
+ DISABLED: "DISABLED",
7
+ ENABLED: "ENABLED",
8
+ };
5
9
  export const DataSourceType = {
6
10
  ADOBE_ANALYTICS: "ADOBE_ANALYTICS",
7
11
  AMAZON_ELASTICSEARCH: "AMAZON_ELASTICSEARCH",
@@ -123,6 +123,16 @@ declare const CreateDataSourceCommand_base: {
123
123
  * Host: "STRING_VALUE", // required
124
124
  * Database: "STRING_VALUE", // required
125
125
  * Warehouse: "STRING_VALUE", // required
126
+ * AuthenticationType: "PASSWORD" || "TOKEN" || "X509",
127
+ * DatabaseAccessControlRole: "STRING_VALUE",
128
+ * OAuthParameters: { // OAuthParameters
129
+ * TokenProviderUrl: "STRING_VALUE", // required
130
+ * OAuthScope: "STRING_VALUE",
131
+ * IdentityProviderVpcConnectionProperties: { // VpcConnectionProperties
132
+ * VpcConnectionArn: "STRING_VALUE", // required
133
+ * },
134
+ * IdentityProviderResourceUri: "STRING_VALUE",
135
+ * },
126
136
  * },
127
137
  * SparkParameters: { // SparkParameters
128
138
  * Host: "STRING_VALUE", // required
@@ -159,6 +169,16 @@ declare const CreateDataSourceCommand_base: {
159
169
  * Port: Number("int"), // required
160
170
  * Catalog: "STRING_VALUE", // required
161
171
  * ProductType: "GALAXY" || "ENTERPRISE",
172
+ * DatabaseAccessControlRole: "STRING_VALUE",
173
+ * AuthenticationType: "PASSWORD" || "TOKEN" || "X509",
174
+ * OAuthParameters: {
175
+ * TokenProviderUrl: "STRING_VALUE", // required
176
+ * OAuthScope: "STRING_VALUE",
177
+ * IdentityProviderVpcConnectionProperties: {
178
+ * VpcConnectionArn: "STRING_VALUE", // required
179
+ * },
180
+ * IdentityProviderResourceUri: "STRING_VALUE",
181
+ * },
162
182
  * },
163
183
  * TrinoParameters: { // TrinoParameters
164
184
  * Host: "STRING_VALUE", // required
@@ -259,6 +279,16 @@ declare const CreateDataSourceCommand_base: {
259
279
  * Host: "STRING_VALUE", // required
260
280
  * Database: "STRING_VALUE", // required
261
281
  * Warehouse: "STRING_VALUE", // required
282
+ * AuthenticationType: "PASSWORD" || "TOKEN" || "X509",
283
+ * DatabaseAccessControlRole: "STRING_VALUE",
284
+ * OAuthParameters: {
285
+ * TokenProviderUrl: "STRING_VALUE", // required
286
+ * OAuthScope: "STRING_VALUE",
287
+ * IdentityProviderVpcConnectionProperties: {
288
+ * VpcConnectionArn: "STRING_VALUE", // required
289
+ * },
290
+ * IdentityProviderResourceUri: "STRING_VALUE",
291
+ * },
262
292
  * },
263
293
  * SparkParameters: {
264
294
  * Host: "STRING_VALUE", // required
@@ -295,6 +325,16 @@ declare const CreateDataSourceCommand_base: {
295
325
  * Port: Number("int"), // required
296
326
  * Catalog: "STRING_VALUE", // required
297
327
  * ProductType: "GALAXY" || "ENTERPRISE",
328
+ * DatabaseAccessControlRole: "STRING_VALUE",
329
+ * AuthenticationType: "PASSWORD" || "TOKEN" || "X509",
330
+ * OAuthParameters: {
331
+ * TokenProviderUrl: "STRING_VALUE", // required
332
+ * OAuthScope: "STRING_VALUE",
333
+ * IdentityProviderVpcConnectionProperties: {
334
+ * VpcConnectionArn: "STRING_VALUE", // required
335
+ * },
336
+ * IdentityProviderResourceUri: "STRING_VALUE",
337
+ * },
298
338
  * },
299
339
  * TrinoParameters: {
300
340
  * Host: "STRING_VALUE", // required
@@ -319,9 +359,7 @@ declare const CreateDataSourceCommand_base: {
319
359
  * ],
320
360
  * },
321
361
  * ],
322
- * VpcConnectionProperties: { // VpcConnectionProperties
323
- * VpcConnectionArn: "STRING_VALUE", // required
324
- * },
362
+ * VpcConnectionProperties: "<VpcConnectionProperties>",
325
363
  * SslProperties: { // SslProperties
326
364
  * DisableSsl: true || false,
327
365
  * },
@@ -180,6 +180,16 @@ declare const DescribeAssetBundleImportJobCommand_base: {
180
180
  * // Host: "STRING_VALUE", // required
181
181
  * // Database: "STRING_VALUE", // required
182
182
  * // Warehouse: "STRING_VALUE", // required
183
+ * // AuthenticationType: "PASSWORD" || "TOKEN" || "X509",
184
+ * // DatabaseAccessControlRole: "STRING_VALUE",
185
+ * // OAuthParameters: { // OAuthParameters
186
+ * // TokenProviderUrl: "STRING_VALUE", // required
187
+ * // OAuthScope: "STRING_VALUE",
188
+ * // IdentityProviderVpcConnectionProperties: { // VpcConnectionProperties
189
+ * // VpcConnectionArn: "STRING_VALUE", // required
190
+ * // },
191
+ * // IdentityProviderResourceUri: "STRING_VALUE",
192
+ * // },
183
193
  * // },
184
194
  * // SparkParameters: { // SparkParameters
185
195
  * // Host: "STRING_VALUE", // required
@@ -216,6 +226,16 @@ declare const DescribeAssetBundleImportJobCommand_base: {
216
226
  * // Port: Number("int"), // required
217
227
  * // Catalog: "STRING_VALUE", // required
218
228
  * // ProductType: "GALAXY" || "ENTERPRISE",
229
+ * // DatabaseAccessControlRole: "STRING_VALUE",
230
+ * // AuthenticationType: "PASSWORD" || "TOKEN" || "X509",
231
+ * // OAuthParameters: {
232
+ * // TokenProviderUrl: "STRING_VALUE", // required
233
+ * // OAuthScope: "STRING_VALUE",
234
+ * // IdentityProviderVpcConnectionProperties: {
235
+ * // VpcConnectionArn: "STRING_VALUE", // required
236
+ * // },
237
+ * // IdentityProviderResourceUri: "STRING_VALUE",
238
+ * // },
219
239
  * // },
220
240
  * // TrinoParameters: { // TrinoParameters
221
241
  * // Host: "STRING_VALUE", // required
@@ -227,7 +247,7 @@ declare const DescribeAssetBundleImportJobCommand_base: {
227
247
  * // DataSetRegion: "STRING_VALUE",
228
248
  * // },
229
249
  * // },
230
- * // VpcConnectionProperties: { // VpcConnectionProperties
250
+ * // VpcConnectionProperties: {
231
251
  * // VpcConnectionArn: "STRING_VALUE", // required
232
252
  * // },
233
253
  * // SslProperties: { // SslProperties
@@ -133,6 +133,16 @@ declare const DescribeDataSourceCommand_base: {
133
133
  * // Host: "STRING_VALUE", // required
134
134
  * // Database: "STRING_VALUE", // required
135
135
  * // Warehouse: "STRING_VALUE", // required
136
+ * // AuthenticationType: "PASSWORD" || "TOKEN" || "X509",
137
+ * // DatabaseAccessControlRole: "STRING_VALUE",
138
+ * // OAuthParameters: { // OAuthParameters
139
+ * // TokenProviderUrl: "STRING_VALUE", // required
140
+ * // OAuthScope: "STRING_VALUE",
141
+ * // IdentityProviderVpcConnectionProperties: { // VpcConnectionProperties
142
+ * // VpcConnectionArn: "STRING_VALUE", // required
143
+ * // },
144
+ * // IdentityProviderResourceUri: "STRING_VALUE",
145
+ * // },
136
146
  * // },
137
147
  * // SparkParameters: { // SparkParameters
138
148
  * // Host: "STRING_VALUE", // required
@@ -169,6 +179,16 @@ declare const DescribeDataSourceCommand_base: {
169
179
  * // Port: Number("int"), // required
170
180
  * // Catalog: "STRING_VALUE", // required
171
181
  * // ProductType: "GALAXY" || "ENTERPRISE",
182
+ * // DatabaseAccessControlRole: "STRING_VALUE",
183
+ * // AuthenticationType: "PASSWORD" || "TOKEN" || "X509",
184
+ * // OAuthParameters: {
185
+ * // TokenProviderUrl: "STRING_VALUE", // required
186
+ * // OAuthScope: "STRING_VALUE",
187
+ * // IdentityProviderVpcConnectionProperties: {
188
+ * // VpcConnectionArn: "STRING_VALUE", // required
189
+ * // },
190
+ * // IdentityProviderResourceUri: "STRING_VALUE",
191
+ * // },
172
192
  * // },
173
193
  * // TrinoParameters: { // TrinoParameters
174
194
  * // Host: "STRING_VALUE", // required
@@ -265,6 +285,16 @@ declare const DescribeDataSourceCommand_base: {
265
285
  * // Host: "STRING_VALUE", // required
266
286
  * // Database: "STRING_VALUE", // required
267
287
  * // Warehouse: "STRING_VALUE", // required
288
+ * // AuthenticationType: "PASSWORD" || "TOKEN" || "X509",
289
+ * // DatabaseAccessControlRole: "STRING_VALUE",
290
+ * // OAuthParameters: {
291
+ * // TokenProviderUrl: "STRING_VALUE", // required
292
+ * // OAuthScope: "STRING_VALUE",
293
+ * // IdentityProviderVpcConnectionProperties: {
294
+ * // VpcConnectionArn: "STRING_VALUE", // required
295
+ * // },
296
+ * // IdentityProviderResourceUri: "STRING_VALUE",
297
+ * // },
268
298
  * // },
269
299
  * // SparkParameters: {
270
300
  * // Host: "STRING_VALUE", // required
@@ -301,6 +331,16 @@ declare const DescribeDataSourceCommand_base: {
301
331
  * // Port: Number("int"), // required
302
332
  * // Catalog: "STRING_VALUE", // required
303
333
  * // ProductType: "GALAXY" || "ENTERPRISE",
334
+ * // DatabaseAccessControlRole: "STRING_VALUE",
335
+ * // AuthenticationType: "PASSWORD" || "TOKEN" || "X509",
336
+ * // OAuthParameters: {
337
+ * // TokenProviderUrl: "STRING_VALUE", // required
338
+ * // OAuthScope: "STRING_VALUE",
339
+ * // IdentityProviderVpcConnectionProperties: {
340
+ * // VpcConnectionArn: "STRING_VALUE", // required
341
+ * // },
342
+ * // IdentityProviderResourceUri: "STRING_VALUE",
343
+ * // },
304
344
  * // },
305
345
  * // TrinoParameters: {
306
346
  * // Host: "STRING_VALUE", // required
@@ -313,9 +353,7 @@ declare const DescribeDataSourceCommand_base: {
313
353
  * // },
314
354
  * // },
315
355
  * // ],
316
- * // VpcConnectionProperties: { // VpcConnectionProperties
317
- * // VpcConnectionArn: "STRING_VALUE", // required
318
- * // },
356
+ * // VpcConnectionProperties: "<VpcConnectionProperties>",
319
357
  * // SslProperties: { // SslProperties
320
358
  * // DisableSsl: true || false,
321
359
  * // },
@@ -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 { DescribeTopicPermissionsRequest, DescribeTopicPermissionsResponse } from "../models/models_3";
3
+ import { DescribeTopicPermissionsRequest } from "../models/models_3";
4
+ import { DescribeTopicPermissionsResponse } from "../models/models_4";
4
5
  import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
5
6
  /**
6
7
  * @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 { DescribeTopicRefreshRequest } from "../models/models_3";
4
- import { DescribeTopicRefreshResponse } from "../models/models_4";
3
+ import { DescribeTopicRefreshRequest, DescribeTopicRefreshResponse } from "../models/models_4";
5
4
  import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient";
6
5
  /**
7
6
  * @public
@@ -135,6 +135,16 @@ declare const ListDataSourcesCommand_base: {
135
135
  * // Host: "STRING_VALUE", // required
136
136
  * // Database: "STRING_VALUE", // required
137
137
  * // Warehouse: "STRING_VALUE", // required
138
+ * // AuthenticationType: "PASSWORD" || "TOKEN" || "X509",
139
+ * // DatabaseAccessControlRole: "STRING_VALUE",
140
+ * // OAuthParameters: { // OAuthParameters
141
+ * // TokenProviderUrl: "STRING_VALUE", // required
142
+ * // OAuthScope: "STRING_VALUE",
143
+ * // IdentityProviderVpcConnectionProperties: { // VpcConnectionProperties
144
+ * // VpcConnectionArn: "STRING_VALUE", // required
145
+ * // },
146
+ * // IdentityProviderResourceUri: "STRING_VALUE",
147
+ * // },
138
148
  * // },
139
149
  * // SparkParameters: { // SparkParameters
140
150
  * // Host: "STRING_VALUE", // required
@@ -171,6 +181,16 @@ declare const ListDataSourcesCommand_base: {
171
181
  * // Port: Number("int"), // required
172
182
  * // Catalog: "STRING_VALUE", // required
173
183
  * // ProductType: "GALAXY" || "ENTERPRISE",
184
+ * // DatabaseAccessControlRole: "STRING_VALUE",
185
+ * // AuthenticationType: "PASSWORD" || "TOKEN" || "X509",
186
+ * // OAuthParameters: {
187
+ * // TokenProviderUrl: "STRING_VALUE", // required
188
+ * // OAuthScope: "STRING_VALUE",
189
+ * // IdentityProviderVpcConnectionProperties: {
190
+ * // VpcConnectionArn: "STRING_VALUE", // required
191
+ * // },
192
+ * // IdentityProviderResourceUri: "STRING_VALUE",
193
+ * // },
174
194
  * // },
175
195
  * // TrinoParameters: { // TrinoParameters
176
196
  * // Host: "STRING_VALUE", // required
@@ -267,6 +287,16 @@ declare const ListDataSourcesCommand_base: {
267
287
  * // Host: "STRING_VALUE", // required
268
288
  * // Database: "STRING_VALUE", // required
269
289
  * // Warehouse: "STRING_VALUE", // required
290
+ * // AuthenticationType: "PASSWORD" || "TOKEN" || "X509",
291
+ * // DatabaseAccessControlRole: "STRING_VALUE",
292
+ * // OAuthParameters: {
293
+ * // TokenProviderUrl: "STRING_VALUE", // required
294
+ * // OAuthScope: "STRING_VALUE",
295
+ * // IdentityProviderVpcConnectionProperties: {
296
+ * // VpcConnectionArn: "STRING_VALUE", // required
297
+ * // },
298
+ * // IdentityProviderResourceUri: "STRING_VALUE",
299
+ * // },
270
300
  * // },
271
301
  * // SparkParameters: {
272
302
  * // Host: "STRING_VALUE", // required
@@ -303,6 +333,16 @@ declare const ListDataSourcesCommand_base: {
303
333
  * // Port: Number("int"), // required
304
334
  * // Catalog: "STRING_VALUE", // required
305
335
  * // ProductType: "GALAXY" || "ENTERPRISE",
336
+ * // DatabaseAccessControlRole: "STRING_VALUE",
337
+ * // AuthenticationType: "PASSWORD" || "TOKEN" || "X509",
338
+ * // OAuthParameters: {
339
+ * // TokenProviderUrl: "STRING_VALUE", // required
340
+ * // OAuthScope: "STRING_VALUE",
341
+ * // IdentityProviderVpcConnectionProperties: {
342
+ * // VpcConnectionArn: "STRING_VALUE", // required
343
+ * // },
344
+ * // IdentityProviderResourceUri: "STRING_VALUE",
345
+ * // },
306
346
  * // },
307
347
  * // TrinoParameters: {
308
348
  * // Host: "STRING_VALUE", // required
@@ -315,9 +355,7 @@ declare const ListDataSourcesCommand_base: {
315
355
  * // },
316
356
  * // },
317
357
  * // ],
318
- * // VpcConnectionProperties: { // VpcConnectionProperties
319
- * // VpcConnectionArn: "STRING_VALUE", // required
320
- * // },
358
+ * // VpcConnectionProperties: "<VpcConnectionProperties>",
321
359
  * // SslProperties: { // SslProperties
322
360
  * // DisableSsl: true || false,
323
361
  * // },
@@ -158,6 +158,16 @@ declare const StartAssetBundleImportJobCommand_base: {
158
158
  * Host: "STRING_VALUE", // required
159
159
  * Database: "STRING_VALUE", // required
160
160
  * Warehouse: "STRING_VALUE", // required
161
+ * AuthenticationType: "PASSWORD" || "TOKEN" || "X509",
162
+ * DatabaseAccessControlRole: "STRING_VALUE",
163
+ * OAuthParameters: { // OAuthParameters
164
+ * TokenProviderUrl: "STRING_VALUE", // required
165
+ * OAuthScope: "STRING_VALUE",
166
+ * IdentityProviderVpcConnectionProperties: { // VpcConnectionProperties
167
+ * VpcConnectionArn: "STRING_VALUE", // required
168
+ * },
169
+ * IdentityProviderResourceUri: "STRING_VALUE",
170
+ * },
161
171
  * },
162
172
  * SparkParameters: { // SparkParameters
163
173
  * Host: "STRING_VALUE", // required
@@ -194,6 +204,16 @@ declare const StartAssetBundleImportJobCommand_base: {
194
204
  * Port: Number("int"), // required
195
205
  * Catalog: "STRING_VALUE", // required
196
206
  * ProductType: "GALAXY" || "ENTERPRISE",
207
+ * DatabaseAccessControlRole: "STRING_VALUE",
208
+ * AuthenticationType: "PASSWORD" || "TOKEN" || "X509",
209
+ * OAuthParameters: {
210
+ * TokenProviderUrl: "STRING_VALUE", // required
211
+ * OAuthScope: "STRING_VALUE",
212
+ * IdentityProviderVpcConnectionProperties: {
213
+ * VpcConnectionArn: "STRING_VALUE", // required
214
+ * },
215
+ * IdentityProviderResourceUri: "STRING_VALUE",
216
+ * },
197
217
  * },
198
218
  * TrinoParameters: { // TrinoParameters
199
219
  * Host: "STRING_VALUE", // required
@@ -205,7 +225,7 @@ declare const StartAssetBundleImportJobCommand_base: {
205
225
  * DataSetRegion: "STRING_VALUE",
206
226
  * },
207
227
  * },
208
- * VpcConnectionProperties: { // VpcConnectionProperties
228
+ * VpcConnectionProperties: {
209
229
  * VpcConnectionArn: "STRING_VALUE", // required
210
230
  * },
211
231
  * SslProperties: { // SslProperties
@@ -122,6 +122,16 @@ declare const UpdateDataSourceCommand_base: {
122
122
  * Host: "STRING_VALUE", // required
123
123
  * Database: "STRING_VALUE", // required
124
124
  * Warehouse: "STRING_VALUE", // required
125
+ * AuthenticationType: "PASSWORD" || "TOKEN" || "X509",
126
+ * DatabaseAccessControlRole: "STRING_VALUE",
127
+ * OAuthParameters: { // OAuthParameters
128
+ * TokenProviderUrl: "STRING_VALUE", // required
129
+ * OAuthScope: "STRING_VALUE",
130
+ * IdentityProviderVpcConnectionProperties: { // VpcConnectionProperties
131
+ * VpcConnectionArn: "STRING_VALUE", // required
132
+ * },
133
+ * IdentityProviderResourceUri: "STRING_VALUE",
134
+ * },
125
135
  * },
126
136
  * SparkParameters: { // SparkParameters
127
137
  * Host: "STRING_VALUE", // required
@@ -158,6 +168,16 @@ declare const UpdateDataSourceCommand_base: {
158
168
  * Port: Number("int"), // required
159
169
  * Catalog: "STRING_VALUE", // required
160
170
  * ProductType: "GALAXY" || "ENTERPRISE",
171
+ * DatabaseAccessControlRole: "STRING_VALUE",
172
+ * AuthenticationType: "PASSWORD" || "TOKEN" || "X509",
173
+ * OAuthParameters: {
174
+ * TokenProviderUrl: "STRING_VALUE", // required
175
+ * OAuthScope: "STRING_VALUE",
176
+ * IdentityProviderVpcConnectionProperties: {
177
+ * VpcConnectionArn: "STRING_VALUE", // required
178
+ * },
179
+ * IdentityProviderResourceUri: "STRING_VALUE",
180
+ * },
161
181
  * },
162
182
  * TrinoParameters: { // TrinoParameters
163
183
  * Host: "STRING_VALUE", // required
@@ -258,6 +278,16 @@ declare const UpdateDataSourceCommand_base: {
258
278
  * Host: "STRING_VALUE", // required
259
279
  * Database: "STRING_VALUE", // required
260
280
  * Warehouse: "STRING_VALUE", // required
281
+ * AuthenticationType: "PASSWORD" || "TOKEN" || "X509",
282
+ * DatabaseAccessControlRole: "STRING_VALUE",
283
+ * OAuthParameters: {
284
+ * TokenProviderUrl: "STRING_VALUE", // required
285
+ * OAuthScope: "STRING_VALUE",
286
+ * IdentityProviderVpcConnectionProperties: {
287
+ * VpcConnectionArn: "STRING_VALUE", // required
288
+ * },
289
+ * IdentityProviderResourceUri: "STRING_VALUE",
290
+ * },
261
291
  * },
262
292
  * SparkParameters: {
263
293
  * Host: "STRING_VALUE", // required
@@ -294,6 +324,16 @@ declare const UpdateDataSourceCommand_base: {
294
324
  * Port: Number("int"), // required
295
325
  * Catalog: "STRING_VALUE", // required
296
326
  * ProductType: "GALAXY" || "ENTERPRISE",
327
+ * DatabaseAccessControlRole: "STRING_VALUE",
328
+ * AuthenticationType: "PASSWORD" || "TOKEN" || "X509",
329
+ * OAuthParameters: {
330
+ * TokenProviderUrl: "STRING_VALUE", // required
331
+ * OAuthScope: "STRING_VALUE",
332
+ * IdentityProviderVpcConnectionProperties: {
333
+ * VpcConnectionArn: "STRING_VALUE", // required
334
+ * },
335
+ * IdentityProviderResourceUri: "STRING_VALUE",
336
+ * },
297
337
  * },
298
338
  * TrinoParameters: {
299
339
  * Host: "STRING_VALUE", // required
@@ -310,9 +350,7 @@ declare const UpdateDataSourceCommand_base: {
310
350
  * CopySourceArn: "STRING_VALUE",
311
351
  * SecretArn: "STRING_VALUE",
312
352
  * },
313
- * VpcConnectionProperties: { // VpcConnectionProperties
314
- * VpcConnectionArn: "STRING_VALUE", // required
315
- * },
353
+ * VpcConnectionProperties: "<VpcConnectionProperties>",
316
354
  * SslProperties: { // SslProperties
317
355
  * DisableSsl: true || false,
318
356
  * },