@aws-sdk/client-dataexchange 3.1075.0 → 3.1076.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
@@ -1,21 +1,57 @@
1
- var __exportStar = (m, e) => { Object.assign(e, m); };
2
- const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
1
+ const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
3
2
  const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
4
- const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
3
+ const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
5
4
  exports.$Command = Command;
6
5
  exports.__Client = Client;
7
- const { resolveRegionConfig } = require("@smithy/core/config");
8
- const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
9
- const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
10
- const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
11
- const { getSchemaSerdePlugin } = require("@smithy/core/schema");
12
- const { resolveHttpAuthSchemeConfig, defaultDataExchangeHttpAuthSchemeParametersProvider } = require("./auth/httpAuthSchemeProvider");
13
- const { getRuntimeConfig } = require("./runtimeConfig");
14
- const { AcceptDataGrant$, CancelJob$, CreateDataGrant$, CreateDataSet$, CreateEventAction$, CreateJob$, CreateRevision$, DeleteAsset$, DeleteDataGrant$, DeleteDataSet$, DeleteEventAction$, DeleteRevision$, GetAsset$, GetDataGrant$, GetDataSet$, GetEventAction$, GetJob$, GetReceivedDataGrant$, GetRevision$, ListDataGrants$, ListDataSetRevisions$, ListDataSets$, ListEventActions$, ListJobs$, ListReceivedDataGrants$, ListRevisionAssets$, ListTagsForResource$, RevokeRevision$, SendApiAsset$, SendDataSetNotification$, StartJob$, TagResource$, UntagResource$, UpdateAsset$, UpdateDataSet$, UpdateEventAction$, UpdateRevision$ } = require("./schemas/schemas_0");
15
- __exportStar(require("./schemas/schemas_0"), exports);
16
- __exportStar(require("./models/errors"), exports);
17
- const { DataExchangeServiceException } = require("./models/DataExchangeServiceException");
18
- exports.DataExchangeServiceException = DataExchangeServiceException;
6
+ const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
7
+ const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
8
+ const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
9
+ const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
10
+ const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
11
+ const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
12
+ const { defaultProvider } = require("@aws-sdk/credential-provider-node");
13
+ const { toUtf8, fromUtf8, toBase64, fromBase64, Hash, calculateBodyLength } = require("@smithy/core/serde");
14
+ const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
15
+ const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
16
+
17
+ const defaultDataExchangeHttpAuthSchemeParametersProvider = async (config, context, input) => {
18
+ return {
19
+ operation: getSmithyContext(context).operation,
20
+ region: await normalizeProvider(config.region)() || (() => {
21
+ throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
22
+ })(),
23
+ };
24
+ };
25
+ function createAwsAuthSigv4HttpAuthOption(authParameters) {
26
+ return {
27
+ schemeId: "aws.auth#sigv4",
28
+ signingProperties: {
29
+ name: "dataexchange",
30
+ region: authParameters.region,
31
+ },
32
+ propertiesExtractor: (config, context) => ({
33
+ signingProperties: {
34
+ config,
35
+ context,
36
+ },
37
+ }),
38
+ };
39
+ }
40
+ const defaultDataExchangeHttpAuthSchemeProvider = (authParameters) => {
41
+ const options = [];
42
+ switch (authParameters.operation) {
43
+ default: {
44
+ options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
45
+ }
46
+ }
47
+ return options;
48
+ };
49
+ const resolveHttpAuthSchemeConfig = (config) => {
50
+ const config_0 = resolveAwsSdkSigV4Config(config);
51
+ return Object.assign(config_0, {
52
+ authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
53
+ });
54
+ };
19
55
 
20
56
  const resolveClientEndpointParameters = (options) => {
21
57
  return Object.assign(options, {
@@ -31,6 +67,1498 @@ const commonParams = {
31
67
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
32
68
  };
33
69
 
70
+ var version = "3.1075.0";
71
+ var packageInfo = {
72
+ version: version};
73
+
74
+ const k = "ref";
75
+ const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
76
+ const _data = {
77
+ conditions: [
78
+ [c, [g]],
79
+ [c, j],
80
+ ["aws.partition", j, d],
81
+ [e, [{ [k]: "UseFIPS" }, b]],
82
+ [e, [{ [k]: "UseDualStack" }, b]],
83
+ [e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
84
+ [e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
85
+ ],
86
+ results: [
87
+ [a],
88
+ [a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
89
+ [a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
90
+ [g, i],
91
+ ["https://dataexchange-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
92
+ [a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
93
+ ["https://dataexchange-fips.{Region}.{PartitionResult#dnsSuffix}", i],
94
+ [a, "FIPS is enabled but this partition does not support FIPS"],
95
+ ["https://dataexchange.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
96
+ [a, "DualStack is enabled but this partition does not support DualStack"],
97
+ ["https://dataexchange.{Region}.{PartitionResult#dnsSuffix}", i],
98
+ [a, "Invalid Configuration: Missing Region"]
99
+ ]
100
+ };
101
+ const root = 2;
102
+ const r = 100_000_000;
103
+ const nodes = new Int32Array([
104
+ -1, 1, -1,
105
+ 0, 12, 3,
106
+ 1, 4, r + 11,
107
+ 2, 5, r + 11,
108
+ 3, 8, 6,
109
+ 4, 7, r + 10,
110
+ 5, r + 8, r + 9,
111
+ 4, 10, 9,
112
+ 6, r + 6, r + 7,
113
+ 5, 11, r + 5,
114
+ 6, r + 4, r + 5,
115
+ 3, r + 1, 13,
116
+ 4, r + 2, r + 3,
117
+ ]);
118
+ const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
119
+
120
+ const cache = new EndpointCache({
121
+ size: 50,
122
+ params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
123
+ });
124
+ const defaultEndpointResolver = (endpointParams, context = {}) => {
125
+ return cache.get(endpointParams, () => decideEndpoint(bdd, {
126
+ endpointParams: endpointParams,
127
+ logger: context.logger,
128
+ }));
129
+ };
130
+ customEndpointFunctions.aws = awsEndpointFunctions;
131
+
132
+ class DataExchangeServiceException extends ServiceException {
133
+ constructor(options) {
134
+ super(options);
135
+ Object.setPrototypeOf(this, DataExchangeServiceException.prototype);
136
+ }
137
+ }
138
+
139
+ class AccessDeniedException extends DataExchangeServiceException {
140
+ name = "AccessDeniedException";
141
+ $fault = "client";
142
+ Message;
143
+ constructor(opts) {
144
+ super({
145
+ name: "AccessDeniedException",
146
+ $fault: "client",
147
+ ...opts,
148
+ });
149
+ Object.setPrototypeOf(this, AccessDeniedException.prototype);
150
+ this.Message = opts.Message;
151
+ }
152
+ }
153
+ class ConflictException extends DataExchangeServiceException {
154
+ name = "ConflictException";
155
+ $fault = "client";
156
+ Message;
157
+ ResourceId;
158
+ ResourceType;
159
+ constructor(opts) {
160
+ super({
161
+ name: "ConflictException",
162
+ $fault: "client",
163
+ ...opts,
164
+ });
165
+ Object.setPrototypeOf(this, ConflictException.prototype);
166
+ this.Message = opts.Message;
167
+ this.ResourceId = opts.ResourceId;
168
+ this.ResourceType = opts.ResourceType;
169
+ }
170
+ }
171
+ class InternalServerException extends DataExchangeServiceException {
172
+ name = "InternalServerException";
173
+ $fault = "server";
174
+ Message;
175
+ constructor(opts) {
176
+ super({
177
+ name: "InternalServerException",
178
+ $fault: "server",
179
+ ...opts,
180
+ });
181
+ Object.setPrototypeOf(this, InternalServerException.prototype);
182
+ this.Message = opts.Message;
183
+ }
184
+ }
185
+ class ResourceNotFoundException extends DataExchangeServiceException {
186
+ name = "ResourceNotFoundException";
187
+ $fault = "client";
188
+ Message;
189
+ ResourceId;
190
+ ResourceType;
191
+ constructor(opts) {
192
+ super({
193
+ name: "ResourceNotFoundException",
194
+ $fault: "client",
195
+ ...opts,
196
+ });
197
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
198
+ this.Message = opts.Message;
199
+ this.ResourceId = opts.ResourceId;
200
+ this.ResourceType = opts.ResourceType;
201
+ }
202
+ }
203
+ class ThrottlingException extends DataExchangeServiceException {
204
+ name = "ThrottlingException";
205
+ $fault = "client";
206
+ Message;
207
+ constructor(opts) {
208
+ super({
209
+ name: "ThrottlingException",
210
+ $fault: "client",
211
+ ...opts,
212
+ });
213
+ Object.setPrototypeOf(this, ThrottlingException.prototype);
214
+ this.Message = opts.Message;
215
+ }
216
+ }
217
+ class ValidationException extends DataExchangeServiceException {
218
+ name = "ValidationException";
219
+ $fault = "client";
220
+ Message;
221
+ ExceptionCause;
222
+ constructor(opts) {
223
+ super({
224
+ name: "ValidationException",
225
+ $fault: "client",
226
+ ...opts,
227
+ });
228
+ Object.setPrototypeOf(this, ValidationException.prototype);
229
+ this.Message = opts.Message;
230
+ this.ExceptionCause = opts.ExceptionCause;
231
+ }
232
+ }
233
+ class ServiceLimitExceededException extends DataExchangeServiceException {
234
+ name = "ServiceLimitExceededException";
235
+ $fault = "client";
236
+ LimitName;
237
+ LimitValue;
238
+ Message;
239
+ constructor(opts) {
240
+ super({
241
+ name: "ServiceLimitExceededException",
242
+ $fault: "client",
243
+ ...opts,
244
+ });
245
+ Object.setPrototypeOf(this, ServiceLimitExceededException.prototype);
246
+ this.LimitName = opts.LimitName;
247
+ this.LimitValue = opts.LimitValue;
248
+ this.Message = opts.Message;
249
+ }
250
+ }
251
+
252
+ const _ = "";
253
+ const _A = "Arn";
254
+ const _AA = "AcceptedAt";
255
+ const _AC = "AssetConfiguration";
256
+ const _AD = "ApiDescription";
257
+ const _ADE = "AccessDeniedException";
258
+ const _ADEs = "AssetDestinationEntry";
259
+ const _ADG = "AcceptDataGrant";
260
+ const _ADGR = "AcceptDataGrantRequest";
261
+ const _ADGRc = "AcceptDataGrantResponse";
262
+ const _ADs = "AssetDetails";
263
+ const _ADss = "AssetDestinations";
264
+ const _AE = "ApiEndpoint";
265
+ const _AERDE = "AutoExportRevisionDestinationEntry";
266
+ const _AERTSRD = "AutoExportRevisionToS3RequestDetails";
267
+ const _AEs = "AssetEntry";
268
+ const _AGAA = "ApiGatewayApiAsset";
269
+ const _AI = "ApiId";
270
+ const _AIs = "AssetId";
271
+ const _AK = "ApiKey";
272
+ const _AN = "ApiName";
273
+ const _ANs = "AssetName";
274
+ const _AS = "AcceptanceState";
275
+ const _ASDU = "ApiSpecificationDownloadUrl";
276
+ const _ASDUEA = "ApiSpecificationDownloadUrlExpiresAt";
277
+ const _ASE = "AssetSourceEntry";
278
+ const _ASMH = "ApiSpecificationMd5Hash";
279
+ const _ASUU = "ApiSpecificationUploadUrl";
280
+ const _ASUUEA = "ApiSpecificationUploadUrlExpiresAt";
281
+ const _ASs = "AssetSource";
282
+ const _ASss = "AssetSources";
283
+ const _AT = "AssetType";
284
+ const _Ac = "Action";
285
+ const _As = "Assets";
286
+ const _B = "Bucket";
287
+ const _Bo = "Body";
288
+ const _C = "Comment";
289
+ const _CA = "CreatedAt";
290
+ const _CDG = "CreateDataGrant";
291
+ const _CDGR = "CreateDataGrantRequest";
292
+ const _CDGRr = "CreateDataGrantResponse";
293
+ const _CDS = "CreateDataSet";
294
+ const _CDSR = "CreateDataSetRequest";
295
+ const _CDSRr = "CreateDataSetResponse";
296
+ const _CE = "ConflictException";
297
+ const _CEA = "CreateEventAction";
298
+ const _CEAR = "CreateEventActionRequest";
299
+ const _CEARr = "CreateEventActionResponse";
300
+ const _CI = "CatalogId";
301
+ const _CJ = "CancelJob";
302
+ const _CJR = "CancelJobRequest";
303
+ const _CJRr = "CreateJobRequest";
304
+ const _CJRre = "CreateJobResponse";
305
+ const _CJr = "CreateJob";
306
+ const _CR = "CreateRevision";
307
+ const _CRR = "CreateRevisionRequest";
308
+ const _CRRr = "CreateRevisionResponse";
309
+ const _CSDAFSB = "CreateS3DataAccessFromS3Bucket";
310
+ const _CSDAFSBRD = "CreateS3DataAccessFromS3BucketRequestDetails";
311
+ const _CSDAFSBRDr = "CreateS3DataAccessFromS3BucketResponseDetails";
312
+ const _CT = "ClientToken";
313
+ const _Ch = "Changes";
314
+ const _Co = "Code";
315
+ const _D = "Description";
316
+ const _DA = "DeprecationAt";
317
+ const _DAR = "DeleteAssetRequest";
318
+ const _DAe = "DeleteAsset";
319
+ const _DDG = "DeleteDataGrant";
320
+ const _DDGR = "DeleteDataGrantRequest";
321
+ const _DDS = "DeleteDataSet";
322
+ const _DDSR = "DeleteDataSetRequest";
323
+ const _DEA = "DeleteEventAction";
324
+ const _DEAR = "DeleteEventActionRequest";
325
+ const _DGA = "DataGrantArn";
326
+ const _DGI = "DataGrantId";
327
+ const _DGS = "DataGrantSummaries";
328
+ const _DGSE = "DataGrantSummaryEntry";
329
+ const _DLFTP = "DatabaseLFTagPolicy";
330
+ const _DLFTPAP = "DatabaseLFTagPolicyAndPermissions";
331
+ const _DR = "DeleteRevision";
332
+ const _DRD = "DeprecationRequestDetails";
333
+ const _DRR = "DeleteRevisionRequest";
334
+ const _DS = "DataSets";
335
+ const _DSA = "DataShareArn";
336
+ const _DSE = "DataSetEntry";
337
+ const _DSI = "DataSetId";
338
+ const _DU = "DataUpdate";
339
+ const _DUA = "DataUpdatedAt";
340
+ const _DURD = "DataUpdateRequestDetails";
341
+ const _Da = "Database";
342
+ const _De = "Details";
343
+ const _Dep = "Deprecation";
344
+ const _E = "Encryption";
345
+ const _EA = "EndsAt";
346
+ const _EAA = "EventActionArn";
347
+ const _EAE = "EventActionEntry";
348
+ const _EAI = "EventActionId";
349
+ const _EATS = "ExportAssetsToS3";
350
+ const _EATSRD = "ExportAssetsToS3RequestDetails";
351
+ const _EATSRDx = "ExportAssetsToS3ResponseDetails";
352
+ const _EATSU = "ExportAssetToSignedUrl";
353
+ const _EATSURD = "ExportAssetToSignedUrlRequestDetails";
354
+ const _EATSURDx = "ExportAssetToSignedUrlResponseDetails";
355
+ const _EAv = "EventActions";
356
+ const _EC = "ExceptionCause";
357
+ const _ERTS = "ExportRevisionToS3";
358
+ const _ERTSRD = "ExportRevisionsToS3RequestDetails";
359
+ const _ERTSRDx = "ExportRevisionsToS3ResponseDetails";
360
+ const _ERTSx = "ExportRevisionsToS3";
361
+ const _ESI = "EventSourceId";
362
+ const _ESSE = "ExportServerSideEncryption";
363
+ const _Er = "Errors";
364
+ const _Ev = "Event";
365
+ const _Ex = "Expression";
366
+ const _F = "Finalized";
367
+ const _Fu = "Function";
368
+ const _GA = "GetAsset";
369
+ const _GAR = "GetAssetRequest";
370
+ const _GARe = "GetAssetResponse";
371
+ const _GDG = "GetDataGrant";
372
+ const _GDGR = "GetDataGrantRequest";
373
+ const _GDGRe = "GetDataGrantResponse";
374
+ const _GDS = "GrantDistributionScope";
375
+ const _GDSR = "GetDataSetRequest";
376
+ const _GDSRe = "GetDataSetResponse";
377
+ const _GDSe = "GetDataSet";
378
+ const _GEA = "GetEventAction";
379
+ const _GEAR = "GetEventActionRequest";
380
+ const _GEARe = "GetEventActionResponse";
381
+ const _GJ = "GetJob";
382
+ const _GJR = "GetJobRequest";
383
+ const _GJRe = "GetJobResponse";
384
+ const _GR = "GetRevision";
385
+ const _GRDG = "GetReceivedDataGrant";
386
+ const _GRDGR = "GetReceivedDataGrantRequest";
387
+ const _GRDGRe = "GetReceivedDataGrantResponse";
388
+ const _GRR = "GetRevisionRequest";
389
+ const _GRRe = "GetRevisionResponse";
390
+ const _I = "Id";
391
+ const _IAFAGA = "ImportAssetFromApiGatewayApi";
392
+ const _IAFAGARD = "ImportAssetFromApiGatewayApiRequestDetails";
393
+ const _IAFAGARDm = "ImportAssetFromApiGatewayApiResponseDetails";
394
+ const _IAFLFTP = "ImportAssetsFromLakeFormationTagPolicy";
395
+ const _IAFLFTPRD = "ImportAssetsFromLakeFormationTagPolicyRequestDetails";
396
+ const _IAFLFTPRDm = "ImportAssetsFromLakeFormationTagPolicyResponseDetails";
397
+ const _IAFRDS = "ImportAssetsFromRedshiftDataShares";
398
+ const _IAFRDSRD = "ImportAssetsFromRedshiftDataSharesRequestDetails";
399
+ const _IAFRDSRDm = "ImportAssetsFromRedshiftDataSharesResponseDetails";
400
+ const _IAFS = "ImportAssetsFromS3";
401
+ const _IAFSJED = "ImportAssetsFromS3JobErrorDetails";
402
+ const _IAFSRD = "ImportAssetsFromS3RequestDetails";
403
+ const _IAFSRDm = "ImportAssetsFromS3ResponseDetails";
404
+ const _IAFSU = "ImportAssetFromSignedUrl";
405
+ const _IAFSUJED = "ImportAssetFromSignedUrlJobErrorDetails";
406
+ const _IAFSURD = "ImportAssetFromSignedUrlRequestDetails";
407
+ const _IAFSURDm = "ImportAssetFromSignedUrlResponseDetails";
408
+ const _ISE = "InternalServerException";
409
+ const _J = "Jobs";
410
+ const _JE = "JobEntry";
411
+ const _JEo = "JobError";
412
+ const _JI = "JobId";
413
+ const _K = "Key";
414
+ const _KKA = "KmsKeyArn";
415
+ const _KKTG = "KmsKeyToGrant";
416
+ const _KKTGm = "KmsKeysToGrant";
417
+ const _KP = "KeyPattern";
418
+ const _KPe = "KeyPrefixes";
419
+ const _Ke = "Keys";
420
+ const _LDG = "ListDataGrants";
421
+ const _LDGR = "ListDataGrantsRequest";
422
+ const _LDGRi = "ListDataGrantsResponse";
423
+ const _LDS = "ListDataSets";
424
+ const _LDSR = "ListDataSetsRequest";
425
+ const _LDSRR = "ListDataSetRevisionsRequest";
426
+ const _LDSRRi = "ListDataSetRevisionsResponse";
427
+ const _LDSRi = "ListDataSetsResponse";
428
+ const _LDSRis = "ListDataSetRevisions";
429
+ const _LEA = "ListEventActions";
430
+ const _LEAR = "ListEventActionsRequest";
431
+ const _LEARi = "ListEventActionsResponse";
432
+ const _LFDPA = "LakeFormationDataPermissionAsset";
433
+ const _LFDPD = "LakeFormationDataPermissionDetails";
434
+ const _LFDPT = "LakeFormationDataPermissionType";
435
+ const _LFRD = "LFResourceDetails";
436
+ const _LFT = "LFTag";
437
+ const _LFTP = "LFTagPolicy";
438
+ const _LFTPD = "LakeFormationTagPolicyDetails";
439
+ const _LFTPDa = "LFTagPolicyDetails";
440
+ const _LFTPa = "LakeFormationTagPolicies";
441
+ const _LJ = "ListJobs";
442
+ const _LJR = "ListJobsRequest";
443
+ const _LJRi = "ListJobsResponse";
444
+ const _LN = "LimitName";
445
+ const _LOADE = "ListOfAssetDestinationEntry";
446
+ const _LOAE = "ListOfAssetEntry";
447
+ const _LOASE = "ListOfAssetSourceEntry";
448
+ const _LODGSE = "ListOfDataGrantSummaryEntry";
449
+ const _LODSE = "ListOfDataSetEntry";
450
+ const _LOEAE = "ListOfEventActionEntry";
451
+ const _LOJE = "ListOfJobEntry";
452
+ const _LOJEi = "ListOfJobError";
453
+ const _LOKKTG = "ListOfKmsKeysToGrant";
454
+ const _LOLFT = "ListOfLFTags";
455
+ const _LOLFTP = "ListOfLakeFormationTagPolicies";
456
+ const _LORDE = "ListOfRevisionDestinationEntry";
457
+ const _LORDGSE = "ListOfReceivedDataGrantSummariesEntry";
458
+ const _LORDS = "ListOfRedshiftDataShares";
459
+ const _LORDSASE = "ListOfRedshiftDataShareAssetSourceEntry";
460
+ const _LORE = "ListOfRevisionEntry";
461
+ const _LOSCD = "ListOfSchemaChangeDetails";
462
+ const _LOSDA = "ListOfS3DataAccesses";
463
+ const _LOT = "ListOfTag";
464
+ const _LRA = "ListRevisionAssets";
465
+ const _LRAR = "ListRevisionAssetsRequest";
466
+ const _LRARi = "ListRevisionAssetsResponse";
467
+ const _LRDG = "ListReceivedDataGrants";
468
+ const _LRDGR = "ListReceivedDataGrantsRequest";
469
+ const _LRDGRi = "ListReceivedDataGrantsResponse";
470
+ const _LTFR = "ListTagsForResource";
471
+ const _LTFRR = "ListTagsForResourceRequest";
472
+ const _LTFRRi = "ListTagsForResourceResponse";
473
+ const _LV = "LimitValue";
474
+ const _M = "Message";
475
+ const _MH = "Md5Hash";
476
+ const _MR = "MaxResults";
477
+ const _Me = "Method";
478
+ const _N = "Name";
479
+ const _ND = "NotificationDetails";
480
+ const _NT = "NextToken";
481
+ const _O = "Origin";
482
+ const _OD = "OriginDetails";
483
+ const _P = "Permissions";
484
+ const _PI = "ProductId";
485
+ const _PT = "ProtocolType";
486
+ const _Pa = "Path";
487
+ const _QSP = "QueryStringParameters";
488
+ const _R = "Revoked";
489
+ const _RA = "RevokedAt";
490
+ const _RAe = "ResourceArn";
491
+ const _RAo = "RoleArn";
492
+ const _RC = "RevocationComment";
493
+ const _RD = "RevisionDestination";
494
+ const _RDE = "RevisionDestinationEntry";
495
+ const _RDGSE = "ReceivedDataGrantSummariesEntry";
496
+ const _RDS = "RedshiftDataShares";
497
+ const _RDSA = "RedshiftDataShareAsset";
498
+ const _RDSASE = "RedshiftDataShareAssetSourceEntry";
499
+ const _RDSD = "RedshiftDataShareDetails";
500
+ const _RDe = "RevisionDestinations";
501
+ const _RDeq = "RequestDetails";
502
+ const _RDes = "ResourceDetails";
503
+ const _RDesp = "ResponseDetails";
504
+ const _RE = "RevisionEntry";
505
+ const _RH = "RequestHeaders";
506
+ const _RHe = "ResponseHeaders";
507
+ const _RI = "ResourceId";
508
+ const _RIe = "RevisionId";
509
+ const _RNFE = "ResourceNotFoundException";
510
+ const _RP = "ReceiverPrincipal";
511
+ const _RPe = "RevisionPublished";
512
+ const _RR = "RevokeRevision";
513
+ const _RRR = "RevokeRevisionRequest";
514
+ const _RRRe = "RevokeRevisionResponse";
515
+ const _RT = "ResourceType";
516
+ const _Re = "Revisions";
517
+ const _S = "Stage";
518
+ const _SAA = "SendApiAsset";
519
+ const _SAAR = "SendApiAssetRequest";
520
+ const _SAARe = "SendApiAssetResponse";
521
+ const _SAPA = "S3AccessPointAlias";
522
+ const _SAPAc = "S3AccessPointArn";
523
+ const _SC = "SchemaChange";
524
+ const _SCA = "SchemaChangeAt";
525
+ const _SCD = "SchemaChangeDetails";
526
+ const _SCRD = "SchemaChangeRequestDetails";
527
+ const _SD = "ScopeDetails";
528
+ const _SDA = "S3DataAccesses";
529
+ const _SDAA = "S3DataAccessAsset";
530
+ const _SDAASE = "S3DataAccessAssetSourceEntry";
531
+ const _SDAD = "S3DataAccessDetails";
532
+ const _SDSI = "SourceDataSetId";
533
+ const _SDSN = "SendDataSetNotification";
534
+ const _SDSNR = "SendDataSetNotificationRequest";
535
+ const _SDSNRe = "SendDataSetNotificationResponse";
536
+ const _SI = "SourceId";
537
+ const _SJ = "StartJob";
538
+ const _SJR = "StartJobRequest";
539
+ const _SJRt = "StartJobResponse";
540
+ const _SLEE = "ServiceLimitExceededException";
541
+ const _SP = "SenderPrincipal";
542
+ const _SSA = "S3SnapshotAsset";
543
+ const _SU = "SignedUrl";
544
+ const _SUEA = "SignedUrlExpiresAt";
545
+ const _Sc = "Schema";
546
+ const _Sco = "Scope";
547
+ const _Si = "Size";
548
+ const _St = "State";
549
+ const _T = "Tags";
550
+ const _TE = "ThrottlingException";
551
+ const _TK = "TagKey";
552
+ const _TKa = "TagKeys";
553
+ const _TLFTP = "TableLFTagPolicy";
554
+ const _TLFTPAP = "TableLFTagPolicyAndPermissions";
555
+ const _TR = "TagResource";
556
+ const _TRR = "TagResourceRequest";
557
+ const _TV = "TagValues";
558
+ const _Ta = "Table";
559
+ const _Tag = "Tag";
560
+ const _Ty = "Type";
561
+ const _UA = "UpdatedAt";
562
+ const _UAR = "UpdateAssetRequest";
563
+ const _UARp = "UpdateAssetResponse";
564
+ const _UAp = "UpdateAsset";
565
+ const _UDS = "UpdateDataSet";
566
+ const _UDSR = "UpdateDataSetRequest";
567
+ const _UDSRp = "UpdateDataSetResponse";
568
+ const _UEA = "UpdateEventAction";
569
+ const _UEAR = "UpdateEventActionRequest";
570
+ const _UEARp = "UpdateEventActionResponse";
571
+ const _UR = "UntagResource";
572
+ const _URR = "UntagResourceRequest";
573
+ const _URRp = "UpdateRevisionRequest";
574
+ const _URRpd = "UpdateRevisionResponse";
575
+ const _URp = "UpdateRevision";
576
+ const _V = "View";
577
+ const _VE = "ValidationException";
578
+ const _Va = "Value";
579
+ const _aS = "acceptanceState";
580
+ const _c = "client";
581
+ const _dSI = "dataSetId";
582
+ const _e = "error";
583
+ const _eSI = "eventSourceId";
584
+ const _en = "endpoint";
585
+ const _h = "http";
586
+ const _hE = "httpError";
587
+ const _hH = "httpHeader";
588
+ const _hPH = "httpPrefixHeaders";
589
+ const _hQ = "httpQuery";
590
+ const _jN = "jsonName";
591
+ const _mR = "maxResults";
592
+ const _nT = "nextToken";
593
+ const _o = "origin";
594
+ const _rI = "revisionId";
595
+ const _s = "smithy.ts.sdk.synthetic.com.amazonaws.dataexchange";
596
+ const _se = "server";
597
+ const _t = "tags";
598
+ const _tK = "tagKeys";
599
+ const _xadai = "x-amzn-dataexchange-asset-id";
600
+ const _xaddsi = "x-amzn-dataexchange-data-set-id";
601
+ const _xadh = "x-amzn-dataexchange-header-";
602
+ const _xadhm = "x-amzn-dataexchange-http-method";
603
+ const _xadp = "x-amzn-dataexchange-path";
604
+ const _xadri = "x-amzn-dataexchange-revision-id";
605
+ const n0 = "com.amazonaws.dataexchange";
606
+ const _s_registry = TypeRegistry.for(_s);
607
+ var DataExchangeServiceException$ = [-3, _s, "DataExchangeServiceException", 0, [], []];
608
+ _s_registry.registerError(DataExchangeServiceException$, DataExchangeServiceException);
609
+ const n0_registry = TypeRegistry.for(n0);
610
+ var AccessDeniedException$ = [-3, n0, _ADE,
611
+ { [_e]: _c, [_hE]: 403 },
612
+ [_M],
613
+ [0], 1
614
+ ];
615
+ n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
616
+ var ConflictException$ = [-3, n0, _CE,
617
+ { [_e]: _c, [_hE]: 409 },
618
+ [_M, _RI, _RT],
619
+ [0, 0, 0], 1
620
+ ];
621
+ n0_registry.registerError(ConflictException$, ConflictException);
622
+ var InternalServerException$ = [-3, n0, _ISE,
623
+ { [_e]: _se, [_hE]: 500 },
624
+ [_M],
625
+ [0], 1
626
+ ];
627
+ n0_registry.registerError(InternalServerException$, InternalServerException);
628
+ var ResourceNotFoundException$ = [-3, n0, _RNFE,
629
+ { [_e]: _c, [_hE]: 404 },
630
+ [_M, _RI, _RT],
631
+ [0, 0, 0], 1
632
+ ];
633
+ n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
634
+ var ServiceLimitExceededException$ = [-3, n0, _SLEE,
635
+ { [_e]: _c, [_hE]: 402 },
636
+ [_M, _LN, _LV],
637
+ [0, 0, 1], 1
638
+ ];
639
+ n0_registry.registerError(ServiceLimitExceededException$, ServiceLimitExceededException);
640
+ var ThrottlingException$ = [-3, n0, _TE,
641
+ { [_e]: _c, [_hE]: 429 },
642
+ [_M],
643
+ [0], 1
644
+ ];
645
+ n0_registry.registerError(ThrottlingException$, ThrottlingException);
646
+ var ValidationException$ = [-3, n0, _VE,
647
+ { [_e]: _c, [_hE]: 400 },
648
+ [_M, _EC],
649
+ [0, 0], 1
650
+ ];
651
+ n0_registry.registerError(ValidationException$, ValidationException);
652
+ const errorTypeRegistries = [
653
+ _s_registry,
654
+ n0_registry,
655
+ ];
656
+ var AcceptDataGrantRequest$ = [3, n0, _ADGR,
657
+ 0,
658
+ [_DGA],
659
+ [[0, 1]], 1
660
+ ];
661
+ var AcceptDataGrantResponse$ = [3, n0, _ADGRc,
662
+ 0,
663
+ [_N, _RP, _AS, _GDS, _DSI, _I, _A, _CA, _UA, _SP, _D, _AA, _EA],
664
+ [0, 0, 0, 0, 0, 0, 0, 5, 5, 0, 0, 5, 5], 9
665
+ ];
666
+ var Action$ = [3, n0, _Ac,
667
+ 0,
668
+ [_ERTS],
669
+ [() => AutoExportRevisionToS3RequestDetails$]
670
+ ];
671
+ var ApiGatewayApiAsset$ = [3, n0, _AGAA,
672
+ 0,
673
+ [_AD, _AE, _AI, _AK, _AN, _ASDU, _ASDUEA, _PT, _S],
674
+ [0, 0, 0, 0, 0, 0, 5, 0, 0]
675
+ ];
676
+ var AssetConfiguration$ = [3, n0, _AC,
677
+ 0,
678
+ [_T],
679
+ [() => ListOfTag]
680
+ ];
681
+ var AssetDestinationEntry$ = [3, n0, _ADEs,
682
+ 0,
683
+ [_AIs, _B, _K],
684
+ [0, 0, 0], 2
685
+ ];
686
+ var AssetDetails$ = [3, n0, _ADs,
687
+ 0,
688
+ [_SSA, _RDSA, _AGAA, _SDAA, _LFDPA],
689
+ [() => S3SnapshotAsset$, () => RedshiftDataShareAsset$, () => ApiGatewayApiAsset$, () => S3DataAccessAsset$, () => LakeFormationDataPermissionAsset$]
690
+ ];
691
+ var AssetEntry$ = [3, n0, _AEs,
692
+ 0,
693
+ [_A, _ADs, _AT, _CA, _DSI, _I, _N, _RIe, _UA, _SI],
694
+ [0, () => AssetDetails$, 0, 5, 0, 0, 0, 0, 5, 0], 9
695
+ ];
696
+ var AssetSourceEntry$ = [3, n0, _ASE,
697
+ 0,
698
+ [_B, _K],
699
+ [0, 0], 2
700
+ ];
701
+ var AutoExportRevisionDestinationEntry$ = [3, n0, _AERDE,
702
+ 0,
703
+ [_B, _KP],
704
+ [0, 0], 1
705
+ ];
706
+ var AutoExportRevisionToS3RequestDetails$ = [3, n0, _AERTSRD,
707
+ 0,
708
+ [_RD, _E],
709
+ [() => AutoExportRevisionDestinationEntry$, () => ExportServerSideEncryption$], 1
710
+ ];
711
+ var CancelJobRequest$ = [3, n0, _CJR,
712
+ 0,
713
+ [_JI],
714
+ [[0, 1]], 1
715
+ ];
716
+ var CreateDataGrantRequest$ = [3, n0, _CDGR,
717
+ 0,
718
+ [_N, _GDS, _RP, _SDSI, _EA, _D, _T],
719
+ [0, 0, 0, 0, 5, 0, 128 | 0], 4
720
+ ];
721
+ var CreateDataGrantResponse$ = [3, n0, _CDGRr,
722
+ 0,
723
+ [_N, _SP, _RP, _AS, _GDS, _DSI, _SDSI, _I, _A, _CA, _UA, _D, _AA, _EA, _T],
724
+ [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 0, 5, 5, 128 | 0], 11
725
+ ];
726
+ var CreateDataSetRequest$ = [3, n0, _CDSR,
727
+ 0,
728
+ [_AT, _D, _N, _T],
729
+ [0, 0, 0, 128 | 0], 3
730
+ ];
731
+ var CreateDataSetResponse$ = [3, n0, _CDSRr,
732
+ 0,
733
+ [_A, _AT, _CA, _D, _I, _N, _O, _OD, _SI, _T, _UA],
734
+ [0, 0, 5, 0, 0, 0, 0, () => OriginDetails$, 0, 128 | 0, 5]
735
+ ];
736
+ var CreateEventActionRequest$ = [3, n0, _CEAR,
737
+ 0,
738
+ [_Ac, _Ev, _T],
739
+ [() => Action$, () => Event$, 128 | 0], 2
740
+ ];
741
+ var CreateEventActionResponse$ = [3, n0, _CEARr,
742
+ 0,
743
+ [_Ac, _A, _CA, _Ev, _I, _T, _UA],
744
+ [() => Action$, 0, 5, () => Event$, 0, 128 | 0, 5]
745
+ ];
746
+ var CreateJobRequest$ = [3, n0, _CJRr,
747
+ 0,
748
+ [_De, _Ty, _AC],
749
+ [() => RequestDetails$, 0, () => AssetConfiguration$], 2
750
+ ];
751
+ var CreateJobResponse$ = [3, n0, _CJRre,
752
+ 0,
753
+ [_A, _AC, _CA, _De, _Er, _I, _St, _Ty, _UA],
754
+ [0, () => AssetConfiguration$, 5, () => ResponseDetails$, () => ListOfJobError, 0, 0, 0, 5]
755
+ ];
756
+ var CreateRevisionRequest$ = [3, n0, _CRR,
757
+ 0,
758
+ [_DSI, _C, _T],
759
+ [[0, 1], 0, 128 | 0], 1
760
+ ];
761
+ var CreateRevisionResponse$ = [3, n0, _CRRr,
762
+ 0,
763
+ [_A, _C, _CA, _DSI, _F, _I, _SI, _T, _UA, _RC, _R, _RA],
764
+ [0, 0, 5, 0, 2, 0, 0, 128 | 0, 5, 0, 2, 5]
765
+ ];
766
+ var CreateS3DataAccessFromS3BucketRequestDetails$ = [3, n0, _CSDAFSBRD,
767
+ 0,
768
+ [_ASs, _DSI, _RIe],
769
+ [() => S3DataAccessAssetSourceEntry$, 0, 0], 3
770
+ ];
771
+ var CreateS3DataAccessFromS3BucketResponseDetails$ = [3, n0, _CSDAFSBRDr,
772
+ 0,
773
+ [_ASs, _DSI, _RIe],
774
+ [() => S3DataAccessAssetSourceEntry$, 0, 0], 3
775
+ ];
776
+ var DatabaseLFTagPolicy$ = [3, n0, _DLFTP,
777
+ 0,
778
+ [_Ex],
779
+ [() => ListOfLFTags], 1
780
+ ];
781
+ var DatabaseLFTagPolicyAndPermissions$ = [3, n0, _DLFTPAP,
782
+ 0,
783
+ [_Ex, _P],
784
+ [() => ListOfLFTags, 64 | 0], 2
785
+ ];
786
+ var DataGrantSummaryEntry$ = [3, n0, _DGSE,
787
+ 0,
788
+ [_N, _SP, _RP, _AS, _DSI, _SDSI, _I, _A, _CA, _UA, _AA, _EA],
789
+ [0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5], 10
790
+ ];
791
+ var DataSetEntry$ = [3, n0, _DSE,
792
+ 0,
793
+ [_A, _AT, _CA, _D, _I, _N, _O, _UA, _OD, _SI],
794
+ [0, 0, 5, 0, 0, 0, 0, 5, () => OriginDetails$, 0], 8
795
+ ];
796
+ var DataUpdateRequestDetails$ = [3, n0, _DURD,
797
+ 0,
798
+ [_DUA],
799
+ [5]
800
+ ];
801
+ var DeleteAssetRequest$ = [3, n0, _DAR,
802
+ 0,
803
+ [_AIs, _DSI, _RIe],
804
+ [[0, 1], [0, 1], [0, 1]], 3
805
+ ];
806
+ var DeleteDataGrantRequest$ = [3, n0, _DDGR,
807
+ 0,
808
+ [_DGI],
809
+ [[0, 1]], 1
810
+ ];
811
+ var DeleteDataSetRequest$ = [3, n0, _DDSR,
812
+ 0,
813
+ [_DSI],
814
+ [[0, 1]], 1
815
+ ];
816
+ var DeleteEventActionRequest$ = [3, n0, _DEAR,
817
+ 0,
818
+ [_EAI],
819
+ [[0, 1]], 1
820
+ ];
821
+ var DeleteRevisionRequest$ = [3, n0, _DRR,
822
+ 0,
823
+ [_DSI, _RIe],
824
+ [[0, 1], [0, 1]], 2
825
+ ];
826
+ var DeprecationRequestDetails$ = [3, n0, _DRD,
827
+ 0,
828
+ [_DA],
829
+ [5], 1
830
+ ];
831
+ var Details$ = [3, n0, _De,
832
+ 0,
833
+ [_IAFSUJED, _IAFSJED],
834
+ [() => ImportAssetFromSignedUrlJobErrorDetails$, () => ListOfAssetSourceEntry]
835
+ ];
836
+ var Event$ = [3, n0, _Ev,
837
+ 0,
838
+ [_RPe],
839
+ [() => RevisionPublished$]
840
+ ];
841
+ var EventActionEntry$ = [3, n0, _EAE,
842
+ 0,
843
+ [_Ac, _A, _CA, _Ev, _I, _UA],
844
+ [() => Action$, 0, 5, () => Event$, 0, 5], 6
845
+ ];
846
+ var ExportAssetsToS3RequestDetails$ = [3, n0, _EATSRD,
847
+ 0,
848
+ [_ADss, _DSI, _RIe, _E],
849
+ [() => ListOfAssetDestinationEntry, 0, 0, () => ExportServerSideEncryption$], 3
850
+ ];
851
+ var ExportAssetsToS3ResponseDetails$ = [3, n0, _EATSRDx,
852
+ 0,
853
+ [_ADss, _DSI, _RIe, _E],
854
+ [() => ListOfAssetDestinationEntry, 0, 0, () => ExportServerSideEncryption$], 3
855
+ ];
856
+ var ExportAssetToSignedUrlRequestDetails$ = [3, n0, _EATSURD,
857
+ 0,
858
+ [_AIs, _DSI, _RIe],
859
+ [0, 0, 0], 3
860
+ ];
861
+ var ExportAssetToSignedUrlResponseDetails$ = [3, n0, _EATSURDx,
862
+ 0,
863
+ [_AIs, _DSI, _RIe, _SU, _SUEA],
864
+ [0, 0, 0, 0, 5], 3
865
+ ];
866
+ var ExportRevisionsToS3RequestDetails$ = [3, n0, _ERTSRD,
867
+ 0,
868
+ [_DSI, _RDe, _E],
869
+ [0, () => ListOfRevisionDestinationEntry, () => ExportServerSideEncryption$], 2
870
+ ];
871
+ var ExportRevisionsToS3ResponseDetails$ = [3, n0, _ERTSRDx,
872
+ 0,
873
+ [_DSI, _RDe, _E, _EAA],
874
+ [0, () => ListOfRevisionDestinationEntry, () => ExportServerSideEncryption$, 0], 2
875
+ ];
876
+ var ExportServerSideEncryption$ = [3, n0, _ESSE,
877
+ 0,
878
+ [_Ty, _KKA],
879
+ [0, 0], 1
880
+ ];
881
+ var GetAssetRequest$ = [3, n0, _GAR,
882
+ 0,
883
+ [_AIs, _DSI, _RIe],
884
+ [[0, 1], [0, 1], [0, 1]], 3
885
+ ];
886
+ var GetAssetResponse$ = [3, n0, _GARe,
887
+ 0,
888
+ [_A, _ADs, _AT, _CA, _DSI, _I, _N, _RIe, _SI, _T, _UA],
889
+ [0, () => AssetDetails$, 0, 5, 0, 0, 0, 0, 0, 128 | 0, 5]
890
+ ];
891
+ var GetDataGrantRequest$ = [3, n0, _GDGR,
892
+ 0,
893
+ [_DGI],
894
+ [[0, 1]], 1
895
+ ];
896
+ var GetDataGrantResponse$ = [3, n0, _GDGRe,
897
+ 0,
898
+ [_N, _SP, _RP, _AS, _GDS, _DSI, _SDSI, _I, _A, _CA, _UA, _D, _AA, _EA, _T],
899
+ [0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 0, 5, 5, 128 | 0], 11
900
+ ];
901
+ var GetDataSetRequest$ = [3, n0, _GDSR,
902
+ 0,
903
+ [_DSI],
904
+ [[0, 1]], 1
905
+ ];
906
+ var GetDataSetResponse$ = [3, n0, _GDSRe,
907
+ 0,
908
+ [_A, _AT, _CA, _D, _I, _N, _O, _OD, _SI, _T, _UA],
909
+ [0, 0, 5, 0, 0, 0, 0, () => OriginDetails$, 0, 128 | 0, 5]
910
+ ];
911
+ var GetEventActionRequest$ = [3, n0, _GEAR,
912
+ 0,
913
+ [_EAI],
914
+ [[0, 1]], 1
915
+ ];
916
+ var GetEventActionResponse$ = [3, n0, _GEARe,
917
+ 0,
918
+ [_Ac, _A, _CA, _Ev, _I, _T, _UA],
919
+ [() => Action$, 0, 5, () => Event$, 0, 128 | 0, 5]
920
+ ];
921
+ var GetJobRequest$ = [3, n0, _GJR,
922
+ 0,
923
+ [_JI],
924
+ [[0, 1]], 1
925
+ ];
926
+ var GetJobResponse$ = [3, n0, _GJRe,
927
+ 0,
928
+ [_A, _AC, _CA, _De, _Er, _I, _St, _Ty, _UA],
929
+ [0, () => AssetConfiguration$, 5, () => ResponseDetails$, () => ListOfJobError, 0, 0, 0, 5]
930
+ ];
931
+ var GetReceivedDataGrantRequest$ = [3, n0, _GRDGR,
932
+ 0,
933
+ [_DGA],
934
+ [[0, 1]], 1
935
+ ];
936
+ var GetReceivedDataGrantResponse$ = [3, n0, _GRDGRe,
937
+ 0,
938
+ [_N, _RP, _AS, _GDS, _DSI, _I, _A, _CA, _UA, _SP, _D, _AA, _EA],
939
+ [0, 0, 0, 0, 0, 0, 0, 5, 5, 0, 0, 5, 5], 9
940
+ ];
941
+ var GetRevisionRequest$ = [3, n0, _GRR,
942
+ 0,
943
+ [_DSI, _RIe],
944
+ [[0, 1], [0, 1]], 2
945
+ ];
946
+ var GetRevisionResponse$ = [3, n0, _GRRe,
947
+ 0,
948
+ [_A, _C, _CA, _DSI, _F, _I, _SI, _T, _UA, _RC, _R, _RA],
949
+ [0, 0, 5, 0, 2, 0, 0, 128 | 0, 5, 0, 2, 5]
950
+ ];
951
+ var ImportAssetFromApiGatewayApiRequestDetails$ = [3, n0, _IAFAGARD,
952
+ 0,
953
+ [_AI, _AN, _ASMH, _DSI, _PT, _RIe, _S, _AD, _AK],
954
+ [0, 0, 0, 0, 0, 0, 0, 0, 0], 7
955
+ ];
956
+ var ImportAssetFromApiGatewayApiResponseDetails$ = [3, n0, _IAFAGARDm,
957
+ 0,
958
+ [_AI, _AN, _ASMH, _ASUU, _ASUUEA, _DSI, _PT, _RIe, _S, _AD, _AK],
959
+ [0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0], 9
960
+ ];
961
+ var ImportAssetFromSignedUrlJobErrorDetails$ = [3, n0, _IAFSUJED,
962
+ 0,
963
+ [_ANs],
964
+ [0], 1
965
+ ];
966
+ var ImportAssetFromSignedUrlRequestDetails$ = [3, n0, _IAFSURD,
967
+ 0,
968
+ [_ANs, _DSI, _MH, _RIe],
969
+ [0, 0, 0, 0], 4
970
+ ];
971
+ var ImportAssetFromSignedUrlResponseDetails$ = [3, n0, _IAFSURDm,
972
+ 0,
973
+ [_ANs, _DSI, _RIe, _MH, _SU, _SUEA],
974
+ [0, 0, 0, 0, 0, 5], 3
975
+ ];
976
+ var ImportAssetsFromLakeFormationTagPolicyRequestDetails$ = [3, n0, _IAFLFTPRD,
977
+ 0,
978
+ [_CI, _RAo, _DSI, _RIe, _Da, _Ta],
979
+ [0, 0, 0, 0, () => DatabaseLFTagPolicyAndPermissions$, () => TableLFTagPolicyAndPermissions$], 4
980
+ ];
981
+ var ImportAssetsFromLakeFormationTagPolicyResponseDetails$ = [3, n0, _IAFLFTPRDm,
982
+ 0,
983
+ [_CI, _RAo, _DSI, _RIe, _Da, _Ta],
984
+ [0, 0, 0, 0, () => DatabaseLFTagPolicyAndPermissions$, () => TableLFTagPolicyAndPermissions$], 4
985
+ ];
986
+ var ImportAssetsFromRedshiftDataSharesRequestDetails$ = [3, n0, _IAFRDSRD,
987
+ 0,
988
+ [_ASss, _DSI, _RIe],
989
+ [() => ListOfRedshiftDataShareAssetSourceEntry, 0, 0], 3
990
+ ];
991
+ var ImportAssetsFromRedshiftDataSharesResponseDetails$ = [3, n0, _IAFRDSRDm,
992
+ 0,
993
+ [_ASss, _DSI, _RIe],
994
+ [() => ListOfRedshiftDataShareAssetSourceEntry, 0, 0], 3
995
+ ];
996
+ var ImportAssetsFromS3RequestDetails$ = [3, n0, _IAFSRD,
997
+ 0,
998
+ [_ASss, _DSI, _RIe],
999
+ [() => ListOfAssetSourceEntry, 0, 0], 3
1000
+ ];
1001
+ var ImportAssetsFromS3ResponseDetails$ = [3, n0, _IAFSRDm,
1002
+ 0,
1003
+ [_ASss, _DSI, _RIe],
1004
+ [() => ListOfAssetSourceEntry, 0, 0], 3
1005
+ ];
1006
+ var JobEntry$ = [3, n0, _JE,
1007
+ 0,
1008
+ [_A, _CA, _De, _I, _St, _Ty, _UA, _AC, _Er],
1009
+ [0, 5, () => ResponseDetails$, 0, 0, 0, 5, () => AssetConfiguration$, () => ListOfJobError], 7
1010
+ ];
1011
+ var JobError$ = [3, n0, _JEo,
1012
+ 0,
1013
+ [_Co, _M, _De, _LN, _LV, _RI, _RT],
1014
+ [0, 0, () => Details$, 0, 1, 0, 0], 2
1015
+ ];
1016
+ var KmsKeyToGrant$ = [3, n0, _KKTG,
1017
+ 0,
1018
+ [_KKA],
1019
+ [0], 1
1020
+ ];
1021
+ var LakeFormationDataPermissionAsset$ = [3, n0, _LFDPA,
1022
+ 0,
1023
+ [_LFDPD, _LFDPT, _P, _RAo],
1024
+ [() => LakeFormationDataPermissionDetails$, 0, 64 | 0, 0], 3
1025
+ ];
1026
+ var LakeFormationDataPermissionDetails$ = [3, n0, _LFDPD,
1027
+ 0,
1028
+ [_LFTP],
1029
+ [() => LFTagPolicyDetails$]
1030
+ ];
1031
+ var LakeFormationTagPolicyDetails$ = [3, n0, _LFTPD,
1032
+ 0,
1033
+ [_Da, _Ta],
1034
+ [0, 0]
1035
+ ];
1036
+ var LFResourceDetails$ = [3, n0, _LFRD,
1037
+ 0,
1038
+ [_Da, _Ta],
1039
+ [() => DatabaseLFTagPolicy$, () => TableLFTagPolicy$]
1040
+ ];
1041
+ var LFTag$ = [3, n0, _LFT,
1042
+ 0,
1043
+ [_TK, _TV],
1044
+ [0, 64 | 0], 2
1045
+ ];
1046
+ var LFTagPolicyDetails$ = [3, n0, _LFTPDa,
1047
+ 0,
1048
+ [_CI, _RT, _RDes],
1049
+ [0, 0, () => LFResourceDetails$], 3
1050
+ ];
1051
+ var ListDataGrantsRequest$ = [3, n0, _LDGR,
1052
+ 0,
1053
+ [_MR, _NT],
1054
+ [[1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
1055
+ ];
1056
+ var ListDataGrantsResponse$ = [3, n0, _LDGRi,
1057
+ 0,
1058
+ [_DGS, _NT],
1059
+ [() => ListOfDataGrantSummaryEntry, 0]
1060
+ ];
1061
+ var ListDataSetRevisionsRequest$ = [3, n0, _LDSRR,
1062
+ 0,
1063
+ [_DSI, _MR, _NT],
1064
+ [[0, 1], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 1
1065
+ ];
1066
+ var ListDataSetRevisionsResponse$ = [3, n0, _LDSRRi,
1067
+ 0,
1068
+ [_NT, _Re],
1069
+ [0, () => ListOfRevisionEntry]
1070
+ ];
1071
+ var ListDataSetsRequest$ = [3, n0, _LDSR,
1072
+ 0,
1073
+ [_MR, _NT, _O],
1074
+ [[1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }], [0, { [_hQ]: _o }]]
1075
+ ];
1076
+ var ListDataSetsResponse$ = [3, n0, _LDSRi,
1077
+ 0,
1078
+ [_DS, _NT],
1079
+ [() => ListOfDataSetEntry, 0]
1080
+ ];
1081
+ var ListEventActionsRequest$ = [3, n0, _LEAR,
1082
+ 0,
1083
+ [_ESI, _MR, _NT],
1084
+ [[0, { [_hQ]: _eSI }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
1085
+ ];
1086
+ var ListEventActionsResponse$ = [3, n0, _LEARi,
1087
+ 0,
1088
+ [_EAv, _NT],
1089
+ [() => ListOfEventActionEntry, 0]
1090
+ ];
1091
+ var ListJobsRequest$ = [3, n0, _LJR,
1092
+ 0,
1093
+ [_DSI, _MR, _NT, _RIe],
1094
+ [[0, { [_hQ]: _dSI }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }], [0, { [_hQ]: _rI }]]
1095
+ ];
1096
+ var ListJobsResponse$ = [3, n0, _LJRi,
1097
+ 0,
1098
+ [_J, _NT],
1099
+ [() => ListOfJobEntry, 0]
1100
+ ];
1101
+ var ListReceivedDataGrantsRequest$ = [3, n0, _LRDGR,
1102
+ 0,
1103
+ [_MR, _NT, _AS],
1104
+ [[1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }], [64 | 0, { [_hQ]: _aS }]]
1105
+ ];
1106
+ var ListReceivedDataGrantsResponse$ = [3, n0, _LRDGRi,
1107
+ 0,
1108
+ [_DGS, _NT],
1109
+ [() => ListOfReceivedDataGrantSummariesEntry, 0]
1110
+ ];
1111
+ var ListRevisionAssetsRequest$ = [3, n0, _LRAR,
1112
+ 0,
1113
+ [_DSI, _RIe, _MR, _NT],
1114
+ [[0, 1], [0, 1], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 2
1115
+ ];
1116
+ var ListRevisionAssetsResponse$ = [3, n0, _LRARi,
1117
+ 0,
1118
+ [_As, _NT],
1119
+ [() => ListOfAssetEntry, 0]
1120
+ ];
1121
+ var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
1122
+ 0,
1123
+ [_RAe],
1124
+ [[0, 1]], 1
1125
+ ];
1126
+ var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
1127
+ 0,
1128
+ [_T],
1129
+ [[128 | 0, { [_jN]: _t }]]
1130
+ ];
1131
+ var NotificationDetails$ = [3, n0, _ND,
1132
+ 0,
1133
+ [_DU, _Dep, _SC],
1134
+ [() => DataUpdateRequestDetails$, () => DeprecationRequestDetails$, () => SchemaChangeRequestDetails$]
1135
+ ];
1136
+ var OriginDetails$ = [3, n0, _OD,
1137
+ 0,
1138
+ [_PI, _DGI],
1139
+ [0, 0]
1140
+ ];
1141
+ var ReceivedDataGrantSummariesEntry$ = [3, n0, _RDGSE,
1142
+ 0,
1143
+ [_N, _SP, _RP, _AS, _DSI, _I, _A, _CA, _UA, _AA, _EA],
1144
+ [0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5], 9
1145
+ ];
1146
+ var RedshiftDataShareAsset$ = [3, n0, _RDSA,
1147
+ 0,
1148
+ [_A],
1149
+ [0], 1
1150
+ ];
1151
+ var RedshiftDataShareAssetSourceEntry$ = [3, n0, _RDSASE,
1152
+ 0,
1153
+ [_DSA],
1154
+ [0], 1
1155
+ ];
1156
+ var RedshiftDataShareDetails$ = [3, n0, _RDSD,
1157
+ 0,
1158
+ [_A, _Da, _Fu, _Ta, _Sc, _V],
1159
+ [0, 0, 0, 0, 0, 0], 2
1160
+ ];
1161
+ var RequestDetails$ = [3, n0, _RDeq,
1162
+ 0,
1163
+ [_EATSU, _EATS, _ERTSx, _IAFSU, _IAFS, _IAFRDS, _IAFAGA, _CSDAFSB, _IAFLFTP],
1164
+ [() => ExportAssetToSignedUrlRequestDetails$, () => ExportAssetsToS3RequestDetails$, () => ExportRevisionsToS3RequestDetails$, () => ImportAssetFromSignedUrlRequestDetails$, () => ImportAssetsFromS3RequestDetails$, () => ImportAssetsFromRedshiftDataSharesRequestDetails$, () => ImportAssetFromApiGatewayApiRequestDetails$, () => CreateS3DataAccessFromS3BucketRequestDetails$, () => ImportAssetsFromLakeFormationTagPolicyRequestDetails$]
1165
+ ];
1166
+ var ResponseDetails$ = [3, n0, _RDesp,
1167
+ 0,
1168
+ [_EATSU, _EATS, _ERTSx, _IAFSU, _IAFS, _IAFRDS, _IAFAGA, _CSDAFSB, _IAFLFTP],
1169
+ [() => ExportAssetToSignedUrlResponseDetails$, () => ExportAssetsToS3ResponseDetails$, () => ExportRevisionsToS3ResponseDetails$, () => ImportAssetFromSignedUrlResponseDetails$, () => ImportAssetsFromS3ResponseDetails$, () => ImportAssetsFromRedshiftDataSharesResponseDetails$, () => ImportAssetFromApiGatewayApiResponseDetails$, () => CreateS3DataAccessFromS3BucketResponseDetails$, () => ImportAssetsFromLakeFormationTagPolicyResponseDetails$]
1170
+ ];
1171
+ var RevisionDestinationEntry$ = [3, n0, _RDE,
1172
+ 0,
1173
+ [_B, _RIe, _KP],
1174
+ [0, 0, 0], 2
1175
+ ];
1176
+ var RevisionEntry$ = [3, n0, _RE,
1177
+ 0,
1178
+ [_A, _CA, _DSI, _I, _UA, _C, _F, _SI, _RC, _R, _RA],
1179
+ [0, 5, 0, 0, 5, 0, 2, 0, 0, 2, 5], 5
1180
+ ];
1181
+ var RevisionPublished$ = [3, n0, _RPe,
1182
+ 0,
1183
+ [_DSI],
1184
+ [0], 1
1185
+ ];
1186
+ var RevokeRevisionRequest$ = [3, n0, _RRR,
1187
+ 0,
1188
+ [_DSI, _RIe, _RC],
1189
+ [[0, 1], [0, 1], 0], 3
1190
+ ];
1191
+ var RevokeRevisionResponse$ = [3, n0, _RRRe,
1192
+ 0,
1193
+ [_A, _C, _CA, _DSI, _F, _I, _SI, _UA, _RC, _R, _RA],
1194
+ [0, 0, 5, 0, 2, 0, 0, 5, 0, 2, 5]
1195
+ ];
1196
+ var S3DataAccessAsset$ = [3, n0, _SDAA,
1197
+ 0,
1198
+ [_B, _KPe, _Ke, _SAPA, _SAPAc, _KKTGm],
1199
+ [0, 64 | 0, 64 | 0, 0, 0, () => ListOfKmsKeysToGrant], 1
1200
+ ];
1201
+ var S3DataAccessAssetSourceEntry$ = [3, n0, _SDAASE,
1202
+ 0,
1203
+ [_B, _KPe, _Ke, _KKTGm],
1204
+ [0, 64 | 0, 64 | 0, () => ListOfKmsKeysToGrant], 1
1205
+ ];
1206
+ var S3DataAccessDetails$ = [3, n0, _SDAD,
1207
+ 0,
1208
+ [_KPe, _Ke],
1209
+ [64 | 0, 64 | 0]
1210
+ ];
1211
+ var S3SnapshotAsset$ = [3, n0, _SSA,
1212
+ 0,
1213
+ [_Si],
1214
+ [1], 1
1215
+ ];
1216
+ var SchemaChangeDetails$ = [3, n0, _SCD,
1217
+ 0,
1218
+ [_N, _Ty, _D],
1219
+ [0, 0, 0], 2
1220
+ ];
1221
+ var SchemaChangeRequestDetails$ = [3, n0, _SCRD,
1222
+ 0,
1223
+ [_SCA, _Ch],
1224
+ [5, () => ListOfSchemaChangeDetails], 1
1225
+ ];
1226
+ var ScopeDetails$ = [3, n0, _SD,
1227
+ 0,
1228
+ [_LFTPa, _RDS, _SDA],
1229
+ [() => ListOfLakeFormationTagPolicies, () => ListOfRedshiftDataShares, () => ListOfS3DataAccesses]
1230
+ ];
1231
+ var SendApiAssetRequest$ = [3, n0, _SAAR,
1232
+ 0,
1233
+ [_AIs, _DSI, _RIe, _Bo, _QSP, _RH, _Me, _Pa],
1234
+ [[0, { [_hH]: _xadai }], [0, { [_hH]: _xaddsi }], [0, { [_hH]: _xadri }], [0, 16], [128 | 0, 64], [128 | 0, { [_hPH]: _xadh }], [0, { [_hH]: _xadhm }], [0, { [_hH]: _xadp }]], 3
1235
+ ];
1236
+ var SendApiAssetResponse$ = [3, n0, _SAARe,
1237
+ 0,
1238
+ [_Bo, _RHe],
1239
+ [[0, 16], [128 | 0, { [_hPH]: _ }]]
1240
+ ];
1241
+ var SendDataSetNotificationRequest$ = [3, n0, _SDSNR,
1242
+ 0,
1243
+ [_DSI, _Ty, _Sco, _CT, _C, _De],
1244
+ [[0, 1], 0, () => ScopeDetails$, [0, 4], 0, () => NotificationDetails$], 2
1245
+ ];
1246
+ var SendDataSetNotificationResponse$ = [3, n0, _SDSNRe,
1247
+ 0,
1248
+ [],
1249
+ []
1250
+ ];
1251
+ var StartJobRequest$ = [3, n0, _SJR,
1252
+ 0,
1253
+ [_JI],
1254
+ [[0, 1]], 1
1255
+ ];
1256
+ var StartJobResponse$ = [3, n0, _SJRt,
1257
+ 0,
1258
+ [],
1259
+ []
1260
+ ];
1261
+ var TableLFTagPolicy$ = [3, n0, _TLFTP,
1262
+ 0,
1263
+ [_Ex],
1264
+ [() => ListOfLFTags], 1
1265
+ ];
1266
+ var TableLFTagPolicyAndPermissions$ = [3, n0, _TLFTPAP,
1267
+ 0,
1268
+ [_Ex, _P],
1269
+ [() => ListOfLFTags, 64 | 0], 2
1270
+ ];
1271
+ var Tag$ = [3, n0, _Tag,
1272
+ 0,
1273
+ [_K, _Va],
1274
+ [0, 0], 2
1275
+ ];
1276
+ var TagResourceRequest$ = [3, n0, _TRR,
1277
+ 0,
1278
+ [_RAe, _T],
1279
+ [[0, 1], [128 | 0, { [_jN]: _t }]], 2
1280
+ ];
1281
+ var UntagResourceRequest$ = [3, n0, _URR,
1282
+ 0,
1283
+ [_RAe, _TKa],
1284
+ [[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
1285
+ ];
1286
+ var UpdateAssetRequest$ = [3, n0, _UAR,
1287
+ 0,
1288
+ [_AIs, _DSI, _N, _RIe],
1289
+ [[0, 1], [0, 1], 0, [0, 1]], 4
1290
+ ];
1291
+ var UpdateAssetResponse$ = [3, n0, _UARp,
1292
+ 0,
1293
+ [_A, _ADs, _AT, _CA, _DSI, _I, _N, _RIe, _SI, _UA],
1294
+ [0, () => AssetDetails$, 0, 5, 0, 0, 0, 0, 0, 5]
1295
+ ];
1296
+ var UpdateDataSetRequest$ = [3, n0, _UDSR,
1297
+ 0,
1298
+ [_DSI, _D, _N],
1299
+ [[0, 1], 0, 0], 1
1300
+ ];
1301
+ var UpdateDataSetResponse$ = [3, n0, _UDSRp,
1302
+ 0,
1303
+ [_A, _AT, _CA, _D, _I, _N, _O, _OD, _SI, _UA],
1304
+ [0, 0, 5, 0, 0, 0, 0, () => OriginDetails$, 0, 5]
1305
+ ];
1306
+ var UpdateEventActionRequest$ = [3, n0, _UEAR,
1307
+ 0,
1308
+ [_EAI, _Ac],
1309
+ [[0, 1], () => Action$], 1
1310
+ ];
1311
+ var UpdateEventActionResponse$ = [3, n0, _UEARp,
1312
+ 0,
1313
+ [_Ac, _A, _CA, _Ev, _I, _UA],
1314
+ [() => Action$, 0, 5, () => Event$, 0, 5]
1315
+ ];
1316
+ var UpdateRevisionRequest$ = [3, n0, _URRp,
1317
+ 0,
1318
+ [_DSI, _RIe, _C, _F],
1319
+ [[0, 1], [0, 1], 0, 2], 2
1320
+ ];
1321
+ var UpdateRevisionResponse$ = [3, n0, _URRpd,
1322
+ 0,
1323
+ [_A, _C, _CA, _DSI, _F, _I, _SI, _UA, _RC, _R, _RA],
1324
+ [0, 0, 5, 0, 2, 0, 0, 5, 0, 2, 5]
1325
+ ];
1326
+ var __Unit = "unit";
1327
+ var ListOfAssetDestinationEntry = [1, n0, _LOADE,
1328
+ 0, () => AssetDestinationEntry$
1329
+ ];
1330
+ var ListOfAssetEntry = [1, n0, _LOAE,
1331
+ 0, () => AssetEntry$
1332
+ ];
1333
+ var ListOfAssetSourceEntry = [1, n0, _LOASE,
1334
+ 0, () => AssetSourceEntry$
1335
+ ];
1336
+ var ListOfDataGrantSummaryEntry = [1, n0, _LODGSE,
1337
+ 0, () => DataGrantSummaryEntry$
1338
+ ];
1339
+ var ListOfDataSetEntry = [1, n0, _LODSE,
1340
+ 0, () => DataSetEntry$
1341
+ ];
1342
+ var ListOfEventActionEntry = [1, n0, _LOEAE,
1343
+ 0, () => EventActionEntry$
1344
+ ];
1345
+ var ListOfJobEntry = [1, n0, _LOJE,
1346
+ 0, () => JobEntry$
1347
+ ];
1348
+ var ListOfJobError = [1, n0, _LOJEi,
1349
+ 0, () => JobError$
1350
+ ];
1351
+ var ListOfKmsKeysToGrant = [1, n0, _LOKKTG,
1352
+ 0, () => KmsKeyToGrant$
1353
+ ];
1354
+ var ListOfLakeFormationTagPolicies = [1, n0, _LOLFTP,
1355
+ 0, () => LakeFormationTagPolicyDetails$
1356
+ ];
1357
+ var ListOfLFTags = [1, n0, _LOLFT,
1358
+ 0, () => LFTag$
1359
+ ];
1360
+ var ListOfReceivedDataGrantSummariesEntry = [1, n0, _LORDGSE,
1361
+ 0, () => ReceivedDataGrantSummariesEntry$
1362
+ ];
1363
+ var ListOfRedshiftDataShareAssetSourceEntry = [1, n0, _LORDSASE,
1364
+ 0, () => RedshiftDataShareAssetSourceEntry$
1365
+ ];
1366
+ var ListOfRedshiftDataShares = [1, n0, _LORDS,
1367
+ 0, () => RedshiftDataShareDetails$
1368
+ ];
1369
+ var ListOfRevisionDestinationEntry = [1, n0, _LORDE,
1370
+ 0, () => RevisionDestinationEntry$
1371
+ ];
1372
+ var ListOfRevisionEntry = [1, n0, _LORE,
1373
+ 0, () => RevisionEntry$
1374
+ ];
1375
+ var ListOfS3DataAccesses = [1, n0, _LOSDA,
1376
+ 0, () => S3DataAccessDetails$
1377
+ ];
1378
+ var ListOfSchemaChangeDetails = [1, n0, _LOSCD,
1379
+ 0, () => SchemaChangeDetails$
1380
+ ];
1381
+ var ListOfTag = [1, n0, _LOT,
1382
+ 0, () => Tag$
1383
+ ];
1384
+ var AcceptDataGrant$ = [9, n0, _ADG,
1385
+ { [_h]: ["POST", "/v1/data-grants/{DataGrantArn}/accept", 200] }, () => AcceptDataGrantRequest$, () => AcceptDataGrantResponse$
1386
+ ];
1387
+ var CancelJob$ = [9, n0, _CJ,
1388
+ { [_h]: ["DELETE", "/v1/jobs/{JobId}", 204] }, () => CancelJobRequest$, () => __Unit
1389
+ ];
1390
+ var CreateDataGrant$ = [9, n0, _CDG,
1391
+ { [_h]: ["POST", "/v1/data-grants", 201] }, () => CreateDataGrantRequest$, () => CreateDataGrantResponse$
1392
+ ];
1393
+ var CreateDataSet$ = [9, n0, _CDS,
1394
+ { [_h]: ["POST", "/v1/data-sets", 201] }, () => CreateDataSetRequest$, () => CreateDataSetResponse$
1395
+ ];
1396
+ var CreateEventAction$ = [9, n0, _CEA,
1397
+ { [_h]: ["POST", "/v1/event-actions", 201] }, () => CreateEventActionRequest$, () => CreateEventActionResponse$
1398
+ ];
1399
+ var CreateJob$ = [9, n0, _CJr,
1400
+ { [_h]: ["POST", "/v1/jobs", 201] }, () => CreateJobRequest$, () => CreateJobResponse$
1401
+ ];
1402
+ var CreateRevision$ = [9, n0, _CR,
1403
+ { [_h]: ["POST", "/v1/data-sets/{DataSetId}/revisions", 201] }, () => CreateRevisionRequest$, () => CreateRevisionResponse$
1404
+ ];
1405
+ var DeleteAsset$ = [9, n0, _DAe,
1406
+ { [_h]: ["DELETE", "/v1/data-sets/{DataSetId}/revisions/{RevisionId}/assets/{AssetId}", 204] }, () => DeleteAssetRequest$, () => __Unit
1407
+ ];
1408
+ var DeleteDataGrant$ = [9, n0, _DDG,
1409
+ { [_h]: ["DELETE", "/v1/data-grants/{DataGrantId}", 204] }, () => DeleteDataGrantRequest$, () => __Unit
1410
+ ];
1411
+ var DeleteDataSet$ = [9, n0, _DDS,
1412
+ { [_h]: ["DELETE", "/v1/data-sets/{DataSetId}", 204] }, () => DeleteDataSetRequest$, () => __Unit
1413
+ ];
1414
+ var DeleteEventAction$ = [9, n0, _DEA,
1415
+ { [_h]: ["DELETE", "/v1/event-actions/{EventActionId}", 204] }, () => DeleteEventActionRequest$, () => __Unit
1416
+ ];
1417
+ var DeleteRevision$ = [9, n0, _DR,
1418
+ { [_h]: ["DELETE", "/v1/data-sets/{DataSetId}/revisions/{RevisionId}", 204] }, () => DeleteRevisionRequest$, () => __Unit
1419
+ ];
1420
+ var GetAsset$ = [9, n0, _GA,
1421
+ { [_h]: ["GET", "/v1/data-sets/{DataSetId}/revisions/{RevisionId}/assets/{AssetId}", 200] }, () => GetAssetRequest$, () => GetAssetResponse$
1422
+ ];
1423
+ var GetDataGrant$ = [9, n0, _GDG,
1424
+ { [_h]: ["GET", "/v1/data-grants/{DataGrantId}", 200] }, () => GetDataGrantRequest$, () => GetDataGrantResponse$
1425
+ ];
1426
+ var GetDataSet$ = [9, n0, _GDSe,
1427
+ { [_h]: ["GET", "/v1/data-sets/{DataSetId}", 200] }, () => GetDataSetRequest$, () => GetDataSetResponse$
1428
+ ];
1429
+ var GetEventAction$ = [9, n0, _GEA,
1430
+ { [_h]: ["GET", "/v1/event-actions/{EventActionId}", 200] }, () => GetEventActionRequest$, () => GetEventActionResponse$
1431
+ ];
1432
+ var GetJob$ = [9, n0, _GJ,
1433
+ { [_h]: ["GET", "/v1/jobs/{JobId}", 200] }, () => GetJobRequest$, () => GetJobResponse$
1434
+ ];
1435
+ var GetReceivedDataGrant$ = [9, n0, _GRDG,
1436
+ { [_h]: ["GET", "/v1/received-data-grants/{DataGrantArn}", 200] }, () => GetReceivedDataGrantRequest$, () => GetReceivedDataGrantResponse$
1437
+ ];
1438
+ var GetRevision$ = [9, n0, _GR,
1439
+ { [_h]: ["GET", "/v1/data-sets/{DataSetId}/revisions/{RevisionId}", 200] }, () => GetRevisionRequest$, () => GetRevisionResponse$
1440
+ ];
1441
+ var ListDataGrants$ = [9, n0, _LDG,
1442
+ { [_h]: ["GET", "/v1/data-grants", 200] }, () => ListDataGrantsRequest$, () => ListDataGrantsResponse$
1443
+ ];
1444
+ var ListDataSetRevisions$ = [9, n0, _LDSRis,
1445
+ { [_h]: ["GET", "/v1/data-sets/{DataSetId}/revisions", 200] }, () => ListDataSetRevisionsRequest$, () => ListDataSetRevisionsResponse$
1446
+ ];
1447
+ var ListDataSets$ = [9, n0, _LDS,
1448
+ { [_h]: ["GET", "/v1/data-sets", 200] }, () => ListDataSetsRequest$, () => ListDataSetsResponse$
1449
+ ];
1450
+ var ListEventActions$ = [9, n0, _LEA,
1451
+ { [_h]: ["GET", "/v1/event-actions", 200] }, () => ListEventActionsRequest$, () => ListEventActionsResponse$
1452
+ ];
1453
+ var ListJobs$ = [9, n0, _LJ,
1454
+ { [_h]: ["GET", "/v1/jobs", 200] }, () => ListJobsRequest$, () => ListJobsResponse$
1455
+ ];
1456
+ var ListReceivedDataGrants$ = [9, n0, _LRDG,
1457
+ { [_h]: ["GET", "/v1/received-data-grants", 200] }, () => ListReceivedDataGrantsRequest$, () => ListReceivedDataGrantsResponse$
1458
+ ];
1459
+ var ListRevisionAssets$ = [9, n0, _LRA,
1460
+ { [_h]: ["GET", "/v1/data-sets/{DataSetId}/revisions/{RevisionId}/assets", 200] }, () => ListRevisionAssetsRequest$, () => ListRevisionAssetsResponse$
1461
+ ];
1462
+ var ListTagsForResource$ = [9, n0, _LTFR,
1463
+ { [_h]: ["GET", "/tags/{ResourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
1464
+ ];
1465
+ var RevokeRevision$ = [9, n0, _RR,
1466
+ { [_h]: ["POST", "/v1/data-sets/{DataSetId}/revisions/{RevisionId}/revoke", 200] }, () => RevokeRevisionRequest$, () => RevokeRevisionResponse$
1467
+ ];
1468
+ var SendApiAsset$ = [9, n0, _SAA,
1469
+ { [_en]: ["api-fulfill."], [_h]: ["POST", "/v1", 200] }, () => SendApiAssetRequest$, () => SendApiAssetResponse$
1470
+ ];
1471
+ var SendDataSetNotification$ = [9, n0, _SDSN,
1472
+ { [_h]: ["POST", "/v1/data-sets/{DataSetId}/notification", 202] }, () => SendDataSetNotificationRequest$, () => SendDataSetNotificationResponse$
1473
+ ];
1474
+ var StartJob$ = [9, n0, _SJ,
1475
+ { [_h]: ["PATCH", "/v1/jobs/{JobId}", 202] }, () => StartJobRequest$, () => StartJobResponse$
1476
+ ];
1477
+ var TagResource$ = [9, n0, _TR,
1478
+ { [_h]: ["POST", "/tags/{ResourceArn}", 204] }, () => TagResourceRequest$, () => __Unit
1479
+ ];
1480
+ var UntagResource$ = [9, n0, _UR,
1481
+ { [_h]: ["DELETE", "/tags/{ResourceArn}", 204] }, () => UntagResourceRequest$, () => __Unit
1482
+ ];
1483
+ var UpdateAsset$ = [9, n0, _UAp,
1484
+ { [_h]: ["PATCH", "/v1/data-sets/{DataSetId}/revisions/{RevisionId}/assets/{AssetId}", 200] }, () => UpdateAssetRequest$, () => UpdateAssetResponse$
1485
+ ];
1486
+ var UpdateDataSet$ = [9, n0, _UDS,
1487
+ { [_h]: ["PATCH", "/v1/data-sets/{DataSetId}", 200] }, () => UpdateDataSetRequest$, () => UpdateDataSetResponse$
1488
+ ];
1489
+ var UpdateEventAction$ = [9, n0, _UEA,
1490
+ { [_h]: ["PATCH", "/v1/event-actions/{EventActionId}", 200] }, () => UpdateEventActionRequest$, () => UpdateEventActionResponse$
1491
+ ];
1492
+ var UpdateRevision$ = [9, n0, _URp,
1493
+ { [_h]: ["PATCH", "/v1/data-sets/{DataSetId}/revisions/{RevisionId}", 200] }, () => UpdateRevisionRequest$, () => UpdateRevisionResponse$
1494
+ ];
1495
+
1496
+ const getRuntimeConfig$1 = (config) => {
1497
+ return {
1498
+ apiVersion: "2017-07-25",
1499
+ base64Decoder: config?.base64Decoder ?? fromBase64,
1500
+ base64Encoder: config?.base64Encoder ?? toBase64,
1501
+ disableHostPrefix: config?.disableHostPrefix ?? false,
1502
+ endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
1503
+ extensions: config?.extensions ?? [],
1504
+ httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultDataExchangeHttpAuthSchemeProvider,
1505
+ httpAuthSchemes: config?.httpAuthSchemes ?? [
1506
+ {
1507
+ schemeId: "aws.auth#sigv4",
1508
+ identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
1509
+ signer: new AwsSdkSigV4Signer(),
1510
+ },
1511
+ ],
1512
+ logger: config?.logger ?? new NoOpLogger(),
1513
+ protocol: config?.protocol ?? AwsRestJsonProtocol,
1514
+ protocolSettings: config?.protocolSettings ?? {
1515
+ defaultNamespace: "com.amazonaws.dataexchange",
1516
+ errorTypeRegistries,
1517
+ version: "2017-07-25",
1518
+ serviceTarget: "DataExchange",
1519
+ },
1520
+ serviceId: config?.serviceId ?? "DataExchange",
1521
+ urlParser: config?.urlParser ?? parseUrl,
1522
+ utf8Decoder: config?.utf8Decoder ?? fromUtf8,
1523
+ utf8Encoder: config?.utf8Encoder ?? toUtf8,
1524
+ };
1525
+ };
1526
+
1527
+ const getRuntimeConfig = (config) => {
1528
+ emitWarningIfUnsupportedVersion(process.version);
1529
+ const defaultsMode = resolveDefaultsModeConfig(config);
1530
+ const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
1531
+ const clientSharedValues = getRuntimeConfig$1(config);
1532
+ emitWarningIfUnsupportedVersion$1(process.version);
1533
+ const loaderConfig = {
1534
+ profile: config?.profile,
1535
+ logger: clientSharedValues.logger,
1536
+ };
1537
+ return {
1538
+ ...clientSharedValues,
1539
+ ...config,
1540
+ runtime: "node",
1541
+ defaultsMode,
1542
+ authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
1543
+ bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
1544
+ credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
1545
+ defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
1546
+ maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
1547
+ region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
1548
+ requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
1549
+ retryMode: config?.retryMode ??
1550
+ loadConfig({
1551
+ ...NODE_RETRY_MODE_CONFIG_OPTIONS,
1552
+ default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
1553
+ }, config),
1554
+ sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
1555
+ streamCollector: config?.streamCollector ?? streamCollector,
1556
+ useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
1557
+ useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
1558
+ userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
1559
+ };
1560
+ };
1561
+
34
1562
  const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
35
1563
  const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
36
1564
  let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
@@ -765,67 +2293,255 @@ const NotificationType = {
765
2293
  SCHEMA_CHANGE: "SCHEMA_CHANGE",
766
2294
  };
767
2295
 
2296
+ exports.AcceptDataGrant$ = AcceptDataGrant$;
768
2297
  exports.AcceptDataGrantCommand = AcceptDataGrantCommand;
2298
+ exports.AcceptDataGrantRequest$ = AcceptDataGrantRequest$;
2299
+ exports.AcceptDataGrantResponse$ = AcceptDataGrantResponse$;
769
2300
  exports.AcceptanceStateFilterValue = AcceptanceStateFilterValue;
2301
+ exports.AccessDeniedException = AccessDeniedException;
2302
+ exports.AccessDeniedException$ = AccessDeniedException$;
2303
+ exports.Action$ = Action$;
2304
+ exports.ApiGatewayApiAsset$ = ApiGatewayApiAsset$;
2305
+ exports.AssetConfiguration$ = AssetConfiguration$;
2306
+ exports.AssetDestinationEntry$ = AssetDestinationEntry$;
2307
+ exports.AssetDetails$ = AssetDetails$;
2308
+ exports.AssetEntry$ = AssetEntry$;
2309
+ exports.AssetSourceEntry$ = AssetSourceEntry$;
770
2310
  exports.AssetType = AssetType;
2311
+ exports.AutoExportRevisionDestinationEntry$ = AutoExportRevisionDestinationEntry$;
2312
+ exports.AutoExportRevisionToS3RequestDetails$ = AutoExportRevisionToS3RequestDetails$;
2313
+ exports.CancelJob$ = CancelJob$;
771
2314
  exports.CancelJobCommand = CancelJobCommand;
2315
+ exports.CancelJobRequest$ = CancelJobRequest$;
772
2316
  exports.Code = Code;
2317
+ exports.ConflictException = ConflictException;
2318
+ exports.ConflictException$ = ConflictException$;
2319
+ exports.CreateDataGrant$ = CreateDataGrant$;
773
2320
  exports.CreateDataGrantCommand = CreateDataGrantCommand;
2321
+ exports.CreateDataGrantRequest$ = CreateDataGrantRequest$;
2322
+ exports.CreateDataGrantResponse$ = CreateDataGrantResponse$;
2323
+ exports.CreateDataSet$ = CreateDataSet$;
774
2324
  exports.CreateDataSetCommand = CreateDataSetCommand;
2325
+ exports.CreateDataSetRequest$ = CreateDataSetRequest$;
2326
+ exports.CreateDataSetResponse$ = CreateDataSetResponse$;
2327
+ exports.CreateEventAction$ = CreateEventAction$;
775
2328
  exports.CreateEventActionCommand = CreateEventActionCommand;
2329
+ exports.CreateEventActionRequest$ = CreateEventActionRequest$;
2330
+ exports.CreateEventActionResponse$ = CreateEventActionResponse$;
2331
+ exports.CreateJob$ = CreateJob$;
776
2332
  exports.CreateJobCommand = CreateJobCommand;
2333
+ exports.CreateJobRequest$ = CreateJobRequest$;
2334
+ exports.CreateJobResponse$ = CreateJobResponse$;
2335
+ exports.CreateRevision$ = CreateRevision$;
777
2336
  exports.CreateRevisionCommand = CreateRevisionCommand;
2337
+ exports.CreateRevisionRequest$ = CreateRevisionRequest$;
2338
+ exports.CreateRevisionResponse$ = CreateRevisionResponse$;
2339
+ exports.CreateS3DataAccessFromS3BucketRequestDetails$ = CreateS3DataAccessFromS3BucketRequestDetails$;
2340
+ exports.CreateS3DataAccessFromS3BucketResponseDetails$ = CreateS3DataAccessFromS3BucketResponseDetails$;
778
2341
  exports.DataExchange = DataExchange;
779
2342
  exports.DataExchangeClient = DataExchangeClient;
2343
+ exports.DataExchangeServiceException = DataExchangeServiceException;
2344
+ exports.DataExchangeServiceException$ = DataExchangeServiceException$;
780
2345
  exports.DataGrantAcceptanceState = DataGrantAcceptanceState;
2346
+ exports.DataGrantSummaryEntry$ = DataGrantSummaryEntry$;
2347
+ exports.DataSetEntry$ = DataSetEntry$;
2348
+ exports.DataUpdateRequestDetails$ = DataUpdateRequestDetails$;
2349
+ exports.DatabaseLFTagPolicy$ = DatabaseLFTagPolicy$;
2350
+ exports.DatabaseLFTagPolicyAndPermissions$ = DatabaseLFTagPolicyAndPermissions$;
781
2351
  exports.DatabaseLFTagPolicyPermission = DatabaseLFTagPolicyPermission;
2352
+ exports.DeleteAsset$ = DeleteAsset$;
782
2353
  exports.DeleteAssetCommand = DeleteAssetCommand;
2354
+ exports.DeleteAssetRequest$ = DeleteAssetRequest$;
2355
+ exports.DeleteDataGrant$ = DeleteDataGrant$;
783
2356
  exports.DeleteDataGrantCommand = DeleteDataGrantCommand;
2357
+ exports.DeleteDataGrantRequest$ = DeleteDataGrantRequest$;
2358
+ exports.DeleteDataSet$ = DeleteDataSet$;
784
2359
  exports.DeleteDataSetCommand = DeleteDataSetCommand;
2360
+ exports.DeleteDataSetRequest$ = DeleteDataSetRequest$;
2361
+ exports.DeleteEventAction$ = DeleteEventAction$;
785
2362
  exports.DeleteEventActionCommand = DeleteEventActionCommand;
2363
+ exports.DeleteEventActionRequest$ = DeleteEventActionRequest$;
2364
+ exports.DeleteRevision$ = DeleteRevision$;
786
2365
  exports.DeleteRevisionCommand = DeleteRevisionCommand;
2366
+ exports.DeleteRevisionRequest$ = DeleteRevisionRequest$;
2367
+ exports.DeprecationRequestDetails$ = DeprecationRequestDetails$;
2368
+ exports.Details$ = Details$;
2369
+ exports.Event$ = Event$;
2370
+ exports.EventActionEntry$ = EventActionEntry$;
787
2371
  exports.ExceptionCause = ExceptionCause;
2372
+ exports.ExportAssetToSignedUrlRequestDetails$ = ExportAssetToSignedUrlRequestDetails$;
2373
+ exports.ExportAssetToSignedUrlResponseDetails$ = ExportAssetToSignedUrlResponseDetails$;
2374
+ exports.ExportAssetsToS3RequestDetails$ = ExportAssetsToS3RequestDetails$;
2375
+ exports.ExportAssetsToS3ResponseDetails$ = ExportAssetsToS3ResponseDetails$;
2376
+ exports.ExportRevisionsToS3RequestDetails$ = ExportRevisionsToS3RequestDetails$;
2377
+ exports.ExportRevisionsToS3ResponseDetails$ = ExportRevisionsToS3ResponseDetails$;
2378
+ exports.ExportServerSideEncryption$ = ExportServerSideEncryption$;
2379
+ exports.GetAsset$ = GetAsset$;
788
2380
  exports.GetAssetCommand = GetAssetCommand;
2381
+ exports.GetAssetRequest$ = GetAssetRequest$;
2382
+ exports.GetAssetResponse$ = GetAssetResponse$;
2383
+ exports.GetDataGrant$ = GetDataGrant$;
789
2384
  exports.GetDataGrantCommand = GetDataGrantCommand;
2385
+ exports.GetDataGrantRequest$ = GetDataGrantRequest$;
2386
+ exports.GetDataGrantResponse$ = GetDataGrantResponse$;
2387
+ exports.GetDataSet$ = GetDataSet$;
790
2388
  exports.GetDataSetCommand = GetDataSetCommand;
2389
+ exports.GetDataSetRequest$ = GetDataSetRequest$;
2390
+ exports.GetDataSetResponse$ = GetDataSetResponse$;
2391
+ exports.GetEventAction$ = GetEventAction$;
791
2392
  exports.GetEventActionCommand = GetEventActionCommand;
2393
+ exports.GetEventActionRequest$ = GetEventActionRequest$;
2394
+ exports.GetEventActionResponse$ = GetEventActionResponse$;
2395
+ exports.GetJob$ = GetJob$;
792
2396
  exports.GetJobCommand = GetJobCommand;
2397
+ exports.GetJobRequest$ = GetJobRequest$;
2398
+ exports.GetJobResponse$ = GetJobResponse$;
2399
+ exports.GetReceivedDataGrant$ = GetReceivedDataGrant$;
793
2400
  exports.GetReceivedDataGrantCommand = GetReceivedDataGrantCommand;
2401
+ exports.GetReceivedDataGrantRequest$ = GetReceivedDataGrantRequest$;
2402
+ exports.GetReceivedDataGrantResponse$ = GetReceivedDataGrantResponse$;
2403
+ exports.GetRevision$ = GetRevision$;
794
2404
  exports.GetRevisionCommand = GetRevisionCommand;
2405
+ exports.GetRevisionRequest$ = GetRevisionRequest$;
2406
+ exports.GetRevisionResponse$ = GetRevisionResponse$;
795
2407
  exports.GrantDistributionScope = GrantDistributionScope;
2408
+ exports.ImportAssetFromApiGatewayApiRequestDetails$ = ImportAssetFromApiGatewayApiRequestDetails$;
2409
+ exports.ImportAssetFromApiGatewayApiResponseDetails$ = ImportAssetFromApiGatewayApiResponseDetails$;
2410
+ exports.ImportAssetFromSignedUrlJobErrorDetails$ = ImportAssetFromSignedUrlJobErrorDetails$;
2411
+ exports.ImportAssetFromSignedUrlRequestDetails$ = ImportAssetFromSignedUrlRequestDetails$;
2412
+ exports.ImportAssetFromSignedUrlResponseDetails$ = ImportAssetFromSignedUrlResponseDetails$;
2413
+ exports.ImportAssetsFromLakeFormationTagPolicyRequestDetails$ = ImportAssetsFromLakeFormationTagPolicyRequestDetails$;
2414
+ exports.ImportAssetsFromLakeFormationTagPolicyResponseDetails$ = ImportAssetsFromLakeFormationTagPolicyResponseDetails$;
2415
+ exports.ImportAssetsFromRedshiftDataSharesRequestDetails$ = ImportAssetsFromRedshiftDataSharesRequestDetails$;
2416
+ exports.ImportAssetsFromRedshiftDataSharesResponseDetails$ = ImportAssetsFromRedshiftDataSharesResponseDetails$;
2417
+ exports.ImportAssetsFromS3RequestDetails$ = ImportAssetsFromS3RequestDetails$;
2418
+ exports.ImportAssetsFromS3ResponseDetails$ = ImportAssetsFromS3ResponseDetails$;
2419
+ exports.InternalServerException = InternalServerException;
2420
+ exports.InternalServerException$ = InternalServerException$;
2421
+ exports.JobEntry$ = JobEntry$;
2422
+ exports.JobError$ = JobError$;
796
2423
  exports.JobErrorLimitName = JobErrorLimitName;
797
2424
  exports.JobErrorResourceTypes = JobErrorResourceTypes;
2425
+ exports.KmsKeyToGrant$ = KmsKeyToGrant$;
798
2426
  exports.LFPermission = LFPermission;
2427
+ exports.LFResourceDetails$ = LFResourceDetails$;
799
2428
  exports.LFResourceType = LFResourceType;
2429
+ exports.LFTag$ = LFTag$;
2430
+ exports.LFTagPolicyDetails$ = LFTagPolicyDetails$;
2431
+ exports.LakeFormationDataPermissionAsset$ = LakeFormationDataPermissionAsset$;
2432
+ exports.LakeFormationDataPermissionDetails$ = LakeFormationDataPermissionDetails$;
800
2433
  exports.LakeFormationDataPermissionType = LakeFormationDataPermissionType;
2434
+ exports.LakeFormationTagPolicyDetails$ = LakeFormationTagPolicyDetails$;
801
2435
  exports.LimitName = LimitName;
2436
+ exports.ListDataGrants$ = ListDataGrants$;
802
2437
  exports.ListDataGrantsCommand = ListDataGrantsCommand;
2438
+ exports.ListDataGrantsRequest$ = ListDataGrantsRequest$;
2439
+ exports.ListDataGrantsResponse$ = ListDataGrantsResponse$;
2440
+ exports.ListDataSetRevisions$ = ListDataSetRevisions$;
803
2441
  exports.ListDataSetRevisionsCommand = ListDataSetRevisionsCommand;
2442
+ exports.ListDataSetRevisionsRequest$ = ListDataSetRevisionsRequest$;
2443
+ exports.ListDataSetRevisionsResponse$ = ListDataSetRevisionsResponse$;
2444
+ exports.ListDataSets$ = ListDataSets$;
804
2445
  exports.ListDataSetsCommand = ListDataSetsCommand;
2446
+ exports.ListDataSetsRequest$ = ListDataSetsRequest$;
2447
+ exports.ListDataSetsResponse$ = ListDataSetsResponse$;
2448
+ exports.ListEventActions$ = ListEventActions$;
805
2449
  exports.ListEventActionsCommand = ListEventActionsCommand;
2450
+ exports.ListEventActionsRequest$ = ListEventActionsRequest$;
2451
+ exports.ListEventActionsResponse$ = ListEventActionsResponse$;
2452
+ exports.ListJobs$ = ListJobs$;
806
2453
  exports.ListJobsCommand = ListJobsCommand;
2454
+ exports.ListJobsRequest$ = ListJobsRequest$;
2455
+ exports.ListJobsResponse$ = ListJobsResponse$;
2456
+ exports.ListReceivedDataGrants$ = ListReceivedDataGrants$;
807
2457
  exports.ListReceivedDataGrantsCommand = ListReceivedDataGrantsCommand;
2458
+ exports.ListReceivedDataGrantsRequest$ = ListReceivedDataGrantsRequest$;
2459
+ exports.ListReceivedDataGrantsResponse$ = ListReceivedDataGrantsResponse$;
2460
+ exports.ListRevisionAssets$ = ListRevisionAssets$;
808
2461
  exports.ListRevisionAssetsCommand = ListRevisionAssetsCommand;
2462
+ exports.ListRevisionAssetsRequest$ = ListRevisionAssetsRequest$;
2463
+ exports.ListRevisionAssetsResponse$ = ListRevisionAssetsResponse$;
2464
+ exports.ListTagsForResource$ = ListTagsForResource$;
809
2465
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
2466
+ exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
2467
+ exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
2468
+ exports.NotificationDetails$ = NotificationDetails$;
810
2469
  exports.NotificationType = NotificationType;
811
2470
  exports.Origin = Origin;
2471
+ exports.OriginDetails$ = OriginDetails$;
812
2472
  exports.ProtocolType = ProtocolType;
2473
+ exports.ReceivedDataGrantSummariesEntry$ = ReceivedDataGrantSummariesEntry$;
2474
+ exports.RedshiftDataShareAsset$ = RedshiftDataShareAsset$;
2475
+ exports.RedshiftDataShareAssetSourceEntry$ = RedshiftDataShareAssetSourceEntry$;
2476
+ exports.RedshiftDataShareDetails$ = RedshiftDataShareDetails$;
2477
+ exports.RequestDetails$ = RequestDetails$;
2478
+ exports.ResourceNotFoundException = ResourceNotFoundException;
2479
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
813
2480
  exports.ResourceType = ResourceType;
2481
+ exports.ResponseDetails$ = ResponseDetails$;
2482
+ exports.RevisionDestinationEntry$ = RevisionDestinationEntry$;
2483
+ exports.RevisionEntry$ = RevisionEntry$;
2484
+ exports.RevisionPublished$ = RevisionPublished$;
2485
+ exports.RevokeRevision$ = RevokeRevision$;
814
2486
  exports.RevokeRevisionCommand = RevokeRevisionCommand;
2487
+ exports.RevokeRevisionRequest$ = RevokeRevisionRequest$;
2488
+ exports.RevokeRevisionResponse$ = RevokeRevisionResponse$;
2489
+ exports.S3DataAccessAsset$ = S3DataAccessAsset$;
2490
+ exports.S3DataAccessAssetSourceEntry$ = S3DataAccessAssetSourceEntry$;
2491
+ exports.S3DataAccessDetails$ = S3DataAccessDetails$;
2492
+ exports.S3SnapshotAsset$ = S3SnapshotAsset$;
2493
+ exports.SchemaChangeDetails$ = SchemaChangeDetails$;
2494
+ exports.SchemaChangeRequestDetails$ = SchemaChangeRequestDetails$;
815
2495
  exports.SchemaChangeType = SchemaChangeType;
2496
+ exports.ScopeDetails$ = ScopeDetails$;
2497
+ exports.SendApiAsset$ = SendApiAsset$;
816
2498
  exports.SendApiAssetCommand = SendApiAssetCommand;
2499
+ exports.SendApiAssetRequest$ = SendApiAssetRequest$;
2500
+ exports.SendApiAssetResponse$ = SendApiAssetResponse$;
2501
+ exports.SendDataSetNotification$ = SendDataSetNotification$;
817
2502
  exports.SendDataSetNotificationCommand = SendDataSetNotificationCommand;
2503
+ exports.SendDataSetNotificationRequest$ = SendDataSetNotificationRequest$;
2504
+ exports.SendDataSetNotificationResponse$ = SendDataSetNotificationResponse$;
818
2505
  exports.ServerSideEncryptionTypes = ServerSideEncryptionTypes;
2506
+ exports.ServiceLimitExceededException = ServiceLimitExceededException;
2507
+ exports.ServiceLimitExceededException$ = ServiceLimitExceededException$;
2508
+ exports.StartJob$ = StartJob$;
819
2509
  exports.StartJobCommand = StartJobCommand;
2510
+ exports.StartJobRequest$ = StartJobRequest$;
2511
+ exports.StartJobResponse$ = StartJobResponse$;
820
2512
  exports.State = State;
2513
+ exports.TableLFTagPolicy$ = TableLFTagPolicy$;
2514
+ exports.TableLFTagPolicyAndPermissions$ = TableLFTagPolicyAndPermissions$;
821
2515
  exports.TableTagPolicyLFPermission = TableTagPolicyLFPermission;
2516
+ exports.Tag$ = Tag$;
2517
+ exports.TagResource$ = TagResource$;
822
2518
  exports.TagResourceCommand = TagResourceCommand;
2519
+ exports.TagResourceRequest$ = TagResourceRequest$;
2520
+ exports.ThrottlingException = ThrottlingException;
2521
+ exports.ThrottlingException$ = ThrottlingException$;
823
2522
  exports.Type = Type;
2523
+ exports.UntagResource$ = UntagResource$;
824
2524
  exports.UntagResourceCommand = UntagResourceCommand;
2525
+ exports.UntagResourceRequest$ = UntagResourceRequest$;
2526
+ exports.UpdateAsset$ = UpdateAsset$;
825
2527
  exports.UpdateAssetCommand = UpdateAssetCommand;
2528
+ exports.UpdateAssetRequest$ = UpdateAssetRequest$;
2529
+ exports.UpdateAssetResponse$ = UpdateAssetResponse$;
2530
+ exports.UpdateDataSet$ = UpdateDataSet$;
826
2531
  exports.UpdateDataSetCommand = UpdateDataSetCommand;
2532
+ exports.UpdateDataSetRequest$ = UpdateDataSetRequest$;
2533
+ exports.UpdateDataSetResponse$ = UpdateDataSetResponse$;
2534
+ exports.UpdateEventAction$ = UpdateEventAction$;
827
2535
  exports.UpdateEventActionCommand = UpdateEventActionCommand;
2536
+ exports.UpdateEventActionRequest$ = UpdateEventActionRequest$;
2537
+ exports.UpdateEventActionResponse$ = UpdateEventActionResponse$;
2538
+ exports.UpdateRevision$ = UpdateRevision$;
828
2539
  exports.UpdateRevisionCommand = UpdateRevisionCommand;
2540
+ exports.UpdateRevisionRequest$ = UpdateRevisionRequest$;
2541
+ exports.UpdateRevisionResponse$ = UpdateRevisionResponse$;
2542
+ exports.ValidationException = ValidationException;
2543
+ exports.ValidationException$ = ValidationException$;
2544
+ exports.errorTypeRegistries = errorTypeRegistries;
829
2545
  exports.paginateListDataGrants = paginateListDataGrants;
830
2546
  exports.paginateListDataSetRevisions = paginateListDataSetRevisions;
831
2547
  exports.paginateListDataSets = paginateListDataSets;