@aws-sdk/client-firehose 3.926.0 → 3.928.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 +1653 -960
- package/dist-cjs/runtimeConfig.shared.js +7 -0
- package/dist-es/FirehoseClient.js +2 -0
- package/dist-es/commands/CreateDeliveryStreamCommand.js +3 -10
- package/dist-es/commands/DeleteDeliveryStreamCommand.js +3 -9
- package/dist-es/commands/DescribeDeliveryStreamCommand.js +3 -10
- package/dist-es/commands/ListDeliveryStreamsCommand.js +3 -9
- package/dist-es/commands/ListTagsForDeliveryStreamCommand.js +3 -9
- package/dist-es/commands/PutRecordBatchCommand.js +3 -9
- package/dist-es/commands/PutRecordCommand.js +3 -9
- package/dist-es/commands/StartDeliveryStreamEncryptionCommand.js +3 -9
- package/dist-es/commands/StopDeliveryStreamEncryptionCommand.js +3 -9
- package/dist-es/commands/TagDeliveryStreamCommand.js +3 -9
- package/dist-es/commands/UntagDeliveryStreamCommand.js +3 -9
- package/dist-es/commands/UpdateDestinationCommand.js +3 -10
- package/dist-es/models/models_0.js +0 -164
- package/dist-es/runtimeConfig.shared.js +7 -0
- package/dist-es/schemas/schemas_0.js +1615 -0
- package/dist-types/FirehoseClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +0 -80
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +189 -0
- package/dist-types/ts3.4/FirehoseClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -60
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +195 -0
- package/package.json +5 -5
- package/dist-es/protocols/Aws_json1_1.js +0 -673
- package/dist-types/protocols/Aws_json1_1.d.ts +0 -110
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +0 -149
package/dist-cjs/index.js
CHANGED
|
@@ -6,6 +6,7 @@ var middlewareRecursionDetection = require('@aws-sdk/middleware-recursion-detect
|
|
|
6
6
|
var middlewareUserAgent = require('@aws-sdk/middleware-user-agent');
|
|
7
7
|
var configResolver = require('@smithy/config-resolver');
|
|
8
8
|
var core = require('@smithy/core');
|
|
9
|
+
var schema = require('@smithy/core/schema');
|
|
9
10
|
var middlewareContentLength = require('@smithy/middleware-content-length');
|
|
10
11
|
var middlewareEndpoint = require('@smithy/middleware-endpoint');
|
|
11
12
|
var middlewareRetry = require('@smithy/middleware-retry');
|
|
@@ -14,8 +15,6 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
14
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
15
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
16
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
17
|
-
var middlewareSerde = require('@smithy/middleware-serde');
|
|
18
|
-
var core$1 = require('@aws-sdk/core');
|
|
19
18
|
|
|
20
19
|
const resolveClientEndpointParameters = (options) => {
|
|
21
20
|
return Object.assign(options, {
|
|
@@ -91,6 +90,7 @@ class FirehoseClient extends smithyClient.Client {
|
|
|
91
90
|
const _config_7 = httpAuthSchemeProvider.resolveHttpAuthSchemeConfig(_config_6);
|
|
92
91
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
93
92
|
this.config = _config_8;
|
|
93
|
+
this.middlewareStack.use(schema.getSchemaSerdePlugin(this.config));
|
|
94
94
|
this.middlewareStack.use(middlewareUserAgent.getUserAgentPlugin(this.config));
|
|
95
95
|
this.middlewareStack.use(middlewareRetry.getRetryPlugin(this.config));
|
|
96
96
|
this.middlewareStack.use(middlewareContentLength.getContentLengthPlugin(this.config));
|
|
@@ -110,12 +110,12 @@ class FirehoseClient extends smithyClient.Client {
|
|
|
110
110
|
}
|
|
111
111
|
}
|
|
112
112
|
|
|
113
|
-
class FirehoseServiceException extends smithyClient.ServiceException {
|
|
113
|
+
let FirehoseServiceException$1 = class FirehoseServiceException extends smithyClient.ServiceException {
|
|
114
114
|
constructor(options) {
|
|
115
115
|
super(options);
|
|
116
116
|
Object.setPrototypeOf(this, FirehoseServiceException.prototype);
|
|
117
117
|
}
|
|
118
|
-
}
|
|
118
|
+
};
|
|
119
119
|
|
|
120
120
|
const ProcessorParameterName = {
|
|
121
121
|
BUFFER_INTERVAL_IN_SECONDS: "BufferIntervalInSeconds",
|
|
@@ -171,7 +171,7 @@ const Connectivity = {
|
|
|
171
171
|
PRIVATE: "PRIVATE",
|
|
172
172
|
PUBLIC: "PUBLIC",
|
|
173
173
|
};
|
|
174
|
-
class ConcurrentModificationException extends FirehoseServiceException {
|
|
174
|
+
let ConcurrentModificationException$1 = class ConcurrentModificationException extends FirehoseServiceException$1 {
|
|
175
175
|
name = "ConcurrentModificationException";
|
|
176
176
|
$fault = "client";
|
|
177
177
|
constructor(opts) {
|
|
@@ -182,7 +182,7 @@ class ConcurrentModificationException extends FirehoseServiceException {
|
|
|
182
182
|
});
|
|
183
183
|
Object.setPrototypeOf(this, ConcurrentModificationException.prototype);
|
|
184
184
|
}
|
|
185
|
-
}
|
|
185
|
+
};
|
|
186
186
|
const ContentEncoding = {
|
|
187
187
|
GZIP: "GZIP",
|
|
188
188
|
NONE: "NONE",
|
|
@@ -267,7 +267,7 @@ const SplunkS3BackupMode = {
|
|
|
267
267
|
AllEvents: "AllEvents",
|
|
268
268
|
FailedEventsOnly: "FailedEventsOnly",
|
|
269
269
|
};
|
|
270
|
-
class InvalidArgumentException extends FirehoseServiceException {
|
|
270
|
+
let InvalidArgumentException$1 = class InvalidArgumentException extends FirehoseServiceException$1 {
|
|
271
271
|
name = "InvalidArgumentException";
|
|
272
272
|
$fault = "client";
|
|
273
273
|
constructor(opts) {
|
|
@@ -278,8 +278,8 @@ class InvalidArgumentException extends FirehoseServiceException {
|
|
|
278
278
|
});
|
|
279
279
|
Object.setPrototypeOf(this, InvalidArgumentException.prototype);
|
|
280
280
|
}
|
|
281
|
-
}
|
|
282
|
-
class InvalidKMSResourceException extends FirehoseServiceException {
|
|
281
|
+
};
|
|
282
|
+
let InvalidKMSResourceException$1 = class InvalidKMSResourceException extends FirehoseServiceException$1 {
|
|
283
283
|
name = "InvalidKMSResourceException";
|
|
284
284
|
$fault = "client";
|
|
285
285
|
code;
|
|
@@ -292,8 +292,8 @@ class InvalidKMSResourceException extends FirehoseServiceException {
|
|
|
292
292
|
Object.setPrototypeOf(this, InvalidKMSResourceException.prototype);
|
|
293
293
|
this.code = opts.code;
|
|
294
294
|
}
|
|
295
|
-
}
|
|
296
|
-
class LimitExceededException extends FirehoseServiceException {
|
|
295
|
+
};
|
|
296
|
+
let LimitExceededException$1 = class LimitExceededException extends FirehoseServiceException$1 {
|
|
297
297
|
name = "LimitExceededException";
|
|
298
298
|
$fault = "client";
|
|
299
299
|
constructor(opts) {
|
|
@@ -304,8 +304,8 @@ class LimitExceededException extends FirehoseServiceException {
|
|
|
304
304
|
});
|
|
305
305
|
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
306
306
|
}
|
|
307
|
-
}
|
|
308
|
-
class ResourceInUseException extends FirehoseServiceException {
|
|
307
|
+
};
|
|
308
|
+
let ResourceInUseException$1 = class ResourceInUseException extends FirehoseServiceException$1 {
|
|
309
309
|
name = "ResourceInUseException";
|
|
310
310
|
$fault = "client";
|
|
311
311
|
constructor(opts) {
|
|
@@ -316,7 +316,7 @@ class ResourceInUseException extends FirehoseServiceException {
|
|
|
316
316
|
});
|
|
317
317
|
Object.setPrototypeOf(this, ResourceInUseException.prototype);
|
|
318
318
|
}
|
|
319
|
-
}
|
|
319
|
+
};
|
|
320
320
|
const DeliveryStreamFailureType = {
|
|
321
321
|
CREATE_ENI_FAILED: "CREATE_ENI_FAILED",
|
|
322
322
|
CREATE_KMS_GRANT_FAILED: "CREATE_KMS_GRANT_FAILED",
|
|
@@ -345,7 +345,7 @@ const SnapshotStatus = {
|
|
|
345
345
|
IN_PROGRESS: "IN_PROGRESS",
|
|
346
346
|
SUSPENDED: "SUSPENDED",
|
|
347
347
|
};
|
|
348
|
-
class ResourceNotFoundException extends FirehoseServiceException {
|
|
348
|
+
let ResourceNotFoundException$1 = class ResourceNotFoundException extends FirehoseServiceException$1 {
|
|
349
349
|
name = "ResourceNotFoundException";
|
|
350
350
|
$fault = "client";
|
|
351
351
|
constructor(opts) {
|
|
@@ -356,7 +356,7 @@ class ResourceNotFoundException extends FirehoseServiceException {
|
|
|
356
356
|
});
|
|
357
357
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
358
358
|
}
|
|
359
|
-
}
|
|
359
|
+
};
|
|
360
360
|
const DeliveryStreamEncryptionStatus = {
|
|
361
361
|
DISABLED: "DISABLED",
|
|
362
362
|
DISABLING: "DISABLING",
|
|
@@ -372,7 +372,7 @@ const DeliveryStreamStatus = {
|
|
|
372
372
|
DELETING: "DELETING",
|
|
373
373
|
DELETING_FAILED: "DELETING_FAILED",
|
|
374
374
|
};
|
|
375
|
-
class InvalidSourceException extends FirehoseServiceException {
|
|
375
|
+
let InvalidSourceException$1 = class InvalidSourceException extends FirehoseServiceException$1 {
|
|
376
376
|
name = "InvalidSourceException";
|
|
377
377
|
$fault = "client";
|
|
378
378
|
code;
|
|
@@ -385,8 +385,8 @@ class InvalidSourceException extends FirehoseServiceException {
|
|
|
385
385
|
Object.setPrototypeOf(this, InvalidSourceException.prototype);
|
|
386
386
|
this.code = opts.code;
|
|
387
387
|
}
|
|
388
|
-
}
|
|
389
|
-
class ServiceUnavailableException extends FirehoseServiceException {
|
|
388
|
+
};
|
|
389
|
+
let ServiceUnavailableException$1 = class ServiceUnavailableException extends FirehoseServiceException$1 {
|
|
390
390
|
name = "ServiceUnavailableException";
|
|
391
391
|
$fault = "server";
|
|
392
392
|
constructor(opts) {
|
|
@@ -397,850 +397,1618 @@ class ServiceUnavailableException extends FirehoseServiceException {
|
|
|
397
397
|
});
|
|
398
398
|
Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
|
|
399
399
|
}
|
|
400
|
-
}
|
|
401
|
-
const HttpEndpointConfigurationFilterSensitiveLog = (obj) => ({
|
|
402
|
-
...obj,
|
|
403
|
-
...(obj.Url && { Url: smithyClient.SENSITIVE_STRING }),
|
|
404
|
-
...(obj.AccessKey && { AccessKey: smithyClient.SENSITIVE_STRING }),
|
|
405
|
-
});
|
|
406
|
-
const HttpEndpointCommonAttributeFilterSensitiveLog = (obj) => ({
|
|
407
|
-
...obj,
|
|
408
|
-
...(obj.AttributeName && { AttributeName: smithyClient.SENSITIVE_STRING }),
|
|
409
|
-
...(obj.AttributeValue && { AttributeValue: smithyClient.SENSITIVE_STRING }),
|
|
410
|
-
});
|
|
411
|
-
const HttpEndpointRequestConfigurationFilterSensitiveLog = (obj) => ({
|
|
412
|
-
...obj,
|
|
413
|
-
...(obj.CommonAttributes && {
|
|
414
|
-
CommonAttributes: obj.CommonAttributes.map((item) => HttpEndpointCommonAttributeFilterSensitiveLog(item)),
|
|
415
|
-
}),
|
|
416
|
-
});
|
|
417
|
-
const HttpEndpointDestinationConfigurationFilterSensitiveLog = (obj) => ({
|
|
418
|
-
...obj,
|
|
419
|
-
...(obj.EndpointConfiguration && {
|
|
420
|
-
EndpointConfiguration: HttpEndpointConfigurationFilterSensitiveLog(obj.EndpointConfiguration),
|
|
421
|
-
}),
|
|
422
|
-
...(obj.RequestConfiguration && {
|
|
423
|
-
RequestConfiguration: HttpEndpointRequestConfigurationFilterSensitiveLog(obj.RequestConfiguration),
|
|
424
|
-
}),
|
|
425
|
-
});
|
|
426
|
-
const RedshiftDestinationConfigurationFilterSensitiveLog = (obj) => ({
|
|
427
|
-
...obj,
|
|
428
|
-
...(obj.Username && { Username: smithyClient.SENSITIVE_STRING }),
|
|
429
|
-
...(obj.Password && { Password: smithyClient.SENSITIVE_STRING }),
|
|
430
|
-
});
|
|
431
|
-
const SnowflakeRoleConfigurationFilterSensitiveLog = (obj) => ({
|
|
432
|
-
...obj,
|
|
433
|
-
...(obj.SnowflakeRole && { SnowflakeRole: smithyClient.SENSITIVE_STRING }),
|
|
434
|
-
});
|
|
435
|
-
const SnowflakeVpcConfigurationFilterSensitiveLog = (obj) => ({
|
|
436
|
-
...obj,
|
|
437
|
-
...(obj.PrivateLinkVpceId && { PrivateLinkVpceId: smithyClient.SENSITIVE_STRING }),
|
|
438
|
-
});
|
|
439
|
-
const SnowflakeDestinationConfigurationFilterSensitiveLog = (obj) => ({
|
|
440
|
-
...obj,
|
|
441
|
-
...(obj.AccountUrl && { AccountUrl: smithyClient.SENSITIVE_STRING }),
|
|
442
|
-
...(obj.PrivateKey && { PrivateKey: smithyClient.SENSITIVE_STRING }),
|
|
443
|
-
...(obj.KeyPassphrase && { KeyPassphrase: smithyClient.SENSITIVE_STRING }),
|
|
444
|
-
...(obj.User && { User: smithyClient.SENSITIVE_STRING }),
|
|
445
|
-
...(obj.Database && { Database: smithyClient.SENSITIVE_STRING }),
|
|
446
|
-
...(obj.Schema && { Schema: smithyClient.SENSITIVE_STRING }),
|
|
447
|
-
...(obj.Table && { Table: smithyClient.SENSITIVE_STRING }),
|
|
448
|
-
...(obj.SnowflakeRoleConfiguration && {
|
|
449
|
-
SnowflakeRoleConfiguration: SnowflakeRoleConfigurationFilterSensitiveLog(obj.SnowflakeRoleConfiguration),
|
|
450
|
-
}),
|
|
451
|
-
...(obj.MetaDataColumnName && { MetaDataColumnName: smithyClient.SENSITIVE_STRING }),
|
|
452
|
-
...(obj.ContentColumnName && { ContentColumnName: smithyClient.SENSITIVE_STRING }),
|
|
453
|
-
...(obj.SnowflakeVpcConfiguration && {
|
|
454
|
-
SnowflakeVpcConfiguration: SnowflakeVpcConfigurationFilterSensitiveLog(obj.SnowflakeVpcConfiguration),
|
|
455
|
-
}),
|
|
456
|
-
});
|
|
457
|
-
const CreateDeliveryStreamInputFilterSensitiveLog = (obj) => ({
|
|
458
|
-
...obj,
|
|
459
|
-
...(obj.RedshiftDestinationConfiguration && {
|
|
460
|
-
RedshiftDestinationConfiguration: RedshiftDestinationConfigurationFilterSensitiveLog(obj.RedshiftDestinationConfiguration),
|
|
461
|
-
}),
|
|
462
|
-
...(obj.HttpEndpointDestinationConfiguration && {
|
|
463
|
-
HttpEndpointDestinationConfiguration: HttpEndpointDestinationConfigurationFilterSensitiveLog(obj.HttpEndpointDestinationConfiguration),
|
|
464
|
-
}),
|
|
465
|
-
...(obj.SnowflakeDestinationConfiguration && {
|
|
466
|
-
SnowflakeDestinationConfiguration: SnowflakeDestinationConfigurationFilterSensitiveLog(obj.SnowflakeDestinationConfiguration),
|
|
467
|
-
}),
|
|
468
|
-
});
|
|
469
|
-
const HttpEndpointDescriptionFilterSensitiveLog = (obj) => ({
|
|
470
|
-
...obj,
|
|
471
|
-
...(obj.Url && { Url: smithyClient.SENSITIVE_STRING }),
|
|
472
|
-
});
|
|
473
|
-
const HttpEndpointDestinationDescriptionFilterSensitiveLog = (obj) => ({
|
|
474
|
-
...obj,
|
|
475
|
-
...(obj.EndpointConfiguration && {
|
|
476
|
-
EndpointConfiguration: HttpEndpointDescriptionFilterSensitiveLog(obj.EndpointConfiguration),
|
|
477
|
-
}),
|
|
478
|
-
...(obj.RequestConfiguration && {
|
|
479
|
-
RequestConfiguration: HttpEndpointRequestConfigurationFilterSensitiveLog(obj.RequestConfiguration),
|
|
480
|
-
}),
|
|
481
|
-
});
|
|
482
|
-
const RedshiftDestinationDescriptionFilterSensitiveLog = (obj) => ({
|
|
483
|
-
...obj,
|
|
484
|
-
...(obj.Username && { Username: smithyClient.SENSITIVE_STRING }),
|
|
485
|
-
});
|
|
486
|
-
const SnowflakeDestinationDescriptionFilterSensitiveLog = (obj) => ({
|
|
487
|
-
...obj,
|
|
488
|
-
...(obj.AccountUrl && { AccountUrl: smithyClient.SENSITIVE_STRING }),
|
|
489
|
-
...(obj.User && { User: smithyClient.SENSITIVE_STRING }),
|
|
490
|
-
...(obj.Database && { Database: smithyClient.SENSITIVE_STRING }),
|
|
491
|
-
...(obj.Schema && { Schema: smithyClient.SENSITIVE_STRING }),
|
|
492
|
-
...(obj.Table && { Table: smithyClient.SENSITIVE_STRING }),
|
|
493
|
-
...(obj.SnowflakeRoleConfiguration && {
|
|
494
|
-
SnowflakeRoleConfiguration: SnowflakeRoleConfigurationFilterSensitiveLog(obj.SnowflakeRoleConfiguration),
|
|
495
|
-
}),
|
|
496
|
-
...(obj.MetaDataColumnName && { MetaDataColumnName: smithyClient.SENSITIVE_STRING }),
|
|
497
|
-
...(obj.ContentColumnName && { ContentColumnName: smithyClient.SENSITIVE_STRING }),
|
|
498
|
-
...(obj.SnowflakeVpcConfiguration && {
|
|
499
|
-
SnowflakeVpcConfiguration: SnowflakeVpcConfigurationFilterSensitiveLog(obj.SnowflakeVpcConfiguration),
|
|
500
|
-
}),
|
|
501
|
-
});
|
|
502
|
-
const DestinationDescriptionFilterSensitiveLog = (obj) => ({
|
|
503
|
-
...obj,
|
|
504
|
-
...(obj.RedshiftDestinationDescription && {
|
|
505
|
-
RedshiftDestinationDescription: RedshiftDestinationDescriptionFilterSensitiveLog(obj.RedshiftDestinationDescription),
|
|
506
|
-
}),
|
|
507
|
-
...(obj.HttpEndpointDestinationDescription && {
|
|
508
|
-
HttpEndpointDestinationDescription: HttpEndpointDestinationDescriptionFilterSensitiveLog(obj.HttpEndpointDestinationDescription),
|
|
509
|
-
}),
|
|
510
|
-
...(obj.SnowflakeDestinationDescription && {
|
|
511
|
-
SnowflakeDestinationDescription: SnowflakeDestinationDescriptionFilterSensitiveLog(obj.SnowflakeDestinationDescription),
|
|
512
|
-
}),
|
|
513
|
-
});
|
|
514
|
-
const DeliveryStreamDescriptionFilterSensitiveLog = (obj) => ({
|
|
515
|
-
...obj,
|
|
516
|
-
...(obj.Destinations && {
|
|
517
|
-
Destinations: obj.Destinations.map((item) => DestinationDescriptionFilterSensitiveLog(item)),
|
|
518
|
-
}),
|
|
519
|
-
});
|
|
520
|
-
const DescribeDeliveryStreamOutputFilterSensitiveLog = (obj) => ({
|
|
521
|
-
...obj,
|
|
522
|
-
});
|
|
523
|
-
const HttpEndpointDestinationUpdateFilterSensitiveLog = (obj) => ({
|
|
524
|
-
...obj,
|
|
525
|
-
...(obj.EndpointConfiguration && {
|
|
526
|
-
EndpointConfiguration: HttpEndpointConfigurationFilterSensitiveLog(obj.EndpointConfiguration),
|
|
527
|
-
}),
|
|
528
|
-
...(obj.RequestConfiguration && {
|
|
529
|
-
RequestConfiguration: HttpEndpointRequestConfigurationFilterSensitiveLog(obj.RequestConfiguration),
|
|
530
|
-
}),
|
|
531
|
-
});
|
|
532
|
-
const RedshiftDestinationUpdateFilterSensitiveLog = (obj) => ({
|
|
533
|
-
...obj,
|
|
534
|
-
...(obj.Username && { Username: smithyClient.SENSITIVE_STRING }),
|
|
535
|
-
...(obj.Password && { Password: smithyClient.SENSITIVE_STRING }),
|
|
536
|
-
});
|
|
537
|
-
const SnowflakeDestinationUpdateFilterSensitiveLog = (obj) => ({
|
|
538
|
-
...obj,
|
|
539
|
-
...(obj.AccountUrl && { AccountUrl: smithyClient.SENSITIVE_STRING }),
|
|
540
|
-
...(obj.PrivateKey && { PrivateKey: smithyClient.SENSITIVE_STRING }),
|
|
541
|
-
...(obj.KeyPassphrase && { KeyPassphrase: smithyClient.SENSITIVE_STRING }),
|
|
542
|
-
...(obj.User && { User: smithyClient.SENSITIVE_STRING }),
|
|
543
|
-
...(obj.Database && { Database: smithyClient.SENSITIVE_STRING }),
|
|
544
|
-
...(obj.Schema && { Schema: smithyClient.SENSITIVE_STRING }),
|
|
545
|
-
...(obj.Table && { Table: smithyClient.SENSITIVE_STRING }),
|
|
546
|
-
...(obj.SnowflakeRoleConfiguration && {
|
|
547
|
-
SnowflakeRoleConfiguration: SnowflakeRoleConfigurationFilterSensitiveLog(obj.SnowflakeRoleConfiguration),
|
|
548
|
-
}),
|
|
549
|
-
...(obj.MetaDataColumnName && { MetaDataColumnName: smithyClient.SENSITIVE_STRING }),
|
|
550
|
-
...(obj.ContentColumnName && { ContentColumnName: smithyClient.SENSITIVE_STRING }),
|
|
551
|
-
});
|
|
552
|
-
const UpdateDestinationInputFilterSensitiveLog = (obj) => ({
|
|
553
|
-
...obj,
|
|
554
|
-
...(obj.RedshiftDestinationUpdate && {
|
|
555
|
-
RedshiftDestinationUpdate: RedshiftDestinationUpdateFilterSensitiveLog(obj.RedshiftDestinationUpdate),
|
|
556
|
-
}),
|
|
557
|
-
...(obj.HttpEndpointDestinationUpdate && {
|
|
558
|
-
HttpEndpointDestinationUpdate: HttpEndpointDestinationUpdateFilterSensitiveLog(obj.HttpEndpointDestinationUpdate),
|
|
559
|
-
}),
|
|
560
|
-
...(obj.SnowflakeDestinationUpdate && {
|
|
561
|
-
SnowflakeDestinationUpdate: SnowflakeDestinationUpdateFilterSensitiveLog(obj.SnowflakeDestinationUpdate),
|
|
562
|
-
}),
|
|
563
|
-
});
|
|
564
|
-
|
|
565
|
-
const se_CreateDeliveryStreamCommand = async (input, context) => {
|
|
566
|
-
const headers = sharedHeaders("CreateDeliveryStream");
|
|
567
|
-
let body;
|
|
568
|
-
body = JSON.stringify(se_CreateDeliveryStreamInput(input));
|
|
569
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
570
|
-
};
|
|
571
|
-
const se_DeleteDeliveryStreamCommand = async (input, context) => {
|
|
572
|
-
const headers = sharedHeaders("DeleteDeliveryStream");
|
|
573
|
-
let body;
|
|
574
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
575
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
576
|
-
};
|
|
577
|
-
const se_DescribeDeliveryStreamCommand = async (input, context) => {
|
|
578
|
-
const headers = sharedHeaders("DescribeDeliveryStream");
|
|
579
|
-
let body;
|
|
580
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
581
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
582
|
-
};
|
|
583
|
-
const se_ListDeliveryStreamsCommand = async (input, context) => {
|
|
584
|
-
const headers = sharedHeaders("ListDeliveryStreams");
|
|
585
|
-
let body;
|
|
586
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
587
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
588
|
-
};
|
|
589
|
-
const se_ListTagsForDeliveryStreamCommand = async (input, context) => {
|
|
590
|
-
const headers = sharedHeaders("ListTagsForDeliveryStream");
|
|
591
|
-
let body;
|
|
592
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
593
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
594
|
-
};
|
|
595
|
-
const se_PutRecordCommand = async (input, context) => {
|
|
596
|
-
const headers = sharedHeaders("PutRecord");
|
|
597
|
-
let body;
|
|
598
|
-
body = JSON.stringify(se_PutRecordInput(input, context));
|
|
599
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
600
|
-
};
|
|
601
|
-
const se_PutRecordBatchCommand = async (input, context) => {
|
|
602
|
-
const headers = sharedHeaders("PutRecordBatch");
|
|
603
|
-
let body;
|
|
604
|
-
body = JSON.stringify(se_PutRecordBatchInput(input, context));
|
|
605
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
606
|
-
};
|
|
607
|
-
const se_StartDeliveryStreamEncryptionCommand = async (input, context) => {
|
|
608
|
-
const headers = sharedHeaders("StartDeliveryStreamEncryption");
|
|
609
|
-
let body;
|
|
610
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
611
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
612
|
-
};
|
|
613
|
-
const se_StopDeliveryStreamEncryptionCommand = async (input, context) => {
|
|
614
|
-
const headers = sharedHeaders("StopDeliveryStreamEncryption");
|
|
615
|
-
let body;
|
|
616
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
617
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
618
|
-
};
|
|
619
|
-
const se_TagDeliveryStreamCommand = async (input, context) => {
|
|
620
|
-
const headers = sharedHeaders("TagDeliveryStream");
|
|
621
|
-
let body;
|
|
622
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
623
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
624
|
-
};
|
|
625
|
-
const se_UntagDeliveryStreamCommand = async (input, context) => {
|
|
626
|
-
const headers = sharedHeaders("UntagDeliveryStream");
|
|
627
|
-
let body;
|
|
628
|
-
body = JSON.stringify(smithyClient._json(input));
|
|
629
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
630
|
-
};
|
|
631
|
-
const se_UpdateDestinationCommand = async (input, context) => {
|
|
632
|
-
const headers = sharedHeaders("UpdateDestination");
|
|
633
|
-
let body;
|
|
634
|
-
body = JSON.stringify(se_UpdateDestinationInput(input));
|
|
635
|
-
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
636
|
-
};
|
|
637
|
-
const de_CreateDeliveryStreamCommand = async (output, context) => {
|
|
638
|
-
if (output.statusCode >= 300) {
|
|
639
|
-
return de_CommandError(output, context);
|
|
640
|
-
}
|
|
641
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
642
|
-
let contents = {};
|
|
643
|
-
contents = smithyClient._json(data);
|
|
644
|
-
const response = {
|
|
645
|
-
$metadata: deserializeMetadata(output),
|
|
646
|
-
...contents,
|
|
647
|
-
};
|
|
648
|
-
return response;
|
|
649
|
-
};
|
|
650
|
-
const de_DeleteDeliveryStreamCommand = async (output, context) => {
|
|
651
|
-
if (output.statusCode >= 300) {
|
|
652
|
-
return de_CommandError(output, context);
|
|
653
|
-
}
|
|
654
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
655
|
-
let contents = {};
|
|
656
|
-
contents = smithyClient._json(data);
|
|
657
|
-
const response = {
|
|
658
|
-
$metadata: deserializeMetadata(output),
|
|
659
|
-
...contents,
|
|
660
|
-
};
|
|
661
|
-
return response;
|
|
662
|
-
};
|
|
663
|
-
const de_DescribeDeliveryStreamCommand = async (output, context) => {
|
|
664
|
-
if (output.statusCode >= 300) {
|
|
665
|
-
return de_CommandError(output, context);
|
|
666
|
-
}
|
|
667
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
668
|
-
let contents = {};
|
|
669
|
-
contents = de_DescribeDeliveryStreamOutput(data);
|
|
670
|
-
const response = {
|
|
671
|
-
$metadata: deserializeMetadata(output),
|
|
672
|
-
...contents,
|
|
673
|
-
};
|
|
674
|
-
return response;
|
|
675
|
-
};
|
|
676
|
-
const de_ListDeliveryStreamsCommand = async (output, context) => {
|
|
677
|
-
if (output.statusCode >= 300) {
|
|
678
|
-
return de_CommandError(output, context);
|
|
679
|
-
}
|
|
680
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
681
|
-
let contents = {};
|
|
682
|
-
contents = smithyClient._json(data);
|
|
683
|
-
const response = {
|
|
684
|
-
$metadata: deserializeMetadata(output),
|
|
685
|
-
...contents,
|
|
686
|
-
};
|
|
687
|
-
return response;
|
|
688
|
-
};
|
|
689
|
-
const de_ListTagsForDeliveryStreamCommand = async (output, context) => {
|
|
690
|
-
if (output.statusCode >= 300) {
|
|
691
|
-
return de_CommandError(output, context);
|
|
692
|
-
}
|
|
693
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
694
|
-
let contents = {};
|
|
695
|
-
contents = smithyClient._json(data);
|
|
696
|
-
const response = {
|
|
697
|
-
$metadata: deserializeMetadata(output),
|
|
698
|
-
...contents,
|
|
699
|
-
};
|
|
700
|
-
return response;
|
|
701
|
-
};
|
|
702
|
-
const de_PutRecordCommand = async (output, context) => {
|
|
703
|
-
if (output.statusCode >= 300) {
|
|
704
|
-
return de_CommandError(output, context);
|
|
705
|
-
}
|
|
706
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
707
|
-
let contents = {};
|
|
708
|
-
contents = smithyClient._json(data);
|
|
709
|
-
const response = {
|
|
710
|
-
$metadata: deserializeMetadata(output),
|
|
711
|
-
...contents,
|
|
712
|
-
};
|
|
713
|
-
return response;
|
|
714
|
-
};
|
|
715
|
-
const de_PutRecordBatchCommand = async (output, context) => {
|
|
716
|
-
if (output.statusCode >= 300) {
|
|
717
|
-
return de_CommandError(output, context);
|
|
718
|
-
}
|
|
719
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
720
|
-
let contents = {};
|
|
721
|
-
contents = smithyClient._json(data);
|
|
722
|
-
const response = {
|
|
723
|
-
$metadata: deserializeMetadata(output),
|
|
724
|
-
...contents,
|
|
725
|
-
};
|
|
726
|
-
return response;
|
|
727
|
-
};
|
|
728
|
-
const de_StartDeliveryStreamEncryptionCommand = async (output, context) => {
|
|
729
|
-
if (output.statusCode >= 300) {
|
|
730
|
-
return de_CommandError(output, context);
|
|
731
|
-
}
|
|
732
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
733
|
-
let contents = {};
|
|
734
|
-
contents = smithyClient._json(data);
|
|
735
|
-
const response = {
|
|
736
|
-
$metadata: deserializeMetadata(output),
|
|
737
|
-
...contents,
|
|
738
|
-
};
|
|
739
|
-
return response;
|
|
740
|
-
};
|
|
741
|
-
const de_StopDeliveryStreamEncryptionCommand = async (output, context) => {
|
|
742
|
-
if (output.statusCode >= 300) {
|
|
743
|
-
return de_CommandError(output, context);
|
|
744
|
-
}
|
|
745
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
746
|
-
let contents = {};
|
|
747
|
-
contents = smithyClient._json(data);
|
|
748
|
-
const response = {
|
|
749
|
-
$metadata: deserializeMetadata(output),
|
|
750
|
-
...contents,
|
|
751
|
-
};
|
|
752
|
-
return response;
|
|
753
|
-
};
|
|
754
|
-
const de_TagDeliveryStreamCommand = async (output, context) => {
|
|
755
|
-
if (output.statusCode >= 300) {
|
|
756
|
-
return de_CommandError(output, context);
|
|
757
|
-
}
|
|
758
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
759
|
-
let contents = {};
|
|
760
|
-
contents = smithyClient._json(data);
|
|
761
|
-
const response = {
|
|
762
|
-
$metadata: deserializeMetadata(output),
|
|
763
|
-
...contents,
|
|
764
|
-
};
|
|
765
|
-
return response;
|
|
766
|
-
};
|
|
767
|
-
const de_UntagDeliveryStreamCommand = async (output, context) => {
|
|
768
|
-
if (output.statusCode >= 300) {
|
|
769
|
-
return de_CommandError(output, context);
|
|
770
|
-
}
|
|
771
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
772
|
-
let contents = {};
|
|
773
|
-
contents = smithyClient._json(data);
|
|
774
|
-
const response = {
|
|
775
|
-
$metadata: deserializeMetadata(output),
|
|
776
|
-
...contents,
|
|
777
|
-
};
|
|
778
|
-
return response;
|
|
779
|
-
};
|
|
780
|
-
const de_UpdateDestinationCommand = async (output, context) => {
|
|
781
|
-
if (output.statusCode >= 300) {
|
|
782
|
-
return de_CommandError(output, context);
|
|
783
|
-
}
|
|
784
|
-
const data = await core$1.parseJsonBody(output.body, context);
|
|
785
|
-
let contents = {};
|
|
786
|
-
contents = smithyClient._json(data);
|
|
787
|
-
const response = {
|
|
788
|
-
$metadata: deserializeMetadata(output),
|
|
789
|
-
...contents,
|
|
790
|
-
};
|
|
791
|
-
return response;
|
|
792
|
-
};
|
|
793
|
-
const de_CommandError = async (output, context) => {
|
|
794
|
-
const parsedOutput = {
|
|
795
|
-
...output,
|
|
796
|
-
body: await core$1.parseJsonErrorBody(output.body, context),
|
|
797
|
-
};
|
|
798
|
-
const errorCode = core$1.loadRestJsonErrorCode(output, parsedOutput.body);
|
|
799
|
-
switch (errorCode) {
|
|
800
|
-
case "InvalidArgumentException":
|
|
801
|
-
case "com.amazonaws.firehose#InvalidArgumentException":
|
|
802
|
-
throw await de_InvalidArgumentExceptionRes(parsedOutput);
|
|
803
|
-
case "InvalidKMSResourceException":
|
|
804
|
-
case "com.amazonaws.firehose#InvalidKMSResourceException":
|
|
805
|
-
throw await de_InvalidKMSResourceExceptionRes(parsedOutput);
|
|
806
|
-
case "LimitExceededException":
|
|
807
|
-
case "com.amazonaws.firehose#LimitExceededException":
|
|
808
|
-
throw await de_LimitExceededExceptionRes(parsedOutput);
|
|
809
|
-
case "ResourceInUseException":
|
|
810
|
-
case "com.amazonaws.firehose#ResourceInUseException":
|
|
811
|
-
throw await de_ResourceInUseExceptionRes(parsedOutput);
|
|
812
|
-
case "ResourceNotFoundException":
|
|
813
|
-
case "com.amazonaws.firehose#ResourceNotFoundException":
|
|
814
|
-
throw await de_ResourceNotFoundExceptionRes(parsedOutput);
|
|
815
|
-
case "InvalidSourceException":
|
|
816
|
-
case "com.amazonaws.firehose#InvalidSourceException":
|
|
817
|
-
throw await de_InvalidSourceExceptionRes(parsedOutput);
|
|
818
|
-
case "ServiceUnavailableException":
|
|
819
|
-
case "com.amazonaws.firehose#ServiceUnavailableException":
|
|
820
|
-
throw await de_ServiceUnavailableExceptionRes(parsedOutput);
|
|
821
|
-
case "ConcurrentModificationException":
|
|
822
|
-
case "com.amazonaws.firehose#ConcurrentModificationException":
|
|
823
|
-
throw await de_ConcurrentModificationExceptionRes(parsedOutput);
|
|
824
|
-
default:
|
|
825
|
-
const parsedBody = parsedOutput.body;
|
|
826
|
-
return throwDefaultError({
|
|
827
|
-
output,
|
|
828
|
-
parsedBody,
|
|
829
|
-
errorCode,
|
|
830
|
-
});
|
|
831
|
-
}
|
|
832
|
-
};
|
|
833
|
-
const de_ConcurrentModificationExceptionRes = async (parsedOutput, context) => {
|
|
834
|
-
const body = parsedOutput.body;
|
|
835
|
-
const deserialized = smithyClient._json(body);
|
|
836
|
-
const exception = new ConcurrentModificationException({
|
|
837
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
838
|
-
...deserialized,
|
|
839
|
-
});
|
|
840
|
-
return smithyClient.decorateServiceException(exception, body);
|
|
841
|
-
};
|
|
842
|
-
const de_InvalidArgumentExceptionRes = async (parsedOutput, context) => {
|
|
843
|
-
const body = parsedOutput.body;
|
|
844
|
-
const deserialized = smithyClient._json(body);
|
|
845
|
-
const exception = new InvalidArgumentException({
|
|
846
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
847
|
-
...deserialized,
|
|
848
|
-
});
|
|
849
|
-
return smithyClient.decorateServiceException(exception, body);
|
|
850
|
-
};
|
|
851
|
-
const de_InvalidKMSResourceExceptionRes = async (parsedOutput, context) => {
|
|
852
|
-
const body = parsedOutput.body;
|
|
853
|
-
const deserialized = smithyClient._json(body);
|
|
854
|
-
const exception = new InvalidKMSResourceException({
|
|
855
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
856
|
-
...deserialized,
|
|
857
|
-
});
|
|
858
|
-
return smithyClient.decorateServiceException(exception, body);
|
|
859
|
-
};
|
|
860
|
-
const de_InvalidSourceExceptionRes = async (parsedOutput, context) => {
|
|
861
|
-
const body = parsedOutput.body;
|
|
862
|
-
const deserialized = smithyClient._json(body);
|
|
863
|
-
const exception = new InvalidSourceException({
|
|
864
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
865
|
-
...deserialized,
|
|
866
|
-
});
|
|
867
|
-
return smithyClient.decorateServiceException(exception, body);
|
|
868
|
-
};
|
|
869
|
-
const de_LimitExceededExceptionRes = async (parsedOutput, context) => {
|
|
870
|
-
const body = parsedOutput.body;
|
|
871
|
-
const deserialized = smithyClient._json(body);
|
|
872
|
-
const exception = new LimitExceededException({
|
|
873
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
874
|
-
...deserialized,
|
|
875
|
-
});
|
|
876
|
-
return smithyClient.decorateServiceException(exception, body);
|
|
877
|
-
};
|
|
878
|
-
const de_ResourceInUseExceptionRes = async (parsedOutput, context) => {
|
|
879
|
-
const body = parsedOutput.body;
|
|
880
|
-
const deserialized = smithyClient._json(body);
|
|
881
|
-
const exception = new ResourceInUseException({
|
|
882
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
883
|
-
...deserialized,
|
|
884
|
-
});
|
|
885
|
-
return smithyClient.decorateServiceException(exception, body);
|
|
886
|
-
};
|
|
887
|
-
const de_ResourceNotFoundExceptionRes = async (parsedOutput, context) => {
|
|
888
|
-
const body = parsedOutput.body;
|
|
889
|
-
const deserialized = smithyClient._json(body);
|
|
890
|
-
const exception = new ResourceNotFoundException({
|
|
891
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
892
|
-
...deserialized,
|
|
893
|
-
});
|
|
894
|
-
return smithyClient.decorateServiceException(exception, body);
|
|
895
|
-
};
|
|
896
|
-
const de_ServiceUnavailableExceptionRes = async (parsedOutput, context) => {
|
|
897
|
-
const body = parsedOutput.body;
|
|
898
|
-
const deserialized = smithyClient._json(body);
|
|
899
|
-
const exception = new ServiceUnavailableException({
|
|
900
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
901
|
-
...deserialized,
|
|
902
|
-
});
|
|
903
|
-
return smithyClient.decorateServiceException(exception, body);
|
|
904
|
-
};
|
|
905
|
-
const se_CreateDeliveryStreamInput = (input, context) => {
|
|
906
|
-
return smithyClient.take(input, {
|
|
907
|
-
AmazonOpenSearchServerlessDestinationConfiguration: smithyClient._json,
|
|
908
|
-
AmazonopensearchserviceDestinationConfiguration: smithyClient._json,
|
|
909
|
-
DatabaseSourceConfiguration: smithyClient._json,
|
|
910
|
-
DeliveryStreamEncryptionConfigurationInput: smithyClient._json,
|
|
911
|
-
DeliveryStreamName: [],
|
|
912
|
-
DeliveryStreamType: [],
|
|
913
|
-
DirectPutSourceConfiguration: smithyClient._json,
|
|
914
|
-
ElasticsearchDestinationConfiguration: smithyClient._json,
|
|
915
|
-
ExtendedS3DestinationConfiguration: (_) => se_ExtendedS3DestinationConfiguration(_),
|
|
916
|
-
HttpEndpointDestinationConfiguration: smithyClient._json,
|
|
917
|
-
IcebergDestinationConfiguration: smithyClient._json,
|
|
918
|
-
KinesisStreamSourceConfiguration: smithyClient._json,
|
|
919
|
-
MSKSourceConfiguration: (_) => se_MSKSourceConfiguration(_),
|
|
920
|
-
RedshiftDestinationConfiguration: smithyClient._json,
|
|
921
|
-
S3DestinationConfiguration: smithyClient._json,
|
|
922
|
-
SnowflakeDestinationConfiguration: smithyClient._json,
|
|
923
|
-
SplunkDestinationConfiguration: smithyClient._json,
|
|
924
|
-
Tags: smithyClient._json,
|
|
925
|
-
});
|
|
926
|
-
};
|
|
927
|
-
const se_DataFormatConversionConfiguration = (input, context) => {
|
|
928
|
-
return smithyClient.take(input, {
|
|
929
|
-
Enabled: [],
|
|
930
|
-
InputFormatConfiguration: smithyClient._json,
|
|
931
|
-
OutputFormatConfiguration: (_) => se_OutputFormatConfiguration(_),
|
|
932
|
-
SchemaConfiguration: smithyClient._json,
|
|
933
|
-
});
|
|
934
|
-
};
|
|
935
|
-
const se_ExtendedS3DestinationConfiguration = (input, context) => {
|
|
936
|
-
return smithyClient.take(input, {
|
|
937
|
-
BucketARN: [],
|
|
938
|
-
BufferingHints: smithyClient._json,
|
|
939
|
-
CloudWatchLoggingOptions: smithyClient._json,
|
|
940
|
-
CompressionFormat: [],
|
|
941
|
-
CustomTimeZone: [],
|
|
942
|
-
DataFormatConversionConfiguration: (_) => se_DataFormatConversionConfiguration(_),
|
|
943
|
-
DynamicPartitioningConfiguration: smithyClient._json,
|
|
944
|
-
EncryptionConfiguration: smithyClient._json,
|
|
945
|
-
ErrorOutputPrefix: [],
|
|
946
|
-
FileExtension: [],
|
|
947
|
-
Prefix: [],
|
|
948
|
-
ProcessingConfiguration: smithyClient._json,
|
|
949
|
-
RoleARN: [],
|
|
950
|
-
S3BackupConfiguration: smithyClient._json,
|
|
951
|
-
S3BackupMode: [],
|
|
952
|
-
});
|
|
953
|
-
};
|
|
954
|
-
const se_ExtendedS3DestinationUpdate = (input, context) => {
|
|
955
|
-
return smithyClient.take(input, {
|
|
956
|
-
BucketARN: [],
|
|
957
|
-
BufferingHints: smithyClient._json,
|
|
958
|
-
CloudWatchLoggingOptions: smithyClient._json,
|
|
959
|
-
CompressionFormat: [],
|
|
960
|
-
CustomTimeZone: [],
|
|
961
|
-
DataFormatConversionConfiguration: (_) => se_DataFormatConversionConfiguration(_),
|
|
962
|
-
DynamicPartitioningConfiguration: smithyClient._json,
|
|
963
|
-
EncryptionConfiguration: smithyClient._json,
|
|
964
|
-
ErrorOutputPrefix: [],
|
|
965
|
-
FileExtension: [],
|
|
966
|
-
Prefix: [],
|
|
967
|
-
ProcessingConfiguration: smithyClient._json,
|
|
968
|
-
RoleARN: [],
|
|
969
|
-
S3BackupMode: [],
|
|
970
|
-
S3BackupUpdate: smithyClient._json,
|
|
971
|
-
});
|
|
972
|
-
};
|
|
973
|
-
const se_MSKSourceConfiguration = (input, context) => {
|
|
974
|
-
return smithyClient.take(input, {
|
|
975
|
-
AuthenticationConfiguration: smithyClient._json,
|
|
976
|
-
MSKClusterARN: [],
|
|
977
|
-
ReadFromTimestamp: (_) => _.getTime() / 1_000,
|
|
978
|
-
TopicName: [],
|
|
979
|
-
});
|
|
980
|
-
};
|
|
981
|
-
const se_OrcSerDe = (input, context) => {
|
|
982
|
-
return smithyClient.take(input, {
|
|
983
|
-
BlockSizeBytes: [],
|
|
984
|
-
BloomFilterColumns: smithyClient._json,
|
|
985
|
-
BloomFilterFalsePositiveProbability: smithyClient.serializeFloat,
|
|
986
|
-
Compression: [],
|
|
987
|
-
DictionaryKeyThreshold: smithyClient.serializeFloat,
|
|
988
|
-
EnablePadding: [],
|
|
989
|
-
FormatVersion: [],
|
|
990
|
-
PaddingTolerance: smithyClient.serializeFloat,
|
|
991
|
-
RowIndexStride: [],
|
|
992
|
-
StripeSizeBytes: [],
|
|
993
|
-
});
|
|
994
|
-
};
|
|
995
|
-
const se_OutputFormatConfiguration = (input, context) => {
|
|
996
|
-
return smithyClient.take(input, {
|
|
997
|
-
Serializer: (_) => se_Serializer(_),
|
|
998
|
-
});
|
|
999
|
-
};
|
|
1000
|
-
const se_PutRecordBatchInput = (input, context) => {
|
|
1001
|
-
return smithyClient.take(input, {
|
|
1002
|
-
DeliveryStreamName: [],
|
|
1003
|
-
Records: (_) => se_PutRecordBatchRequestEntryList(_, context),
|
|
1004
|
-
});
|
|
1005
|
-
};
|
|
1006
|
-
const se_PutRecordBatchRequestEntryList = (input, context) => {
|
|
1007
|
-
return input
|
|
1008
|
-
.filter((e) => e != null)
|
|
1009
|
-
.map((entry) => {
|
|
1010
|
-
return se__Record(entry, context);
|
|
1011
|
-
});
|
|
1012
|
-
};
|
|
1013
|
-
const se_PutRecordInput = (input, context) => {
|
|
1014
|
-
return smithyClient.take(input, {
|
|
1015
|
-
DeliveryStreamName: [],
|
|
1016
|
-
Record: (_) => se__Record(_, context),
|
|
1017
|
-
});
|
|
1018
|
-
};
|
|
1019
|
-
const se__Record = (input, context) => {
|
|
1020
|
-
return smithyClient.take(input, {
|
|
1021
|
-
Data: context.base64Encoder,
|
|
1022
|
-
});
|
|
1023
400
|
};
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
const
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
const
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
const
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
const
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
const
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
const
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
const
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
const
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
const
|
|
1126
|
-
|
|
1127
|
-
|
|
1128
|
-
|
|
1129
|
-
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
const
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
|
|
1144
|
-
|
|
1145
|
-
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
const
|
|
1153
|
-
|
|
1154
|
-
|
|
1155
|
-
|
|
1156
|
-
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
const
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
const
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
|
-
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
const
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
const
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
const
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
|
|
1199
|
-
|
|
1200
|
-
|
|
1201
|
-
const
|
|
1202
|
-
|
|
1203
|
-
|
|
1204
|
-
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
const
|
|
1208
|
-
const
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
|
|
401
|
+
|
|
402
|
+
const _ABH = "AmazonopensearchserviceBufferingHints";
|
|
403
|
+
const _AC = "AuthenticationConfiguration";
|
|
404
|
+
const _ADC = "AmazonopensearchserviceDestinationConfiguration";
|
|
405
|
+
const _ADD = "AmazonopensearchserviceDestinationDescription";
|
|
406
|
+
const _ADU = "AmazonopensearchserviceDestinationUpdate";
|
|
407
|
+
const _AFD = "AllowForceDelete";
|
|
408
|
+
const _AK = "AccessKey";
|
|
409
|
+
const _AN = "AttributeName";
|
|
410
|
+
const _AO = "AppendOnly";
|
|
411
|
+
const _AOSSBH = "AmazonOpenSearchServerlessBufferingHints";
|
|
412
|
+
const _AOSSDC = "AmazonOpenSearchServerlessDestinationConfiguration";
|
|
413
|
+
const _AOSSDD = "AmazonOpenSearchServerlessDestinationDescription";
|
|
414
|
+
const _AOSSDU = "AmazonOpenSearchServerlessDestinationUpdate";
|
|
415
|
+
const _AOSSRO = "AmazonOpenSearchServerlessRetryOptions";
|
|
416
|
+
const _ARO = "AmazonopensearchserviceRetryOptions";
|
|
417
|
+
const _AU = "AccountUrl";
|
|
418
|
+
const _AV = "AttributeValue";
|
|
419
|
+
const _AWSKMSKARN = "AWSKMSKeyARN";
|
|
420
|
+
const _BARN = "BucketARN";
|
|
421
|
+
const _BFC = "BloomFilterColumns";
|
|
422
|
+
const _BFFPP = "BloomFilterFalsePositiveProbability";
|
|
423
|
+
const _BH = "BufferingHints";
|
|
424
|
+
const _BSB = "BlockSizeBytes";
|
|
425
|
+
const _C = "Connectivity";
|
|
426
|
+
const _CA = "CommonAttributes";
|
|
427
|
+
const _CARN = "CatalogARN";
|
|
428
|
+
const _CC = "CatalogConfiguration";
|
|
429
|
+
const _CCN = "ContentColumnName";
|
|
430
|
+
const _CCo = "CopyCommand";
|
|
431
|
+
const _CDIJKTU = "ConvertDotsInJsonKeysToUnderscores";
|
|
432
|
+
const _CDS = "CreateDeliveryStream";
|
|
433
|
+
const _CDSI = "CreateDeliveryStreamInput";
|
|
434
|
+
const _CDSO = "CreateDeliveryStreamOutput";
|
|
435
|
+
const _CDSVI = "CurrentDeliveryStreamVersionId";
|
|
436
|
+
const _CE = "CollectionEndpoint";
|
|
437
|
+
const _CEl = "ClusterEndpoint";
|
|
438
|
+
const _CEo = "ContentEncoding";
|
|
439
|
+
const _CF = "CompressionFormat";
|
|
440
|
+
const _CI = "CaseInsensitive";
|
|
441
|
+
const _CIa = "CatalogId";
|
|
442
|
+
const _CJDBCURL = "ClusterJDBCURL";
|
|
443
|
+
const _CME = "ConcurrentModificationException";
|
|
444
|
+
const _CO = "CopyOptions";
|
|
445
|
+
const _CT = "CreateTimestamp";
|
|
446
|
+
const _CTJKM = "ColumnToJsonKeyMappings";
|
|
447
|
+
const _CTZ = "CustomTimeZone";
|
|
448
|
+
const _CWLO = "CloudWatchLoggingOptions";
|
|
449
|
+
const _Co = "Columns";
|
|
450
|
+
const _Com = "Compression";
|
|
451
|
+
const _D = "Databases";
|
|
452
|
+
const _DARN = "DomainARN";
|
|
453
|
+
const _DCL = "DatabaseColumnList";
|
|
454
|
+
const _DD = "DestinationDescription";
|
|
455
|
+
const _DDIF = "DefaultDocumentIdFormat";
|
|
456
|
+
const _DDL = "DestinationDescriptionList";
|
|
457
|
+
const _DDN = "DestinationDatabaseName";
|
|
458
|
+
const _DDS = "DeleteDeliveryStream";
|
|
459
|
+
const _DDSI = "DeleteDeliveryStreamInput";
|
|
460
|
+
const _DDSIe = "DescribeDeliveryStreamInput";
|
|
461
|
+
const _DDSO = "DeleteDeliveryStreamOutput";
|
|
462
|
+
const _DDSOe = "DescribeDeliveryStreamOutput";
|
|
463
|
+
const _DDSe = "DescribeDeliveryStream";
|
|
464
|
+
const _DFCC = "DataFormatConversionConfiguration";
|
|
465
|
+
const _DI = "DestinationId";
|
|
466
|
+
const _DIO = "DocumentIdOptions";
|
|
467
|
+
const _DIS = "DurationInSeconds";
|
|
468
|
+
const _DKT = "DictionaryKeyThreshold";
|
|
469
|
+
const _DL = "DatabaseList";
|
|
470
|
+
const _DLO = "DataLoadingOption";
|
|
471
|
+
const _DN = "DatabaseName";
|
|
472
|
+
const _DPC = "DynamicPartitioningConfiguration";
|
|
473
|
+
const _DPSC = "DirectPutSourceConfiguration";
|
|
474
|
+
const _DPSD = "DirectPutSourceDescription";
|
|
475
|
+
const _DSAC = "DatabaseSourceAuthenticationConfiguration";
|
|
476
|
+
const _DSARN = "DeliveryStreamARN";
|
|
477
|
+
const _DSC = "DatabaseSourceConfiguration";
|
|
478
|
+
const _DSD = "DatabaseSourceDescription";
|
|
479
|
+
const _DSDe = "DeliveryStreamDescription";
|
|
480
|
+
const _DSEC = "DeliveryStreamEncryptionConfiguration";
|
|
481
|
+
const _DSECI = "DeliveryStreamEncryptionConfigurationInput";
|
|
482
|
+
const _DSI = "DatabaseSnapshotInfo";
|
|
483
|
+
const _DSIL = "DatabaseSnapshotInfoList";
|
|
484
|
+
const _DSN = "DeliveryStreamName";
|
|
485
|
+
const _DSNe = "DeliveryStreamNames";
|
|
486
|
+
const _DSS = "DeliveryStreamStatus";
|
|
487
|
+
const _DST = "DeliveryStreamType";
|
|
488
|
+
const _DSTe = "DeliveryStartTimestamp";
|
|
489
|
+
const _DSVPCC = "DatabaseSourceVPCConfiguration";
|
|
490
|
+
const _DTC = "DataTableColumns";
|
|
491
|
+
const _DTCL = "DestinationTableConfigurationList";
|
|
492
|
+
const _DTCe = "DestinationTableConfiguration";
|
|
493
|
+
const _DTL = "DatabaseTableList";
|
|
494
|
+
const _DTN = "DataTableName";
|
|
495
|
+
const _DTNe = "DestinationTableName";
|
|
496
|
+
const _Da = "Data";
|
|
497
|
+
const _Dat = "Database";
|
|
498
|
+
const _De = "Destinations";
|
|
499
|
+
const _Des = "Deserializer";
|
|
500
|
+
const _Det = "Details";
|
|
501
|
+
const _E = "Enabled";
|
|
502
|
+
const _EBH = "ElasticsearchBufferingHints";
|
|
503
|
+
const _EC = "EncryptionConfiguration";
|
|
504
|
+
const _ECn = "EndpointConfiguration";
|
|
505
|
+
const _ECr = "ErrorCode";
|
|
506
|
+
const _EDC = "ElasticsearchDestinationConfiguration";
|
|
507
|
+
const _EDCn = "EnableDictionaryCompression";
|
|
508
|
+
const _EDD = "ElasticsearchDestinationDescription";
|
|
509
|
+
const _EDU = "ElasticsearchDestinationUpdate";
|
|
510
|
+
const _EM = "ErrorMessage";
|
|
511
|
+
const _EOP = "ErrorOutputPrefix";
|
|
512
|
+
const _EP = "EnablePadding";
|
|
513
|
+
const _ERO = "ElasticsearchRetryOptions";
|
|
514
|
+
const _ESDC = "ExtendedS3DestinationConfiguration";
|
|
515
|
+
const _ESDD = "ExtendedS3DestinationDescription";
|
|
516
|
+
const _ESDI = "ExclusiveStartDestinationId";
|
|
517
|
+
const _ESDSN = "ExclusiveStartDeliveryStreamName";
|
|
518
|
+
const _ESDU = "ExtendedS3DestinationUpdate";
|
|
519
|
+
const _ESTK = "ExclusiveStartTagKey";
|
|
520
|
+
const _En = "Endpoint";
|
|
521
|
+
const _Enc = "Encrypted";
|
|
522
|
+
const _Ex = "Exclude";
|
|
523
|
+
const _FD = "FailureDescription";
|
|
524
|
+
const _FE = "FileExtension";
|
|
525
|
+
const _FPC = "FailedPutCount";
|
|
526
|
+
const _FV = "FormatVersion";
|
|
527
|
+
const _HEAK = "HttpEndpointAccessKey";
|
|
528
|
+
const _HEAN = "HttpEndpointAttributeName";
|
|
529
|
+
const _HEAV = "HttpEndpointAttributeValue";
|
|
530
|
+
const _HEBH = "HttpEndpointBufferingHints";
|
|
531
|
+
const _HEC = "HttpEndpointConfiguration";
|
|
532
|
+
const _HECA = "HttpEndpointCommonAttribute";
|
|
533
|
+
const _HECAL = "HttpEndpointCommonAttributesList";
|
|
534
|
+
const _HECATIS = "HECAcknowledgmentTimeoutInSeconds";
|
|
535
|
+
const _HECE = "HECEndpoint";
|
|
536
|
+
const _HECET = "HECEndpointType";
|
|
537
|
+
const _HECT = "HECToken";
|
|
538
|
+
const _HED = "HttpEndpointDescription";
|
|
539
|
+
const _HEDC = "HttpEndpointDestinationConfiguration";
|
|
540
|
+
const _HEDD = "HttpEndpointDestinationDescription";
|
|
541
|
+
const _HEDU = "HttpEndpointDestinationUpdate";
|
|
542
|
+
const _HERC = "HttpEndpointRequestConfiguration";
|
|
543
|
+
const _HERO = "HttpEndpointRetryOptions";
|
|
544
|
+
const _HEU = "HttpEndpointUrl";
|
|
545
|
+
const _HJSD = "HiveJsonSerDe";
|
|
546
|
+
const _HMD = "HasMoreDestinations";
|
|
547
|
+
const _HMDS = "HasMoreDeliveryStreams";
|
|
548
|
+
const _HMT = "HasMoreTags";
|
|
549
|
+
const _I = "Include";
|
|
550
|
+
const _IAE = "InvalidArgumentException";
|
|
551
|
+
const _IDC = "IcebergDestinationConfiguration";
|
|
552
|
+
const _IDD = "IcebergDestinationDescription";
|
|
553
|
+
const _IDU = "IcebergDestinationUpdate";
|
|
554
|
+
const _IFC = "InputFormatConfiguration";
|
|
555
|
+
const _IIS = "IntervalInSeconds";
|
|
556
|
+
const _IKMSRE = "InvalidKMSResourceException";
|
|
557
|
+
const _IN = "IndexName";
|
|
558
|
+
const _IRP = "IndexRotationPeriod";
|
|
559
|
+
const _ISE = "InvalidSourceException";
|
|
560
|
+
const _Id = "Id";
|
|
561
|
+
const _Ide = "Identity";
|
|
562
|
+
const _K = "Key";
|
|
563
|
+
const _KARN = "KeyARN";
|
|
564
|
+
const _KMSEC = "KMSEncryptionConfig";
|
|
565
|
+
const _KP = "KeyPassphrase";
|
|
566
|
+
const _KSARN = "KinesisStreamARN";
|
|
567
|
+
const _KSSC = "KinesisStreamSourceConfiguration";
|
|
568
|
+
const _KSSD = "KinesisStreamSourceDescription";
|
|
569
|
+
const _KT = "KeyType";
|
|
570
|
+
const _L = "Limit";
|
|
571
|
+
const _LDS = "ListDeliveryStreams";
|
|
572
|
+
const _LDSI = "ListDeliveryStreamsInput";
|
|
573
|
+
const _LDSO = "ListDeliveryStreamsOutput";
|
|
574
|
+
const _LEE = "LimitExceededException";
|
|
575
|
+
const _LGN = "LogGroupName";
|
|
576
|
+
const _LSN = "LogStreamName";
|
|
577
|
+
const _LTFDS = "ListTagsForDeliveryStream";
|
|
578
|
+
const _LTFDSI = "ListTagsForDeliveryStreamInput";
|
|
579
|
+
const _LTFDSO = "ListTagsForDeliveryStreamOutput";
|
|
580
|
+
const _LTFDSOTL = "ListTagsForDeliveryStreamOutputTagList";
|
|
581
|
+
const _LUT = "LastUpdateTimestamp";
|
|
582
|
+
const _MDCN = "MetaDataColumnName";
|
|
583
|
+
const _MPB = "MaxPaddingBytes";
|
|
584
|
+
const _MSKCARN = "MSKClusterARN";
|
|
585
|
+
const _MSKSC = "MSKSourceConfiguration";
|
|
586
|
+
const _MSKSD = "MSKSourceDescription";
|
|
587
|
+
const _N = "Name";
|
|
588
|
+
const _NEC = "NoEncryptionConfig";
|
|
589
|
+
const _OFC = "OutputFormatConfiguration";
|
|
590
|
+
const _OSD = "OrcSerDe";
|
|
591
|
+
const _OXJSD = "OpenXJsonSerDe";
|
|
592
|
+
const _P = "Password";
|
|
593
|
+
const _PC = "ProcessingConfiguration";
|
|
594
|
+
const _PF = "PartitionField";
|
|
595
|
+
const _PFa = "PartitionFields";
|
|
596
|
+
const _PK = "PrivateKey";
|
|
597
|
+
const _PL = "ProcessorList";
|
|
598
|
+
const _PLVI = "PrivateLinkVpceId";
|
|
599
|
+
const _PN = "ParameterName";
|
|
600
|
+
const _PP = "ProcessorParameter";
|
|
601
|
+
const _PPL = "ProcessorParameterList";
|
|
602
|
+
const _PR = "PutRecord";
|
|
603
|
+
const _PRB = "PutRecordBatch";
|
|
604
|
+
const _PRBI = "PutRecordBatchInput";
|
|
605
|
+
const _PRBO = "PutRecordBatchOutput";
|
|
606
|
+
const _PRBRE = "PutRecordBatchResponseEntry";
|
|
607
|
+
const _PRBREL = "PutRecordBatchRequestEntryList";
|
|
608
|
+
const _PRBRELu = "PutRecordBatchResponseEntryList";
|
|
609
|
+
const _PRI = "PutRecordInput";
|
|
610
|
+
const _PRO = "PutRecordOutput";
|
|
611
|
+
const _PS = "PartitionSpec";
|
|
612
|
+
const _PSB = "PageSizeBytes";
|
|
613
|
+
const _PSD = "ParquetSerDe";
|
|
614
|
+
const _PT = "PaddingTolerance";
|
|
615
|
+
const _PV = "ParameterValue";
|
|
616
|
+
const _Pa = "Parameters";
|
|
617
|
+
const _Po = "Port";
|
|
618
|
+
const _Pr = "Prefix";
|
|
619
|
+
const _Pro = "Processors";
|
|
620
|
+
const _Proc = "Processor";
|
|
621
|
+
const _R = "Records";
|
|
622
|
+
const _RARN = "RoleARN";
|
|
623
|
+
const _RB = "RequestedBy";
|
|
624
|
+
const _RC = "RequestConfiguration";
|
|
625
|
+
const _RDC = "RedshiftDestinationConfiguration";
|
|
626
|
+
const _RDD = "RedshiftDestinationDescription";
|
|
627
|
+
const _RDU = "RedshiftDestinationUpdate";
|
|
628
|
+
const _RFT = "ReadFromTimestamp";
|
|
629
|
+
const _RI = "RecordId";
|
|
630
|
+
const _RIS = "RowIndexStride";
|
|
631
|
+
const _RIUE = "ResourceInUseException";
|
|
632
|
+
const _RNFE = "ResourceNotFoundException";
|
|
633
|
+
const _RO = "RetryOptions";
|
|
634
|
+
const _RR = "RequestResponses";
|
|
635
|
+
const _RRO = "RedshiftRetryOptions";
|
|
636
|
+
const _RT = "RequestTimestamp";
|
|
637
|
+
const _Re = "Record";
|
|
638
|
+
const _Reg = "Region";
|
|
639
|
+
const _S = "Status";
|
|
640
|
+
const _SARN = "SecretARN";
|
|
641
|
+
const _SAU = "SnowflakeAccountUrl";
|
|
642
|
+
const _SBC = "S3BackupConfiguration";
|
|
643
|
+
const _SBD = "S3BackupDescription";
|
|
644
|
+
const _SBH = "SnowflakeBufferingHints";
|
|
645
|
+
const _SBHp = "SplunkBufferingHints";
|
|
646
|
+
const _SBM = "S3BackupMode";
|
|
647
|
+
const _SBU = "S3BackupUpdate";
|
|
648
|
+
const _SC = "S3Configuration";
|
|
649
|
+
const _SCCN = "SnowflakeContentColumnName";
|
|
650
|
+
const _SCc = "SchemaConfiguration";
|
|
651
|
+
const _SD = "SnowflakeDatabase";
|
|
652
|
+
const _SDC = "S3DestinationConfiguration";
|
|
653
|
+
const _SDCn = "SnowflakeDestinationConfiguration";
|
|
654
|
+
const _SDCp = "SplunkDestinationConfiguration";
|
|
655
|
+
const _SDD = "S3DestinationDescription";
|
|
656
|
+
const _SDDn = "SnowflakeDestinationDescription";
|
|
657
|
+
const _SDDp = "SplunkDestinationDescription";
|
|
658
|
+
const _SDSE = "StartDeliveryStreamEncryption";
|
|
659
|
+
const _SDSEI = "StartDeliveryStreamEncryptionInput";
|
|
660
|
+
const _SDSEIt = "StopDeliveryStreamEncryptionInput";
|
|
661
|
+
const _SDSEO = "StartDeliveryStreamEncryptionOutput";
|
|
662
|
+
const _SDSEOt = "StopDeliveryStreamEncryptionOutput";
|
|
663
|
+
const _SDSEt = "StopDeliveryStreamEncryption";
|
|
664
|
+
const _SDU = "S3DestinationUpdate";
|
|
665
|
+
const _SDUn = "SnowflakeDestinationUpdate";
|
|
666
|
+
const _SDUp = "SplunkDestinationUpdate";
|
|
667
|
+
const _SDo = "SourceDescription";
|
|
668
|
+
const _SEC = "SchemaEvolutionConfiguration";
|
|
669
|
+
const _SEOP = "S3ErrorOutputPrefix";
|
|
670
|
+
const _SGI = "SecurityGroupIds";
|
|
671
|
+
const _SI = "SnapshotInfo";
|
|
672
|
+
const _SIMB = "SizeInMBs";
|
|
673
|
+
const _SIu = "SubnetIds";
|
|
674
|
+
const _SK = "SurrogateKeys";
|
|
675
|
+
const _SKP = "SnowflakeKeyPassphrase";
|
|
676
|
+
const _SMC = "SecretsManagerConfiguration";
|
|
677
|
+
const _SMDCN = "SnowflakeMetaDataColumnName";
|
|
678
|
+
const _SN = "SourceName";
|
|
679
|
+
const _SPK = "SnowflakePrivateKey";
|
|
680
|
+
const _SPLVI = "SnowflakePrivateLinkVpceId";
|
|
681
|
+
const _SR = "SnowflakeRole";
|
|
682
|
+
const _SRC = "SnowflakeRoleConfiguration";
|
|
683
|
+
const _SRO = "SnowflakeRetryOptions";
|
|
684
|
+
const _SROp = "SplunkRetryOptions";
|
|
685
|
+
const _SS = "SnowflakeSchema";
|
|
686
|
+
const _SSB = "StripeSizeBytes";
|
|
687
|
+
const _SSLM = "SSLMode";
|
|
688
|
+
const _ST = "SnowflakeTable";
|
|
689
|
+
const _SU = "SnowflakeUser";
|
|
690
|
+
const _SUE = "ServiceUnavailableException";
|
|
691
|
+
const _SUp = "S3Update";
|
|
692
|
+
const _SVC = "SnowflakeVpcConfiguration";
|
|
693
|
+
const _SWT = "SnapshotWatermarkTable";
|
|
694
|
+
const _Sc = "Schema";
|
|
695
|
+
const _Se = "Serializer";
|
|
696
|
+
const _So = "Source";
|
|
697
|
+
const _T = "Tags";
|
|
698
|
+
const _TCC = "TableCreationConfiguration";
|
|
699
|
+
const _TDS = "TagDeliveryStream";
|
|
700
|
+
const _TDSI = "TagDeliveryStreamInput";
|
|
701
|
+
const _TDSITL = "TagDeliveryStreamInputTagList";
|
|
702
|
+
const _TDSO = "TagDeliveryStreamOutput";
|
|
703
|
+
const _TF = "TimestampFormats";
|
|
704
|
+
const _THIMB = "ThroughputHintInMBs";
|
|
705
|
+
const _TK = "TagKeys";
|
|
706
|
+
const _TN = "TypeName";
|
|
707
|
+
const _TNa = "TableName";
|
|
708
|
+
const _TNo = "TopicName";
|
|
709
|
+
const _Ta = "Table";
|
|
710
|
+
const _Tab = "Tables";
|
|
711
|
+
const _Tag = "Tag";
|
|
712
|
+
const _Ty = "Type";
|
|
713
|
+
const _U = "Username";
|
|
714
|
+
const _UD = "UpdateDestination";
|
|
715
|
+
const _UDI = "UpdateDestinationInput";
|
|
716
|
+
const _UDO = "UpdateDestinationOutput";
|
|
717
|
+
const _UDS = "UntagDeliveryStream";
|
|
718
|
+
const _UDSI = "UntagDeliveryStreamInput";
|
|
719
|
+
const _UDSO = "UntagDeliveryStreamOutput";
|
|
720
|
+
const _UK = "UniqueKeys";
|
|
721
|
+
const _Ur = "Url";
|
|
722
|
+
const _Us = "User";
|
|
723
|
+
const _V = "Value";
|
|
724
|
+
const _VC = "VpcConfiguration";
|
|
725
|
+
const _VCD = "VpcConfigurationDescription";
|
|
726
|
+
const _VESN = "VpcEndpointServiceName";
|
|
727
|
+
const _VI = "VersionId";
|
|
728
|
+
const _VIp = "VpcId";
|
|
729
|
+
const _WL = "WarehouseLocation";
|
|
730
|
+
const _WV = "WriterVersion";
|
|
731
|
+
const _c = "client";
|
|
732
|
+
const _co = "code";
|
|
733
|
+
const _e = "error";
|
|
734
|
+
const _hE = "httpError";
|
|
735
|
+
const _m = "message";
|
|
736
|
+
const _s = "server";
|
|
737
|
+
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.firehose";
|
|
738
|
+
const n0 = "com.amazonaws.firehose";
|
|
739
|
+
var HttpEndpointAccessKey = [0, n0, _HEAK, 8, 0];
|
|
740
|
+
var HttpEndpointAttributeName = [0, n0, _HEAN, 8, 0];
|
|
741
|
+
var HttpEndpointAttributeValue = [0, n0, _HEAV, 8, 0];
|
|
742
|
+
var HttpEndpointUrl = [0, n0, _HEU, 8, 0];
|
|
743
|
+
var Password = [0, n0, _P, 8, 0];
|
|
744
|
+
var SnowflakeAccountUrl = [0, n0, _SAU, 8, 0];
|
|
745
|
+
var SnowflakeContentColumnName = [0, n0, _SCCN, 8, 0];
|
|
746
|
+
var SnowflakeDatabase = [0, n0, _SD, 8, 0];
|
|
747
|
+
var SnowflakeKeyPassphrase = [0, n0, _SKP, 8, 0];
|
|
748
|
+
var SnowflakeMetaDataColumnName = [0, n0, _SMDCN, 8, 0];
|
|
749
|
+
var SnowflakePrivateKey = [0, n0, _SPK, 8, 0];
|
|
750
|
+
var SnowflakePrivateLinkVpceId = [0, n0, _SPLVI, 8, 0];
|
|
751
|
+
var SnowflakeRole = [0, n0, _SR, 8, 0];
|
|
752
|
+
var SnowflakeSchema = [0, n0, _SS, 8, 0];
|
|
753
|
+
var SnowflakeTable = [0, n0, _ST, 8, 0];
|
|
754
|
+
var SnowflakeUser = [0, n0, _SU, 8, 0];
|
|
755
|
+
var Username = [0, n0, _U, 8, 0];
|
|
756
|
+
var AmazonOpenSearchServerlessBufferingHints = [3, n0, _AOSSBH, 0, [_IIS, _SIMB], [1, 1]];
|
|
757
|
+
var AmazonOpenSearchServerlessDestinationConfiguration = [
|
|
758
|
+
3,
|
|
759
|
+
n0,
|
|
760
|
+
_AOSSDC,
|
|
761
|
+
0,
|
|
762
|
+
[_RARN, _CE, _IN, _BH, _RO, _SBM, _SC, _PC, _CWLO, _VC],
|
|
763
|
+
[
|
|
764
|
+
0,
|
|
765
|
+
0,
|
|
766
|
+
0,
|
|
767
|
+
() => AmazonOpenSearchServerlessBufferingHints,
|
|
768
|
+
() => AmazonOpenSearchServerlessRetryOptions,
|
|
769
|
+
0,
|
|
770
|
+
() => S3DestinationConfiguration,
|
|
771
|
+
() => ProcessingConfiguration,
|
|
772
|
+
() => CloudWatchLoggingOptions,
|
|
773
|
+
() => VpcConfiguration,
|
|
774
|
+
],
|
|
775
|
+
];
|
|
776
|
+
var AmazonOpenSearchServerlessDestinationDescription = [
|
|
777
|
+
3,
|
|
778
|
+
n0,
|
|
779
|
+
_AOSSDD,
|
|
780
|
+
0,
|
|
781
|
+
[_RARN, _CE, _IN, _BH, _RO, _SBM, _SDD, _PC, _CWLO, _VCD],
|
|
782
|
+
[
|
|
783
|
+
0,
|
|
784
|
+
0,
|
|
785
|
+
0,
|
|
786
|
+
() => AmazonOpenSearchServerlessBufferingHints,
|
|
787
|
+
() => AmazonOpenSearchServerlessRetryOptions,
|
|
788
|
+
0,
|
|
789
|
+
() => S3DestinationDescription,
|
|
790
|
+
() => ProcessingConfiguration,
|
|
791
|
+
() => CloudWatchLoggingOptions,
|
|
792
|
+
() => VpcConfigurationDescription,
|
|
793
|
+
],
|
|
794
|
+
];
|
|
795
|
+
var AmazonOpenSearchServerlessDestinationUpdate = [
|
|
796
|
+
3,
|
|
797
|
+
n0,
|
|
798
|
+
_AOSSDU,
|
|
799
|
+
0,
|
|
800
|
+
[_RARN, _CE, _IN, _BH, _RO, _SUp, _PC, _CWLO],
|
|
801
|
+
[
|
|
802
|
+
0,
|
|
803
|
+
0,
|
|
804
|
+
0,
|
|
805
|
+
() => AmazonOpenSearchServerlessBufferingHints,
|
|
806
|
+
() => AmazonOpenSearchServerlessRetryOptions,
|
|
807
|
+
() => S3DestinationUpdate,
|
|
808
|
+
() => ProcessingConfiguration,
|
|
809
|
+
() => CloudWatchLoggingOptions,
|
|
810
|
+
],
|
|
811
|
+
];
|
|
812
|
+
var AmazonOpenSearchServerlessRetryOptions = [3, n0, _AOSSRO, 0, [_DIS], [1]];
|
|
813
|
+
var AmazonopensearchserviceBufferingHints = [3, n0, _ABH, 0, [_IIS, _SIMB], [1, 1]];
|
|
814
|
+
var AmazonopensearchserviceDestinationConfiguration = [
|
|
815
|
+
3,
|
|
816
|
+
n0,
|
|
817
|
+
_ADC,
|
|
818
|
+
0,
|
|
819
|
+
[_RARN, _DARN, _CEl, _IN, _TN, _IRP, _BH, _RO, _SBM, _SC, _PC, _CWLO, _VC, _DIO],
|
|
820
|
+
[
|
|
821
|
+
0,
|
|
822
|
+
0,
|
|
823
|
+
0,
|
|
824
|
+
0,
|
|
825
|
+
0,
|
|
826
|
+
0,
|
|
827
|
+
() => AmazonopensearchserviceBufferingHints,
|
|
828
|
+
() => AmazonopensearchserviceRetryOptions,
|
|
829
|
+
0,
|
|
830
|
+
() => S3DestinationConfiguration,
|
|
831
|
+
() => ProcessingConfiguration,
|
|
832
|
+
() => CloudWatchLoggingOptions,
|
|
833
|
+
() => VpcConfiguration,
|
|
834
|
+
() => DocumentIdOptions,
|
|
835
|
+
],
|
|
836
|
+
];
|
|
837
|
+
var AmazonopensearchserviceDestinationDescription = [
|
|
838
|
+
3,
|
|
839
|
+
n0,
|
|
840
|
+
_ADD,
|
|
841
|
+
0,
|
|
842
|
+
[_RARN, _DARN, _CEl, _IN, _TN, _IRP, _BH, _RO, _SBM, _SDD, _PC, _CWLO, _VCD, _DIO],
|
|
843
|
+
[
|
|
844
|
+
0,
|
|
845
|
+
0,
|
|
846
|
+
0,
|
|
847
|
+
0,
|
|
848
|
+
0,
|
|
849
|
+
0,
|
|
850
|
+
() => AmazonopensearchserviceBufferingHints,
|
|
851
|
+
() => AmazonopensearchserviceRetryOptions,
|
|
852
|
+
0,
|
|
853
|
+
() => S3DestinationDescription,
|
|
854
|
+
() => ProcessingConfiguration,
|
|
855
|
+
() => CloudWatchLoggingOptions,
|
|
856
|
+
() => VpcConfigurationDescription,
|
|
857
|
+
() => DocumentIdOptions,
|
|
858
|
+
],
|
|
859
|
+
];
|
|
860
|
+
var AmazonopensearchserviceDestinationUpdate = [
|
|
861
|
+
3,
|
|
862
|
+
n0,
|
|
863
|
+
_ADU,
|
|
864
|
+
0,
|
|
865
|
+
[_RARN, _DARN, _CEl, _IN, _TN, _IRP, _BH, _RO, _SUp, _PC, _CWLO, _DIO],
|
|
866
|
+
[
|
|
867
|
+
0,
|
|
868
|
+
0,
|
|
869
|
+
0,
|
|
870
|
+
0,
|
|
871
|
+
0,
|
|
872
|
+
0,
|
|
873
|
+
() => AmazonopensearchserviceBufferingHints,
|
|
874
|
+
() => AmazonopensearchserviceRetryOptions,
|
|
875
|
+
() => S3DestinationUpdate,
|
|
876
|
+
() => ProcessingConfiguration,
|
|
877
|
+
() => CloudWatchLoggingOptions,
|
|
878
|
+
() => DocumentIdOptions,
|
|
879
|
+
],
|
|
880
|
+
];
|
|
881
|
+
var AmazonopensearchserviceRetryOptions = [3, n0, _ARO, 0, [_DIS], [1]];
|
|
882
|
+
var AuthenticationConfiguration = [3, n0, _AC, 0, [_RARN, _C], [0, 0]];
|
|
883
|
+
var BufferingHints = [3, n0, _BH, 0, [_SIMB, _IIS], [1, 1]];
|
|
884
|
+
var CatalogConfiguration = [3, n0, _CC, 0, [_CARN, _WL], [0, 0]];
|
|
885
|
+
var CloudWatchLoggingOptions = [3, n0, _CWLO, 0, [_E, _LGN, _LSN], [2, 0, 0]];
|
|
886
|
+
var ConcurrentModificationException = [
|
|
887
|
+
-3,
|
|
888
|
+
n0,
|
|
889
|
+
_CME,
|
|
890
|
+
{
|
|
891
|
+
[_e]: _c,
|
|
892
|
+
},
|
|
893
|
+
[_m],
|
|
894
|
+
[0],
|
|
895
|
+
];
|
|
896
|
+
schema.TypeRegistry.for(n0).registerError(ConcurrentModificationException, ConcurrentModificationException$1);
|
|
897
|
+
var CopyCommand = [3, n0, _CCo, 0, [_DTN, _DTC, _CO], [0, 0, 0]];
|
|
898
|
+
var CreateDeliveryStreamInput = [
|
|
899
|
+
3,
|
|
900
|
+
n0,
|
|
901
|
+
_CDSI,
|
|
902
|
+
0,
|
|
903
|
+
[
|
|
904
|
+
_DSN,
|
|
905
|
+
_DST,
|
|
906
|
+
_DPSC,
|
|
907
|
+
_KSSC,
|
|
908
|
+
_DSECI,
|
|
909
|
+
_SDC,
|
|
910
|
+
_ESDC,
|
|
911
|
+
_RDC,
|
|
912
|
+
_EDC,
|
|
913
|
+
_ADC,
|
|
914
|
+
_SDCp,
|
|
915
|
+
_HEDC,
|
|
916
|
+
_T,
|
|
917
|
+
_AOSSDC,
|
|
918
|
+
_MSKSC,
|
|
919
|
+
_SDCn,
|
|
920
|
+
_IDC,
|
|
921
|
+
_DSC,
|
|
922
|
+
],
|
|
923
|
+
[
|
|
924
|
+
0,
|
|
925
|
+
0,
|
|
926
|
+
() => DirectPutSourceConfiguration,
|
|
927
|
+
() => KinesisStreamSourceConfiguration,
|
|
928
|
+
() => DeliveryStreamEncryptionConfigurationInput,
|
|
929
|
+
() => S3DestinationConfiguration,
|
|
930
|
+
() => ExtendedS3DestinationConfiguration,
|
|
931
|
+
[() => RedshiftDestinationConfiguration, 0],
|
|
932
|
+
() => ElasticsearchDestinationConfiguration,
|
|
933
|
+
() => AmazonopensearchserviceDestinationConfiguration,
|
|
934
|
+
() => SplunkDestinationConfiguration,
|
|
935
|
+
[() => HttpEndpointDestinationConfiguration, 0],
|
|
936
|
+
() => TagDeliveryStreamInputTagList,
|
|
937
|
+
() => AmazonOpenSearchServerlessDestinationConfiguration,
|
|
938
|
+
() => MSKSourceConfiguration,
|
|
939
|
+
[() => SnowflakeDestinationConfiguration, 0],
|
|
940
|
+
() => IcebergDestinationConfiguration,
|
|
941
|
+
() => DatabaseSourceConfiguration,
|
|
942
|
+
],
|
|
943
|
+
];
|
|
944
|
+
var CreateDeliveryStreamOutput = [3, n0, _CDSO, 0, [_DSARN], [0]];
|
|
945
|
+
var DatabaseColumnList = [3, n0, _DCL, 0, [_I, _Ex], [64 | 0, 64 | 0]];
|
|
946
|
+
var DatabaseList = [3, n0, _DL, 0, [_I, _Ex], [64 | 0, 64 | 0]];
|
|
947
|
+
var DatabaseSnapshotInfo = [
|
|
948
|
+
3,
|
|
949
|
+
n0,
|
|
950
|
+
_DSI,
|
|
951
|
+
0,
|
|
952
|
+
[_Id, _Ta, _RT, _RB, _S, _FD],
|
|
953
|
+
[0, 0, 4, 0, 0, () => FailureDescription],
|
|
954
|
+
];
|
|
955
|
+
var DatabaseSourceAuthenticationConfiguration = [
|
|
956
|
+
3,
|
|
957
|
+
n0,
|
|
958
|
+
_DSAC,
|
|
959
|
+
0,
|
|
960
|
+
[_SMC],
|
|
961
|
+
[() => SecretsManagerConfiguration],
|
|
962
|
+
];
|
|
963
|
+
var DatabaseSourceConfiguration = [
|
|
964
|
+
3,
|
|
965
|
+
n0,
|
|
966
|
+
_DSC,
|
|
967
|
+
0,
|
|
968
|
+
[_Ty, _En, _Po, _SSLM, _D, _Tab, _Co, _SK, _SWT, _DSAC, _DSVPCC],
|
|
969
|
+
[
|
|
970
|
+
0,
|
|
971
|
+
0,
|
|
972
|
+
1,
|
|
973
|
+
0,
|
|
974
|
+
() => DatabaseList,
|
|
975
|
+
() => DatabaseTableList,
|
|
976
|
+
() => DatabaseColumnList,
|
|
977
|
+
64 | 0,
|
|
978
|
+
0,
|
|
979
|
+
() => DatabaseSourceAuthenticationConfiguration,
|
|
980
|
+
() => DatabaseSourceVPCConfiguration,
|
|
981
|
+
],
|
|
982
|
+
];
|
|
983
|
+
var DatabaseSourceDescription = [
|
|
984
|
+
3,
|
|
985
|
+
n0,
|
|
986
|
+
_DSD,
|
|
987
|
+
0,
|
|
988
|
+
[_Ty, _En, _Po, _SSLM, _D, _Tab, _Co, _SK, _SWT, _SI, _DSAC, _DSVPCC],
|
|
989
|
+
[
|
|
990
|
+
0,
|
|
991
|
+
0,
|
|
992
|
+
1,
|
|
993
|
+
0,
|
|
994
|
+
() => DatabaseList,
|
|
995
|
+
() => DatabaseTableList,
|
|
996
|
+
() => DatabaseColumnList,
|
|
997
|
+
64 | 0,
|
|
998
|
+
0,
|
|
999
|
+
() => DatabaseSnapshotInfoList,
|
|
1000
|
+
() => DatabaseSourceAuthenticationConfiguration,
|
|
1001
|
+
() => DatabaseSourceVPCConfiguration,
|
|
1002
|
+
],
|
|
1003
|
+
];
|
|
1004
|
+
var DatabaseSourceVPCConfiguration = [3, n0, _DSVPCC, 0, [_VESN], [0]];
|
|
1005
|
+
var DatabaseTableList = [3, n0, _DTL, 0, [_I, _Ex], [64 | 0, 64 | 0]];
|
|
1006
|
+
var DataFormatConversionConfiguration = [
|
|
1007
|
+
3,
|
|
1008
|
+
n0,
|
|
1009
|
+
_DFCC,
|
|
1010
|
+
0,
|
|
1011
|
+
[_SCc, _IFC, _OFC, _E],
|
|
1012
|
+
[() => SchemaConfiguration, () => InputFormatConfiguration, () => OutputFormatConfiguration, 2],
|
|
1013
|
+
];
|
|
1014
|
+
var DeleteDeliveryStreamInput = [3, n0, _DDSI, 0, [_DSN, _AFD], [0, 2]];
|
|
1015
|
+
var DeleteDeliveryStreamOutput = [3, n0, _DDSO, 0, [], []];
|
|
1016
|
+
var DeliveryStreamDescription = [
|
|
1017
|
+
3,
|
|
1018
|
+
n0,
|
|
1019
|
+
_DSDe,
|
|
1020
|
+
0,
|
|
1021
|
+
[_DSN, _DSARN, _DSS, _FD, _DSEC, _DST, _VI, _CT, _LUT, _So, _De, _HMD],
|
|
1022
|
+
[
|
|
1023
|
+
0,
|
|
1024
|
+
0,
|
|
1025
|
+
0,
|
|
1026
|
+
() => FailureDescription,
|
|
1027
|
+
() => DeliveryStreamEncryptionConfiguration,
|
|
1028
|
+
0,
|
|
1029
|
+
0,
|
|
1030
|
+
4,
|
|
1031
|
+
4,
|
|
1032
|
+
() => SourceDescription,
|
|
1033
|
+
[() => DestinationDescriptionList, 0],
|
|
1034
|
+
2,
|
|
1035
|
+
],
|
|
1036
|
+
];
|
|
1037
|
+
var DeliveryStreamEncryptionConfiguration = [
|
|
1038
|
+
3,
|
|
1039
|
+
n0,
|
|
1040
|
+
_DSEC,
|
|
1041
|
+
0,
|
|
1042
|
+
[_KARN, _KT, _S, _FD],
|
|
1043
|
+
[0, 0, 0, () => FailureDescription],
|
|
1044
|
+
];
|
|
1045
|
+
var DeliveryStreamEncryptionConfigurationInput = [3, n0, _DSECI, 0, [_KARN, _KT], [0, 0]];
|
|
1046
|
+
var DescribeDeliveryStreamInput = [3, n0, _DDSIe, 0, [_DSN, _L, _ESDI], [0, 1, 0]];
|
|
1047
|
+
var DescribeDeliveryStreamOutput = [
|
|
1048
|
+
3,
|
|
1049
|
+
n0,
|
|
1050
|
+
_DDSOe,
|
|
1051
|
+
0,
|
|
1052
|
+
[_DSDe],
|
|
1053
|
+
[[() => DeliveryStreamDescription, 0]],
|
|
1054
|
+
];
|
|
1055
|
+
var Deserializer = [
|
|
1056
|
+
3,
|
|
1057
|
+
n0,
|
|
1058
|
+
_Des,
|
|
1059
|
+
0,
|
|
1060
|
+
[_OXJSD, _HJSD],
|
|
1061
|
+
[() => OpenXJsonSerDe, () => HiveJsonSerDe],
|
|
1062
|
+
];
|
|
1063
|
+
var DestinationDescription = [
|
|
1064
|
+
3,
|
|
1065
|
+
n0,
|
|
1066
|
+
_DD,
|
|
1067
|
+
0,
|
|
1068
|
+
[_DI, _SDD, _ESDD, _RDD, _EDD, _ADD, _SDDp, _HEDD, _SDDn, _AOSSDD, _IDD],
|
|
1069
|
+
[
|
|
1070
|
+
0,
|
|
1071
|
+
() => S3DestinationDescription,
|
|
1072
|
+
() => ExtendedS3DestinationDescription,
|
|
1073
|
+
[() => RedshiftDestinationDescription, 0],
|
|
1074
|
+
() => ElasticsearchDestinationDescription,
|
|
1075
|
+
() => AmazonopensearchserviceDestinationDescription,
|
|
1076
|
+
() => SplunkDestinationDescription,
|
|
1077
|
+
[() => HttpEndpointDestinationDescription, 0],
|
|
1078
|
+
[() => SnowflakeDestinationDescription, 0],
|
|
1079
|
+
() => AmazonOpenSearchServerlessDestinationDescription,
|
|
1080
|
+
() => IcebergDestinationDescription,
|
|
1081
|
+
],
|
|
1082
|
+
];
|
|
1083
|
+
var DestinationTableConfiguration = [
|
|
1084
|
+
3,
|
|
1085
|
+
n0,
|
|
1086
|
+
_DTCe,
|
|
1087
|
+
0,
|
|
1088
|
+
[_DTNe, _DDN, _UK, _PS, _SEOP],
|
|
1089
|
+
[0, 0, 64 | 0, () => PartitionSpec, 0],
|
|
1090
|
+
];
|
|
1091
|
+
var DirectPutSourceConfiguration = [3, n0, _DPSC, 0, [_THIMB], [1]];
|
|
1092
|
+
var DirectPutSourceDescription = [3, n0, _DPSD, 0, [_THIMB], [1]];
|
|
1093
|
+
var DocumentIdOptions = [3, n0, _DIO, 0, [_DDIF], [0]];
|
|
1094
|
+
var DynamicPartitioningConfiguration = [
|
|
1095
|
+
3,
|
|
1096
|
+
n0,
|
|
1097
|
+
_DPC,
|
|
1098
|
+
0,
|
|
1099
|
+
[_RO, _E],
|
|
1100
|
+
[() => RetryOptions, 2],
|
|
1101
|
+
];
|
|
1102
|
+
var ElasticsearchBufferingHints = [3, n0, _EBH, 0, [_IIS, _SIMB], [1, 1]];
|
|
1103
|
+
var ElasticsearchDestinationConfiguration = [
|
|
1104
|
+
3,
|
|
1105
|
+
n0,
|
|
1106
|
+
_EDC,
|
|
1107
|
+
0,
|
|
1108
|
+
[_RARN, _DARN, _CEl, _IN, _TN, _IRP, _BH, _RO, _SBM, _SC, _PC, _CWLO, _VC, _DIO],
|
|
1109
|
+
[
|
|
1110
|
+
0,
|
|
1111
|
+
0,
|
|
1112
|
+
0,
|
|
1113
|
+
0,
|
|
1114
|
+
0,
|
|
1115
|
+
0,
|
|
1116
|
+
() => ElasticsearchBufferingHints,
|
|
1117
|
+
() => ElasticsearchRetryOptions,
|
|
1118
|
+
0,
|
|
1119
|
+
() => S3DestinationConfiguration,
|
|
1120
|
+
() => ProcessingConfiguration,
|
|
1121
|
+
() => CloudWatchLoggingOptions,
|
|
1122
|
+
() => VpcConfiguration,
|
|
1123
|
+
() => DocumentIdOptions,
|
|
1124
|
+
],
|
|
1125
|
+
];
|
|
1126
|
+
var ElasticsearchDestinationDescription = [
|
|
1127
|
+
3,
|
|
1128
|
+
n0,
|
|
1129
|
+
_EDD,
|
|
1130
|
+
0,
|
|
1131
|
+
[_RARN, _DARN, _CEl, _IN, _TN, _IRP, _BH, _RO, _SBM, _SDD, _PC, _CWLO, _VCD, _DIO],
|
|
1132
|
+
[
|
|
1133
|
+
0,
|
|
1134
|
+
0,
|
|
1135
|
+
0,
|
|
1136
|
+
0,
|
|
1137
|
+
0,
|
|
1138
|
+
0,
|
|
1139
|
+
() => ElasticsearchBufferingHints,
|
|
1140
|
+
() => ElasticsearchRetryOptions,
|
|
1141
|
+
0,
|
|
1142
|
+
() => S3DestinationDescription,
|
|
1143
|
+
() => ProcessingConfiguration,
|
|
1144
|
+
() => CloudWatchLoggingOptions,
|
|
1145
|
+
() => VpcConfigurationDescription,
|
|
1146
|
+
() => DocumentIdOptions,
|
|
1147
|
+
],
|
|
1148
|
+
];
|
|
1149
|
+
var ElasticsearchDestinationUpdate = [
|
|
1150
|
+
3,
|
|
1151
|
+
n0,
|
|
1152
|
+
_EDU,
|
|
1153
|
+
0,
|
|
1154
|
+
[_RARN, _DARN, _CEl, _IN, _TN, _IRP, _BH, _RO, _SUp, _PC, _CWLO, _DIO],
|
|
1155
|
+
[
|
|
1156
|
+
0,
|
|
1157
|
+
0,
|
|
1158
|
+
0,
|
|
1159
|
+
0,
|
|
1160
|
+
0,
|
|
1161
|
+
0,
|
|
1162
|
+
() => ElasticsearchBufferingHints,
|
|
1163
|
+
() => ElasticsearchRetryOptions,
|
|
1164
|
+
() => S3DestinationUpdate,
|
|
1165
|
+
() => ProcessingConfiguration,
|
|
1166
|
+
() => CloudWatchLoggingOptions,
|
|
1167
|
+
() => DocumentIdOptions,
|
|
1168
|
+
],
|
|
1169
|
+
];
|
|
1170
|
+
var ElasticsearchRetryOptions = [3, n0, _ERO, 0, [_DIS], [1]];
|
|
1171
|
+
var EncryptionConfiguration = [
|
|
1172
|
+
3,
|
|
1173
|
+
n0,
|
|
1174
|
+
_EC,
|
|
1175
|
+
0,
|
|
1176
|
+
[_NEC, _KMSEC],
|
|
1177
|
+
[0, () => KMSEncryptionConfig],
|
|
1178
|
+
];
|
|
1179
|
+
var ExtendedS3DestinationConfiguration = [
|
|
1180
|
+
3,
|
|
1181
|
+
n0,
|
|
1182
|
+
_ESDC,
|
|
1183
|
+
0,
|
|
1184
|
+
[_RARN, _BARN, _Pr, _EOP, _BH, _CF, _EC, _CWLO, _PC, _SBM, _SBC, _DFCC, _DPC, _FE, _CTZ],
|
|
1185
|
+
[
|
|
1186
|
+
0,
|
|
1187
|
+
0,
|
|
1188
|
+
0,
|
|
1189
|
+
0,
|
|
1190
|
+
() => BufferingHints,
|
|
1191
|
+
0,
|
|
1192
|
+
() => EncryptionConfiguration,
|
|
1193
|
+
() => CloudWatchLoggingOptions,
|
|
1194
|
+
() => ProcessingConfiguration,
|
|
1195
|
+
0,
|
|
1196
|
+
() => S3DestinationConfiguration,
|
|
1197
|
+
() => DataFormatConversionConfiguration,
|
|
1198
|
+
() => DynamicPartitioningConfiguration,
|
|
1199
|
+
0,
|
|
1200
|
+
0,
|
|
1201
|
+
],
|
|
1202
|
+
];
|
|
1203
|
+
var ExtendedS3DestinationDescription = [
|
|
1204
|
+
3,
|
|
1205
|
+
n0,
|
|
1206
|
+
_ESDD,
|
|
1207
|
+
0,
|
|
1208
|
+
[_RARN, _BARN, _Pr, _EOP, _BH, _CF, _EC, _CWLO, _PC, _SBM, _SBD, _DFCC, _DPC, _FE, _CTZ],
|
|
1209
|
+
[
|
|
1210
|
+
0,
|
|
1211
|
+
0,
|
|
1212
|
+
0,
|
|
1213
|
+
0,
|
|
1214
|
+
() => BufferingHints,
|
|
1215
|
+
0,
|
|
1216
|
+
() => EncryptionConfiguration,
|
|
1217
|
+
() => CloudWatchLoggingOptions,
|
|
1218
|
+
() => ProcessingConfiguration,
|
|
1219
|
+
0,
|
|
1220
|
+
() => S3DestinationDescription,
|
|
1221
|
+
() => DataFormatConversionConfiguration,
|
|
1222
|
+
() => DynamicPartitioningConfiguration,
|
|
1223
|
+
0,
|
|
1224
|
+
0,
|
|
1225
|
+
],
|
|
1226
|
+
];
|
|
1227
|
+
var ExtendedS3DestinationUpdate = [
|
|
1228
|
+
3,
|
|
1229
|
+
n0,
|
|
1230
|
+
_ESDU,
|
|
1231
|
+
0,
|
|
1232
|
+
[_RARN, _BARN, _Pr, _EOP, _BH, _CF, _EC, _CWLO, _PC, _SBM, _SBU, _DFCC, _DPC, _FE, _CTZ],
|
|
1233
|
+
[
|
|
1234
|
+
0,
|
|
1235
|
+
0,
|
|
1236
|
+
0,
|
|
1237
|
+
0,
|
|
1238
|
+
() => BufferingHints,
|
|
1239
|
+
0,
|
|
1240
|
+
() => EncryptionConfiguration,
|
|
1241
|
+
() => CloudWatchLoggingOptions,
|
|
1242
|
+
() => ProcessingConfiguration,
|
|
1243
|
+
0,
|
|
1244
|
+
() => S3DestinationUpdate,
|
|
1245
|
+
() => DataFormatConversionConfiguration,
|
|
1246
|
+
() => DynamicPartitioningConfiguration,
|
|
1247
|
+
0,
|
|
1248
|
+
0,
|
|
1249
|
+
],
|
|
1250
|
+
];
|
|
1251
|
+
var FailureDescription = [3, n0, _FD, 0, [_Ty, _Det], [0, 0]];
|
|
1252
|
+
var HiveJsonSerDe = [3, n0, _HJSD, 0, [_TF], [64 | 0]];
|
|
1253
|
+
var HttpEndpointBufferingHints = [3, n0, _HEBH, 0, [_SIMB, _IIS], [1, 1]];
|
|
1254
|
+
var HttpEndpointCommonAttribute = [
|
|
1255
|
+
3,
|
|
1256
|
+
n0,
|
|
1257
|
+
_HECA,
|
|
1258
|
+
0,
|
|
1259
|
+
[_AN, _AV],
|
|
1260
|
+
[
|
|
1261
|
+
[() => HttpEndpointAttributeName, 0],
|
|
1262
|
+
[() => HttpEndpointAttributeValue, 0],
|
|
1263
|
+
],
|
|
1264
|
+
];
|
|
1265
|
+
var HttpEndpointConfiguration = [
|
|
1266
|
+
3,
|
|
1267
|
+
n0,
|
|
1268
|
+
_HEC,
|
|
1269
|
+
0,
|
|
1270
|
+
[_Ur, _N, _AK],
|
|
1271
|
+
[[() => HttpEndpointUrl, 0], 0, [() => HttpEndpointAccessKey, 0]],
|
|
1272
|
+
];
|
|
1273
|
+
var HttpEndpointDescription = [
|
|
1274
|
+
3,
|
|
1275
|
+
n0,
|
|
1276
|
+
_HED,
|
|
1277
|
+
0,
|
|
1278
|
+
[_Ur, _N],
|
|
1279
|
+
[[() => HttpEndpointUrl, 0], 0],
|
|
1280
|
+
];
|
|
1281
|
+
var HttpEndpointDestinationConfiguration = [
|
|
1282
|
+
3,
|
|
1283
|
+
n0,
|
|
1284
|
+
_HEDC,
|
|
1285
|
+
0,
|
|
1286
|
+
[_ECn, _BH, _CWLO, _RC, _PC, _RARN, _RO, _SBM, _SC, _SMC],
|
|
1287
|
+
[
|
|
1288
|
+
[() => HttpEndpointConfiguration, 0],
|
|
1289
|
+
() => HttpEndpointBufferingHints,
|
|
1290
|
+
() => CloudWatchLoggingOptions,
|
|
1291
|
+
[() => HttpEndpointRequestConfiguration, 0],
|
|
1292
|
+
() => ProcessingConfiguration,
|
|
1293
|
+
0,
|
|
1294
|
+
() => HttpEndpointRetryOptions,
|
|
1295
|
+
0,
|
|
1296
|
+
() => S3DestinationConfiguration,
|
|
1297
|
+
() => SecretsManagerConfiguration,
|
|
1298
|
+
],
|
|
1299
|
+
];
|
|
1300
|
+
var HttpEndpointDestinationDescription = [
|
|
1301
|
+
3,
|
|
1302
|
+
n0,
|
|
1303
|
+
_HEDD,
|
|
1304
|
+
0,
|
|
1305
|
+
[_ECn, _BH, _CWLO, _RC, _PC, _RARN, _RO, _SBM, _SDD, _SMC],
|
|
1306
|
+
[
|
|
1307
|
+
[() => HttpEndpointDescription, 0],
|
|
1308
|
+
() => HttpEndpointBufferingHints,
|
|
1309
|
+
() => CloudWatchLoggingOptions,
|
|
1310
|
+
[() => HttpEndpointRequestConfiguration, 0],
|
|
1311
|
+
() => ProcessingConfiguration,
|
|
1312
|
+
0,
|
|
1313
|
+
() => HttpEndpointRetryOptions,
|
|
1314
|
+
0,
|
|
1315
|
+
() => S3DestinationDescription,
|
|
1316
|
+
() => SecretsManagerConfiguration,
|
|
1317
|
+
],
|
|
1318
|
+
];
|
|
1319
|
+
var HttpEndpointDestinationUpdate = [
|
|
1320
|
+
3,
|
|
1321
|
+
n0,
|
|
1322
|
+
_HEDU,
|
|
1323
|
+
0,
|
|
1324
|
+
[_ECn, _BH, _CWLO, _RC, _PC, _RARN, _RO, _SBM, _SUp, _SMC],
|
|
1325
|
+
[
|
|
1326
|
+
[() => HttpEndpointConfiguration, 0],
|
|
1327
|
+
() => HttpEndpointBufferingHints,
|
|
1328
|
+
() => CloudWatchLoggingOptions,
|
|
1329
|
+
[() => HttpEndpointRequestConfiguration, 0],
|
|
1330
|
+
() => ProcessingConfiguration,
|
|
1331
|
+
0,
|
|
1332
|
+
() => HttpEndpointRetryOptions,
|
|
1333
|
+
0,
|
|
1334
|
+
() => S3DestinationUpdate,
|
|
1335
|
+
() => SecretsManagerConfiguration,
|
|
1336
|
+
],
|
|
1337
|
+
];
|
|
1338
|
+
var HttpEndpointRequestConfiguration = [
|
|
1339
|
+
3,
|
|
1340
|
+
n0,
|
|
1341
|
+
_HERC,
|
|
1342
|
+
0,
|
|
1343
|
+
[_CEo, _CA],
|
|
1344
|
+
[0, [() => HttpEndpointCommonAttributesList, 0]],
|
|
1345
|
+
];
|
|
1346
|
+
var HttpEndpointRetryOptions = [3, n0, _HERO, 0, [_DIS], [1]];
|
|
1347
|
+
var IcebergDestinationConfiguration = [
|
|
1348
|
+
3,
|
|
1349
|
+
n0,
|
|
1350
|
+
_IDC,
|
|
1351
|
+
0,
|
|
1352
|
+
[_DTCL, _SEC, _TCC, _BH, _CWLO, _PC, _SBM, _RO, _RARN, _AO, _CC, _SC],
|
|
1353
|
+
[
|
|
1354
|
+
() => DestinationTableConfigurationList,
|
|
1355
|
+
() => SchemaEvolutionConfiguration,
|
|
1356
|
+
() => TableCreationConfiguration,
|
|
1357
|
+
() => BufferingHints,
|
|
1358
|
+
() => CloudWatchLoggingOptions,
|
|
1359
|
+
() => ProcessingConfiguration,
|
|
1360
|
+
0,
|
|
1361
|
+
() => RetryOptions,
|
|
1362
|
+
0,
|
|
1363
|
+
2,
|
|
1364
|
+
() => CatalogConfiguration,
|
|
1365
|
+
() => S3DestinationConfiguration,
|
|
1366
|
+
],
|
|
1367
|
+
];
|
|
1368
|
+
var IcebergDestinationDescription = [
|
|
1369
|
+
3,
|
|
1370
|
+
n0,
|
|
1371
|
+
_IDD,
|
|
1372
|
+
0,
|
|
1373
|
+
[_DTCL, _SEC, _TCC, _BH, _CWLO, _PC, _SBM, _RO, _RARN, _AO, _CC, _SDD],
|
|
1374
|
+
[
|
|
1375
|
+
() => DestinationTableConfigurationList,
|
|
1376
|
+
() => SchemaEvolutionConfiguration,
|
|
1377
|
+
() => TableCreationConfiguration,
|
|
1378
|
+
() => BufferingHints,
|
|
1379
|
+
() => CloudWatchLoggingOptions,
|
|
1380
|
+
() => ProcessingConfiguration,
|
|
1381
|
+
0,
|
|
1382
|
+
() => RetryOptions,
|
|
1383
|
+
0,
|
|
1384
|
+
2,
|
|
1385
|
+
() => CatalogConfiguration,
|
|
1386
|
+
() => S3DestinationDescription,
|
|
1387
|
+
],
|
|
1388
|
+
];
|
|
1389
|
+
var IcebergDestinationUpdate = [
|
|
1390
|
+
3,
|
|
1391
|
+
n0,
|
|
1392
|
+
_IDU,
|
|
1393
|
+
0,
|
|
1394
|
+
[_DTCL, _SEC, _TCC, _BH, _CWLO, _PC, _SBM, _RO, _RARN, _AO, _CC, _SC],
|
|
1395
|
+
[
|
|
1396
|
+
() => DestinationTableConfigurationList,
|
|
1397
|
+
() => SchemaEvolutionConfiguration,
|
|
1398
|
+
() => TableCreationConfiguration,
|
|
1399
|
+
() => BufferingHints,
|
|
1400
|
+
() => CloudWatchLoggingOptions,
|
|
1401
|
+
() => ProcessingConfiguration,
|
|
1402
|
+
0,
|
|
1403
|
+
() => RetryOptions,
|
|
1404
|
+
0,
|
|
1405
|
+
2,
|
|
1406
|
+
() => CatalogConfiguration,
|
|
1407
|
+
() => S3DestinationConfiguration,
|
|
1408
|
+
],
|
|
1409
|
+
];
|
|
1410
|
+
var InputFormatConfiguration = [3, n0, _IFC, 0, [_Des], [() => Deserializer]];
|
|
1411
|
+
var InvalidArgumentException = [
|
|
1412
|
+
-3,
|
|
1413
|
+
n0,
|
|
1414
|
+
_IAE,
|
|
1415
|
+
{
|
|
1416
|
+
[_e]: _c,
|
|
1417
|
+
},
|
|
1418
|
+
[_m],
|
|
1419
|
+
[0],
|
|
1420
|
+
];
|
|
1421
|
+
schema.TypeRegistry.for(n0).registerError(InvalidArgumentException, InvalidArgumentException$1);
|
|
1422
|
+
var InvalidKMSResourceException = [
|
|
1423
|
+
-3,
|
|
1424
|
+
n0,
|
|
1425
|
+
_IKMSRE,
|
|
1426
|
+
{
|
|
1427
|
+
[_e]: _c,
|
|
1428
|
+
},
|
|
1429
|
+
[_co, _m],
|
|
1430
|
+
[0, 0],
|
|
1431
|
+
];
|
|
1432
|
+
schema.TypeRegistry.for(n0).registerError(InvalidKMSResourceException, InvalidKMSResourceException$1);
|
|
1433
|
+
var InvalidSourceException = [
|
|
1434
|
+
-3,
|
|
1435
|
+
n0,
|
|
1436
|
+
_ISE,
|
|
1437
|
+
{
|
|
1438
|
+
[_e]: _c,
|
|
1439
|
+
},
|
|
1440
|
+
[_co, _m],
|
|
1441
|
+
[0, 0],
|
|
1442
|
+
];
|
|
1443
|
+
schema.TypeRegistry.for(n0).registerError(InvalidSourceException, InvalidSourceException$1);
|
|
1444
|
+
var KinesisStreamSourceConfiguration = [3, n0, _KSSC, 0, [_KSARN, _RARN], [0, 0]];
|
|
1445
|
+
var KinesisStreamSourceDescription = [3, n0, _KSSD, 0, [_KSARN, _RARN, _DSTe], [0, 0, 4]];
|
|
1446
|
+
var KMSEncryptionConfig = [3, n0, _KMSEC, 0, [_AWSKMSKARN], [0]];
|
|
1447
|
+
var LimitExceededException = [
|
|
1448
|
+
-3,
|
|
1449
|
+
n0,
|
|
1450
|
+
_LEE,
|
|
1451
|
+
{
|
|
1452
|
+
[_e]: _c,
|
|
1453
|
+
},
|
|
1454
|
+
[_m],
|
|
1455
|
+
[0],
|
|
1456
|
+
];
|
|
1457
|
+
schema.TypeRegistry.for(n0).registerError(LimitExceededException, LimitExceededException$1);
|
|
1458
|
+
var ListDeliveryStreamsInput = [3, n0, _LDSI, 0, [_L, _DST, _ESDSN], [1, 0, 0]];
|
|
1459
|
+
var ListDeliveryStreamsOutput = [3, n0, _LDSO, 0, [_DSNe, _HMDS], [64 | 0, 2]];
|
|
1460
|
+
var ListTagsForDeliveryStreamInput = [3, n0, _LTFDSI, 0, [_DSN, _ESTK, _L], [0, 0, 1]];
|
|
1461
|
+
var ListTagsForDeliveryStreamOutput = [
|
|
1462
|
+
3,
|
|
1463
|
+
n0,
|
|
1464
|
+
_LTFDSO,
|
|
1465
|
+
0,
|
|
1466
|
+
[_T, _HMT],
|
|
1467
|
+
[() => ListTagsForDeliveryStreamOutputTagList, 2],
|
|
1468
|
+
];
|
|
1469
|
+
var MSKSourceConfiguration = [
|
|
1470
|
+
3,
|
|
1471
|
+
n0,
|
|
1472
|
+
_MSKSC,
|
|
1473
|
+
0,
|
|
1474
|
+
[_MSKCARN, _TNo, _AC, _RFT],
|
|
1475
|
+
[0, 0, () => AuthenticationConfiguration, 4],
|
|
1476
|
+
];
|
|
1477
|
+
var MSKSourceDescription = [
|
|
1478
|
+
3,
|
|
1479
|
+
n0,
|
|
1480
|
+
_MSKSD,
|
|
1481
|
+
0,
|
|
1482
|
+
[_MSKCARN, _TNo, _AC, _DSTe, _RFT],
|
|
1483
|
+
[0, 0, () => AuthenticationConfiguration, 4, 4],
|
|
1484
|
+
];
|
|
1485
|
+
var OpenXJsonSerDe = [3, n0, _OXJSD, 0, [_CDIJKTU, _CI, _CTJKM], [2, 2, 128 | 0]];
|
|
1486
|
+
var OrcSerDe = [
|
|
1487
|
+
3,
|
|
1488
|
+
n0,
|
|
1489
|
+
_OSD,
|
|
1490
|
+
0,
|
|
1491
|
+
[_SSB, _BSB, _RIS, _EP, _PT, _Com, _BFC, _BFFPP, _DKT, _FV],
|
|
1492
|
+
[1, 1, 1, 2, 1, 0, 64 | 0, 1, 1, 0],
|
|
1493
|
+
];
|
|
1494
|
+
var OutputFormatConfiguration = [3, n0, _OFC, 0, [_Se], [() => Serializer]];
|
|
1495
|
+
var ParquetSerDe = [
|
|
1496
|
+
3,
|
|
1497
|
+
n0,
|
|
1498
|
+
_PSD,
|
|
1499
|
+
0,
|
|
1500
|
+
[_BSB, _PSB, _Com, _EDCn, _MPB, _WV],
|
|
1501
|
+
[1, 1, 0, 2, 1, 0],
|
|
1502
|
+
];
|
|
1503
|
+
var PartitionField = [3, n0, _PF, 0, [_SN], [0]];
|
|
1504
|
+
var PartitionSpec = [3, n0, _PS, 0, [_Ide], [() => PartitionFields]];
|
|
1505
|
+
var ProcessingConfiguration = [3, n0, _PC, 0, [_E, _Pro], [2, () => ProcessorList]];
|
|
1506
|
+
var Processor = [3, n0, _Proc, 0, [_Ty, _Pa], [0, () => ProcessorParameterList]];
|
|
1507
|
+
var ProcessorParameter = [3, n0, _PP, 0, [_PN, _PV], [0, 0]];
|
|
1508
|
+
var PutRecordBatchInput = [
|
|
1509
|
+
3,
|
|
1510
|
+
n0,
|
|
1511
|
+
_PRBI,
|
|
1512
|
+
0,
|
|
1513
|
+
[_DSN, _R],
|
|
1514
|
+
[0, () => PutRecordBatchRequestEntryList],
|
|
1515
|
+
];
|
|
1516
|
+
var PutRecordBatchOutput = [
|
|
1517
|
+
3,
|
|
1518
|
+
n0,
|
|
1519
|
+
_PRBO,
|
|
1520
|
+
0,
|
|
1521
|
+
[_FPC, _Enc, _RR],
|
|
1522
|
+
[1, 2, () => PutRecordBatchResponseEntryList],
|
|
1523
|
+
];
|
|
1524
|
+
var PutRecordBatchResponseEntry = [3, n0, _PRBRE, 0, [_RI, _ECr, _EM], [0, 0, 0]];
|
|
1525
|
+
var PutRecordInput = [3, n0, _PRI, 0, [_DSN, _Re], [0, () => _Record]];
|
|
1526
|
+
var PutRecordOutput = [3, n0, _PRO, 0, [_RI, _Enc], [0, 2]];
|
|
1527
|
+
var _Record = [3, n0, _Re, 0, [_Da], [21]];
|
|
1528
|
+
var RedshiftDestinationConfiguration = [
|
|
1529
|
+
3,
|
|
1530
|
+
n0,
|
|
1531
|
+
_RDC,
|
|
1532
|
+
0,
|
|
1533
|
+
[_RARN, _CJDBCURL, _CCo, _U, _P, _RO, _SC, _PC, _SBM, _SBC, _CWLO, _SMC],
|
|
1534
|
+
[
|
|
1535
|
+
0,
|
|
1536
|
+
0,
|
|
1537
|
+
() => CopyCommand,
|
|
1538
|
+
[() => Username, 0],
|
|
1539
|
+
[() => Password, 0],
|
|
1540
|
+
() => RedshiftRetryOptions,
|
|
1541
|
+
() => S3DestinationConfiguration,
|
|
1542
|
+
() => ProcessingConfiguration,
|
|
1543
|
+
0,
|
|
1544
|
+
() => S3DestinationConfiguration,
|
|
1545
|
+
() => CloudWatchLoggingOptions,
|
|
1546
|
+
() => SecretsManagerConfiguration,
|
|
1547
|
+
],
|
|
1548
|
+
];
|
|
1549
|
+
var RedshiftDestinationDescription = [
|
|
1550
|
+
3,
|
|
1551
|
+
n0,
|
|
1552
|
+
_RDD,
|
|
1553
|
+
0,
|
|
1554
|
+
[_RARN, _CJDBCURL, _CCo, _U, _RO, _SDD, _PC, _SBM, _SBD, _CWLO, _SMC],
|
|
1555
|
+
[
|
|
1556
|
+
0,
|
|
1557
|
+
0,
|
|
1558
|
+
() => CopyCommand,
|
|
1559
|
+
[() => Username, 0],
|
|
1560
|
+
() => RedshiftRetryOptions,
|
|
1561
|
+
() => S3DestinationDescription,
|
|
1562
|
+
() => ProcessingConfiguration,
|
|
1563
|
+
0,
|
|
1564
|
+
() => S3DestinationDescription,
|
|
1565
|
+
() => CloudWatchLoggingOptions,
|
|
1566
|
+
() => SecretsManagerConfiguration,
|
|
1567
|
+
],
|
|
1568
|
+
];
|
|
1569
|
+
var RedshiftDestinationUpdate = [
|
|
1570
|
+
3,
|
|
1571
|
+
n0,
|
|
1572
|
+
_RDU,
|
|
1573
|
+
0,
|
|
1574
|
+
[_RARN, _CJDBCURL, _CCo, _U, _P, _RO, _SUp, _PC, _SBM, _SBU, _CWLO, _SMC],
|
|
1575
|
+
[
|
|
1576
|
+
0,
|
|
1577
|
+
0,
|
|
1578
|
+
() => CopyCommand,
|
|
1579
|
+
[() => Username, 0],
|
|
1580
|
+
[() => Password, 0],
|
|
1581
|
+
() => RedshiftRetryOptions,
|
|
1582
|
+
() => S3DestinationUpdate,
|
|
1583
|
+
() => ProcessingConfiguration,
|
|
1584
|
+
0,
|
|
1585
|
+
() => S3DestinationUpdate,
|
|
1586
|
+
() => CloudWatchLoggingOptions,
|
|
1587
|
+
() => SecretsManagerConfiguration,
|
|
1588
|
+
],
|
|
1589
|
+
];
|
|
1590
|
+
var RedshiftRetryOptions = [3, n0, _RRO, 0, [_DIS], [1]];
|
|
1591
|
+
var ResourceInUseException = [
|
|
1592
|
+
-3,
|
|
1593
|
+
n0,
|
|
1594
|
+
_RIUE,
|
|
1595
|
+
{
|
|
1596
|
+
[_e]: _c,
|
|
1597
|
+
},
|
|
1598
|
+
[_m],
|
|
1599
|
+
[0],
|
|
1600
|
+
];
|
|
1601
|
+
schema.TypeRegistry.for(n0).registerError(ResourceInUseException, ResourceInUseException$1);
|
|
1602
|
+
var ResourceNotFoundException = [
|
|
1603
|
+
-3,
|
|
1604
|
+
n0,
|
|
1605
|
+
_RNFE,
|
|
1606
|
+
{
|
|
1607
|
+
[_e]: _c,
|
|
1608
|
+
},
|
|
1609
|
+
[_m],
|
|
1610
|
+
[0],
|
|
1611
|
+
];
|
|
1612
|
+
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
|
|
1613
|
+
var RetryOptions = [3, n0, _RO, 0, [_DIS], [1]];
|
|
1614
|
+
var S3DestinationConfiguration = [
|
|
1615
|
+
3,
|
|
1616
|
+
n0,
|
|
1617
|
+
_SDC,
|
|
1618
|
+
0,
|
|
1619
|
+
[_RARN, _BARN, _Pr, _EOP, _BH, _CF, _EC, _CWLO],
|
|
1620
|
+
[0, 0, 0, 0, () => BufferingHints, 0, () => EncryptionConfiguration, () => CloudWatchLoggingOptions],
|
|
1621
|
+
];
|
|
1622
|
+
var S3DestinationDescription = [
|
|
1623
|
+
3,
|
|
1624
|
+
n0,
|
|
1625
|
+
_SDD,
|
|
1626
|
+
0,
|
|
1627
|
+
[_RARN, _BARN, _Pr, _EOP, _BH, _CF, _EC, _CWLO],
|
|
1628
|
+
[0, 0, 0, 0, () => BufferingHints, 0, () => EncryptionConfiguration, () => CloudWatchLoggingOptions],
|
|
1629
|
+
];
|
|
1630
|
+
var S3DestinationUpdate = [
|
|
1631
|
+
3,
|
|
1632
|
+
n0,
|
|
1633
|
+
_SDU,
|
|
1634
|
+
0,
|
|
1635
|
+
[_RARN, _BARN, _Pr, _EOP, _BH, _CF, _EC, _CWLO],
|
|
1636
|
+
[0, 0, 0, 0, () => BufferingHints, 0, () => EncryptionConfiguration, () => CloudWatchLoggingOptions],
|
|
1637
|
+
];
|
|
1638
|
+
var SchemaConfiguration = [
|
|
1639
|
+
3,
|
|
1640
|
+
n0,
|
|
1641
|
+
_SCc,
|
|
1642
|
+
0,
|
|
1643
|
+
[_RARN, _CIa, _DN, _TNa, _Reg, _VI],
|
|
1644
|
+
[0, 0, 0, 0, 0, 0],
|
|
1645
|
+
];
|
|
1646
|
+
var SchemaEvolutionConfiguration = [3, n0, _SEC, 0, [_E], [2]];
|
|
1647
|
+
var SecretsManagerConfiguration = [3, n0, _SMC, 0, [_SARN, _RARN, _E], [0, 0, 2]];
|
|
1648
|
+
var Serializer = [3, n0, _Se, 0, [_PSD, _OSD], [() => ParquetSerDe, () => OrcSerDe]];
|
|
1649
|
+
var ServiceUnavailableException = [
|
|
1650
|
+
-3,
|
|
1651
|
+
n0,
|
|
1652
|
+
_SUE,
|
|
1653
|
+
{
|
|
1654
|
+
[_e]: _s,
|
|
1655
|
+
[_hE]: 503,
|
|
1656
|
+
},
|
|
1657
|
+
[_m],
|
|
1658
|
+
[0],
|
|
1659
|
+
];
|
|
1660
|
+
schema.TypeRegistry.for(n0).registerError(ServiceUnavailableException, ServiceUnavailableException$1);
|
|
1661
|
+
var SnowflakeBufferingHints = [3, n0, _SBH, 0, [_SIMB, _IIS], [1, 1]];
|
|
1662
|
+
var SnowflakeDestinationConfiguration = [
|
|
1663
|
+
3,
|
|
1664
|
+
n0,
|
|
1665
|
+
_SDCn,
|
|
1666
|
+
0,
|
|
1667
|
+
[_AU, _PK, _KP, _Us, _Dat, _Sc, _Ta, _SRC, _DLO, _MDCN, _CCN, _SVC, _CWLO, _PC, _RARN, _RO, _SBM, _SC, _SMC, _BH],
|
|
1668
|
+
[
|
|
1669
|
+
[() => SnowflakeAccountUrl, 0],
|
|
1670
|
+
[() => SnowflakePrivateKey, 0],
|
|
1671
|
+
[() => SnowflakeKeyPassphrase, 0],
|
|
1672
|
+
[() => SnowflakeUser, 0],
|
|
1673
|
+
[() => SnowflakeDatabase, 0],
|
|
1674
|
+
[() => SnowflakeSchema, 0],
|
|
1675
|
+
[() => SnowflakeTable, 0],
|
|
1676
|
+
[() => SnowflakeRoleConfiguration, 0],
|
|
1677
|
+
0,
|
|
1678
|
+
[() => SnowflakeMetaDataColumnName, 0],
|
|
1679
|
+
[() => SnowflakeContentColumnName, 0],
|
|
1680
|
+
[() => SnowflakeVpcConfiguration, 0],
|
|
1681
|
+
() => CloudWatchLoggingOptions,
|
|
1682
|
+
() => ProcessingConfiguration,
|
|
1683
|
+
0,
|
|
1684
|
+
() => SnowflakeRetryOptions,
|
|
1685
|
+
0,
|
|
1686
|
+
() => S3DestinationConfiguration,
|
|
1687
|
+
() => SecretsManagerConfiguration,
|
|
1688
|
+
() => SnowflakeBufferingHints,
|
|
1689
|
+
],
|
|
1690
|
+
];
|
|
1691
|
+
var SnowflakeDestinationDescription = [
|
|
1692
|
+
3,
|
|
1693
|
+
n0,
|
|
1694
|
+
_SDDn,
|
|
1695
|
+
0,
|
|
1696
|
+
[_AU, _Us, _Dat, _Sc, _Ta, _SRC, _DLO, _MDCN, _CCN, _SVC, _CWLO, _PC, _RARN, _RO, _SBM, _SDD, _SMC, _BH],
|
|
1697
|
+
[
|
|
1698
|
+
[() => SnowflakeAccountUrl, 0],
|
|
1699
|
+
[() => SnowflakeUser, 0],
|
|
1700
|
+
[() => SnowflakeDatabase, 0],
|
|
1701
|
+
[() => SnowflakeSchema, 0],
|
|
1702
|
+
[() => SnowflakeTable, 0],
|
|
1703
|
+
[() => SnowflakeRoleConfiguration, 0],
|
|
1704
|
+
0,
|
|
1705
|
+
[() => SnowflakeMetaDataColumnName, 0],
|
|
1706
|
+
[() => SnowflakeContentColumnName, 0],
|
|
1707
|
+
[() => SnowflakeVpcConfiguration, 0],
|
|
1708
|
+
() => CloudWatchLoggingOptions,
|
|
1709
|
+
() => ProcessingConfiguration,
|
|
1710
|
+
0,
|
|
1711
|
+
() => SnowflakeRetryOptions,
|
|
1712
|
+
0,
|
|
1713
|
+
() => S3DestinationDescription,
|
|
1714
|
+
() => SecretsManagerConfiguration,
|
|
1715
|
+
() => SnowflakeBufferingHints,
|
|
1716
|
+
],
|
|
1717
|
+
];
|
|
1718
|
+
var SnowflakeDestinationUpdate = [
|
|
1719
|
+
3,
|
|
1720
|
+
n0,
|
|
1721
|
+
_SDUn,
|
|
1722
|
+
0,
|
|
1723
|
+
[_AU, _PK, _KP, _Us, _Dat, _Sc, _Ta, _SRC, _DLO, _MDCN, _CCN, _CWLO, _PC, _RARN, _RO, _SBM, _SUp, _SMC, _BH],
|
|
1724
|
+
[
|
|
1725
|
+
[() => SnowflakeAccountUrl, 0],
|
|
1726
|
+
[() => SnowflakePrivateKey, 0],
|
|
1727
|
+
[() => SnowflakeKeyPassphrase, 0],
|
|
1728
|
+
[() => SnowflakeUser, 0],
|
|
1729
|
+
[() => SnowflakeDatabase, 0],
|
|
1730
|
+
[() => SnowflakeSchema, 0],
|
|
1731
|
+
[() => SnowflakeTable, 0],
|
|
1732
|
+
[() => SnowflakeRoleConfiguration, 0],
|
|
1733
|
+
0,
|
|
1734
|
+
[() => SnowflakeMetaDataColumnName, 0],
|
|
1735
|
+
[() => SnowflakeContentColumnName, 0],
|
|
1736
|
+
() => CloudWatchLoggingOptions,
|
|
1737
|
+
() => ProcessingConfiguration,
|
|
1738
|
+
0,
|
|
1739
|
+
() => SnowflakeRetryOptions,
|
|
1740
|
+
0,
|
|
1741
|
+
() => S3DestinationUpdate,
|
|
1742
|
+
() => SecretsManagerConfiguration,
|
|
1743
|
+
() => SnowflakeBufferingHints,
|
|
1744
|
+
],
|
|
1745
|
+
];
|
|
1746
|
+
var SnowflakeRetryOptions = [3, n0, _SRO, 0, [_DIS], [1]];
|
|
1747
|
+
var SnowflakeRoleConfiguration = [
|
|
1748
|
+
3,
|
|
1749
|
+
n0,
|
|
1750
|
+
_SRC,
|
|
1751
|
+
0,
|
|
1752
|
+
[_E, _SR],
|
|
1753
|
+
[2, [() => SnowflakeRole, 0]],
|
|
1754
|
+
];
|
|
1755
|
+
var SnowflakeVpcConfiguration = [
|
|
1756
|
+
3,
|
|
1757
|
+
n0,
|
|
1758
|
+
_SVC,
|
|
1759
|
+
0,
|
|
1760
|
+
[_PLVI],
|
|
1761
|
+
[[() => SnowflakePrivateLinkVpceId, 0]],
|
|
1762
|
+
];
|
|
1763
|
+
var SourceDescription = [
|
|
1764
|
+
3,
|
|
1765
|
+
n0,
|
|
1766
|
+
_SDo,
|
|
1767
|
+
0,
|
|
1768
|
+
[_DPSD, _KSSD, _MSKSD, _DSD],
|
|
1769
|
+
[
|
|
1770
|
+
() => DirectPutSourceDescription,
|
|
1771
|
+
() => KinesisStreamSourceDescription,
|
|
1772
|
+
() => MSKSourceDescription,
|
|
1773
|
+
() => DatabaseSourceDescription,
|
|
1774
|
+
],
|
|
1775
|
+
];
|
|
1776
|
+
var SplunkBufferingHints = [3, n0, _SBHp, 0, [_IIS, _SIMB], [1, 1]];
|
|
1777
|
+
var SplunkDestinationConfiguration = [
|
|
1778
|
+
3,
|
|
1779
|
+
n0,
|
|
1780
|
+
_SDCp,
|
|
1781
|
+
0,
|
|
1782
|
+
[_HECE, _HECET, _HECT, _HECATIS, _RO, _SBM, _SC, _PC, _CWLO, _BH, _SMC],
|
|
1783
|
+
[
|
|
1784
|
+
0,
|
|
1785
|
+
0,
|
|
1786
|
+
0,
|
|
1787
|
+
1,
|
|
1788
|
+
() => SplunkRetryOptions,
|
|
1789
|
+
0,
|
|
1790
|
+
() => S3DestinationConfiguration,
|
|
1791
|
+
() => ProcessingConfiguration,
|
|
1792
|
+
() => CloudWatchLoggingOptions,
|
|
1793
|
+
() => SplunkBufferingHints,
|
|
1794
|
+
() => SecretsManagerConfiguration,
|
|
1795
|
+
],
|
|
1796
|
+
];
|
|
1797
|
+
var SplunkDestinationDescription = [
|
|
1798
|
+
3,
|
|
1799
|
+
n0,
|
|
1800
|
+
_SDDp,
|
|
1801
|
+
0,
|
|
1802
|
+
[_HECE, _HECET, _HECT, _HECATIS, _RO, _SBM, _SDD, _PC, _CWLO, _BH, _SMC],
|
|
1803
|
+
[
|
|
1804
|
+
0,
|
|
1805
|
+
0,
|
|
1806
|
+
0,
|
|
1807
|
+
1,
|
|
1808
|
+
() => SplunkRetryOptions,
|
|
1809
|
+
0,
|
|
1810
|
+
() => S3DestinationDescription,
|
|
1811
|
+
() => ProcessingConfiguration,
|
|
1812
|
+
() => CloudWatchLoggingOptions,
|
|
1813
|
+
() => SplunkBufferingHints,
|
|
1814
|
+
() => SecretsManagerConfiguration,
|
|
1815
|
+
],
|
|
1816
|
+
];
|
|
1817
|
+
var SplunkDestinationUpdate = [
|
|
1818
|
+
3,
|
|
1819
|
+
n0,
|
|
1820
|
+
_SDUp,
|
|
1821
|
+
0,
|
|
1822
|
+
[_HECE, _HECET, _HECT, _HECATIS, _RO, _SBM, _SUp, _PC, _CWLO, _BH, _SMC],
|
|
1823
|
+
[
|
|
1824
|
+
0,
|
|
1825
|
+
0,
|
|
1826
|
+
0,
|
|
1827
|
+
1,
|
|
1828
|
+
() => SplunkRetryOptions,
|
|
1829
|
+
0,
|
|
1830
|
+
() => S3DestinationUpdate,
|
|
1831
|
+
() => ProcessingConfiguration,
|
|
1832
|
+
() => CloudWatchLoggingOptions,
|
|
1833
|
+
() => SplunkBufferingHints,
|
|
1834
|
+
() => SecretsManagerConfiguration,
|
|
1835
|
+
],
|
|
1836
|
+
];
|
|
1837
|
+
var SplunkRetryOptions = [3, n0, _SROp, 0, [_DIS], [1]];
|
|
1838
|
+
var StartDeliveryStreamEncryptionInput = [
|
|
1839
|
+
3,
|
|
1840
|
+
n0,
|
|
1841
|
+
_SDSEI,
|
|
1842
|
+
0,
|
|
1843
|
+
[_DSN, _DSECI],
|
|
1844
|
+
[0, () => DeliveryStreamEncryptionConfigurationInput],
|
|
1845
|
+
];
|
|
1846
|
+
var StartDeliveryStreamEncryptionOutput = [3, n0, _SDSEO, 0, [], []];
|
|
1847
|
+
var StopDeliveryStreamEncryptionInput = [3, n0, _SDSEIt, 0, [_DSN], [0]];
|
|
1848
|
+
var StopDeliveryStreamEncryptionOutput = [3, n0, _SDSEOt, 0, [], []];
|
|
1849
|
+
var TableCreationConfiguration = [3, n0, _TCC, 0, [_E], [2]];
|
|
1850
|
+
var Tag = [3, n0, _Tag, 0, [_K, _V], [0, 0]];
|
|
1851
|
+
var TagDeliveryStreamInput = [
|
|
1852
|
+
3,
|
|
1853
|
+
n0,
|
|
1854
|
+
_TDSI,
|
|
1855
|
+
0,
|
|
1856
|
+
[_DSN, _T],
|
|
1857
|
+
[0, () => TagDeliveryStreamInputTagList],
|
|
1858
|
+
];
|
|
1859
|
+
var TagDeliveryStreamOutput = [3, n0, _TDSO, 0, [], []];
|
|
1860
|
+
var UntagDeliveryStreamInput = [3, n0, _UDSI, 0, [_DSN, _TK], [0, 64 | 0]];
|
|
1861
|
+
var UntagDeliveryStreamOutput = [3, n0, _UDSO, 0, [], []];
|
|
1862
|
+
var UpdateDestinationInput = [
|
|
1863
|
+
3,
|
|
1864
|
+
n0,
|
|
1865
|
+
_UDI,
|
|
1866
|
+
0,
|
|
1867
|
+
[_DSN, _CDSVI, _DI, _SDU, _ESDU, _RDU, _EDU, _ADU, _SDUp, _HEDU, _AOSSDU, _SDUn, _IDU],
|
|
1868
|
+
[
|
|
1869
|
+
0,
|
|
1870
|
+
0,
|
|
1871
|
+
0,
|
|
1872
|
+
() => S3DestinationUpdate,
|
|
1873
|
+
() => ExtendedS3DestinationUpdate,
|
|
1874
|
+
[() => RedshiftDestinationUpdate, 0],
|
|
1875
|
+
() => ElasticsearchDestinationUpdate,
|
|
1876
|
+
() => AmazonopensearchserviceDestinationUpdate,
|
|
1877
|
+
() => SplunkDestinationUpdate,
|
|
1878
|
+
[() => HttpEndpointDestinationUpdate, 0],
|
|
1879
|
+
() => AmazonOpenSearchServerlessDestinationUpdate,
|
|
1880
|
+
[() => SnowflakeDestinationUpdate, 0],
|
|
1881
|
+
() => IcebergDestinationUpdate,
|
|
1882
|
+
],
|
|
1883
|
+
];
|
|
1884
|
+
var UpdateDestinationOutput = [3, n0, _UDO, 0, [], []];
|
|
1885
|
+
var VpcConfiguration = [3, n0, _VC, 0, [_SIu, _RARN, _SGI], [64 | 0, 0, 64 | 0]];
|
|
1886
|
+
var VpcConfigurationDescription = [
|
|
1887
|
+
3,
|
|
1888
|
+
n0,
|
|
1889
|
+
_VCD,
|
|
1890
|
+
0,
|
|
1891
|
+
[_SIu, _RARN, _SGI, _VIp],
|
|
1892
|
+
[64 | 0, 0, 64 | 0, 0],
|
|
1893
|
+
];
|
|
1894
|
+
var FirehoseServiceException = [-3, _sm, "FirehoseServiceException", 0, [], []];
|
|
1895
|
+
schema.TypeRegistry.for(_sm).registerError(FirehoseServiceException, FirehoseServiceException$1);
|
|
1896
|
+
var DatabaseSnapshotInfoList = [1, n0, _DSIL, 0, () => DatabaseSnapshotInfo];
|
|
1897
|
+
var DestinationDescriptionList = [1, n0, _DDL, 0, [() => DestinationDescription, 0]];
|
|
1898
|
+
var DestinationTableConfigurationList = [1, n0, _DTCL, 0, () => DestinationTableConfiguration];
|
|
1899
|
+
var HttpEndpointCommonAttributesList = [
|
|
1900
|
+
1,
|
|
1901
|
+
n0,
|
|
1902
|
+
_HECAL,
|
|
1903
|
+
0,
|
|
1904
|
+
[() => HttpEndpointCommonAttribute, 0],
|
|
1905
|
+
];
|
|
1906
|
+
var ListTagsForDeliveryStreamOutputTagList = [1, n0, _LTFDSOTL, 0, () => Tag];
|
|
1907
|
+
var PartitionFields = [1, n0, _PFa, 0, () => PartitionField];
|
|
1908
|
+
var ProcessorList = [1, n0, _PL, 0, () => Processor];
|
|
1909
|
+
var ProcessorParameterList = [1, n0, _PPL, 0, () => ProcessorParameter];
|
|
1910
|
+
var PutRecordBatchRequestEntryList = [1, n0, _PRBREL, 0, () => _Record];
|
|
1911
|
+
var PutRecordBatchResponseEntryList = [1, n0, _PRBRELu, 0, () => PutRecordBatchResponseEntry];
|
|
1912
|
+
var TagDeliveryStreamInputTagList = [1, n0, _TDSITL, 0, () => Tag];
|
|
1913
|
+
var CreateDeliveryStream = [
|
|
1914
|
+
9,
|
|
1915
|
+
n0,
|
|
1916
|
+
_CDS,
|
|
1917
|
+
0,
|
|
1918
|
+
() => CreateDeliveryStreamInput,
|
|
1919
|
+
() => CreateDeliveryStreamOutput,
|
|
1920
|
+
];
|
|
1921
|
+
var DeleteDeliveryStream = [
|
|
1922
|
+
9,
|
|
1923
|
+
n0,
|
|
1924
|
+
_DDS,
|
|
1925
|
+
0,
|
|
1926
|
+
() => DeleteDeliveryStreamInput,
|
|
1927
|
+
() => DeleteDeliveryStreamOutput,
|
|
1928
|
+
];
|
|
1929
|
+
var DescribeDeliveryStream = [
|
|
1930
|
+
9,
|
|
1931
|
+
n0,
|
|
1932
|
+
_DDSe,
|
|
1933
|
+
0,
|
|
1934
|
+
() => DescribeDeliveryStreamInput,
|
|
1935
|
+
() => DescribeDeliveryStreamOutput,
|
|
1936
|
+
];
|
|
1937
|
+
var ListDeliveryStreams = [
|
|
1938
|
+
9,
|
|
1939
|
+
n0,
|
|
1940
|
+
_LDS,
|
|
1941
|
+
0,
|
|
1942
|
+
() => ListDeliveryStreamsInput,
|
|
1943
|
+
() => ListDeliveryStreamsOutput,
|
|
1944
|
+
];
|
|
1945
|
+
var ListTagsForDeliveryStream = [
|
|
1946
|
+
9,
|
|
1947
|
+
n0,
|
|
1948
|
+
_LTFDS,
|
|
1949
|
+
0,
|
|
1950
|
+
() => ListTagsForDeliveryStreamInput,
|
|
1951
|
+
() => ListTagsForDeliveryStreamOutput,
|
|
1952
|
+
];
|
|
1953
|
+
var PutRecord = [9, n0, _PR, 0, () => PutRecordInput, () => PutRecordOutput];
|
|
1954
|
+
var PutRecordBatch = [
|
|
1955
|
+
9,
|
|
1956
|
+
n0,
|
|
1957
|
+
_PRB,
|
|
1958
|
+
0,
|
|
1959
|
+
() => PutRecordBatchInput,
|
|
1960
|
+
() => PutRecordBatchOutput,
|
|
1961
|
+
];
|
|
1962
|
+
var StartDeliveryStreamEncryption = [
|
|
1963
|
+
9,
|
|
1964
|
+
n0,
|
|
1965
|
+
_SDSE,
|
|
1966
|
+
0,
|
|
1967
|
+
() => StartDeliveryStreamEncryptionInput,
|
|
1968
|
+
() => StartDeliveryStreamEncryptionOutput,
|
|
1969
|
+
];
|
|
1970
|
+
var StopDeliveryStreamEncryption = [
|
|
1971
|
+
9,
|
|
1972
|
+
n0,
|
|
1973
|
+
_SDSEt,
|
|
1974
|
+
0,
|
|
1975
|
+
() => StopDeliveryStreamEncryptionInput,
|
|
1976
|
+
() => StopDeliveryStreamEncryptionOutput,
|
|
1977
|
+
];
|
|
1978
|
+
var TagDeliveryStream = [
|
|
1979
|
+
9,
|
|
1980
|
+
n0,
|
|
1981
|
+
_TDS,
|
|
1982
|
+
0,
|
|
1983
|
+
() => TagDeliveryStreamInput,
|
|
1984
|
+
() => TagDeliveryStreamOutput,
|
|
1985
|
+
];
|
|
1986
|
+
var UntagDeliveryStream = [
|
|
1987
|
+
9,
|
|
1988
|
+
n0,
|
|
1989
|
+
_UDS,
|
|
1990
|
+
0,
|
|
1991
|
+
() => UntagDeliveryStreamInput,
|
|
1992
|
+
() => UntagDeliveryStreamOutput,
|
|
1993
|
+
];
|
|
1994
|
+
var UpdateDestination = [
|
|
1995
|
+
9,
|
|
1996
|
+
n0,
|
|
1997
|
+
_UD,
|
|
1998
|
+
0,
|
|
1999
|
+
() => UpdateDestinationInput,
|
|
2000
|
+
() => UpdateDestinationOutput,
|
|
2001
|
+
];
|
|
1229
2002
|
|
|
1230
2003
|
class CreateDeliveryStreamCommand extends smithyClient.Command
|
|
1231
2004
|
.classBuilder()
|
|
1232
2005
|
.ep(commonParams)
|
|
1233
2006
|
.m(function (Command, cs, config, o) {
|
|
1234
|
-
return [
|
|
1235
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1236
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1237
|
-
];
|
|
2007
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1238
2008
|
})
|
|
1239
2009
|
.s("Firehose_20150804", "CreateDeliveryStream", {})
|
|
1240
2010
|
.n("FirehoseClient", "CreateDeliveryStreamCommand")
|
|
1241
|
-
.
|
|
1242
|
-
.ser(se_CreateDeliveryStreamCommand)
|
|
1243
|
-
.de(de_CreateDeliveryStreamCommand)
|
|
2011
|
+
.sc(CreateDeliveryStream)
|
|
1244
2012
|
.build() {
|
|
1245
2013
|
}
|
|
1246
2014
|
|
|
@@ -1248,16 +2016,11 @@ class DeleteDeliveryStreamCommand extends smithyClient.Command
|
|
|
1248
2016
|
.classBuilder()
|
|
1249
2017
|
.ep(commonParams)
|
|
1250
2018
|
.m(function (Command, cs, config, o) {
|
|
1251
|
-
return [
|
|
1252
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1253
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1254
|
-
];
|
|
2019
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1255
2020
|
})
|
|
1256
2021
|
.s("Firehose_20150804", "DeleteDeliveryStream", {})
|
|
1257
2022
|
.n("FirehoseClient", "DeleteDeliveryStreamCommand")
|
|
1258
|
-
.
|
|
1259
|
-
.ser(se_DeleteDeliveryStreamCommand)
|
|
1260
|
-
.de(de_DeleteDeliveryStreamCommand)
|
|
2023
|
+
.sc(DeleteDeliveryStream)
|
|
1261
2024
|
.build() {
|
|
1262
2025
|
}
|
|
1263
2026
|
|
|
@@ -1265,16 +2028,11 @@ class DescribeDeliveryStreamCommand extends smithyClient.Command
|
|
|
1265
2028
|
.classBuilder()
|
|
1266
2029
|
.ep(commonParams)
|
|
1267
2030
|
.m(function (Command, cs, config, o) {
|
|
1268
|
-
return [
|
|
1269
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1270
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1271
|
-
];
|
|
2031
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1272
2032
|
})
|
|
1273
2033
|
.s("Firehose_20150804", "DescribeDeliveryStream", {})
|
|
1274
2034
|
.n("FirehoseClient", "DescribeDeliveryStreamCommand")
|
|
1275
|
-
.
|
|
1276
|
-
.ser(se_DescribeDeliveryStreamCommand)
|
|
1277
|
-
.de(de_DescribeDeliveryStreamCommand)
|
|
2035
|
+
.sc(DescribeDeliveryStream)
|
|
1278
2036
|
.build() {
|
|
1279
2037
|
}
|
|
1280
2038
|
|
|
@@ -1282,16 +2040,11 @@ class ListDeliveryStreamsCommand extends smithyClient.Command
|
|
|
1282
2040
|
.classBuilder()
|
|
1283
2041
|
.ep(commonParams)
|
|
1284
2042
|
.m(function (Command, cs, config, o) {
|
|
1285
|
-
return [
|
|
1286
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1287
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1288
|
-
];
|
|
2043
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1289
2044
|
})
|
|
1290
2045
|
.s("Firehose_20150804", "ListDeliveryStreams", {})
|
|
1291
2046
|
.n("FirehoseClient", "ListDeliveryStreamsCommand")
|
|
1292
|
-
.
|
|
1293
|
-
.ser(se_ListDeliveryStreamsCommand)
|
|
1294
|
-
.de(de_ListDeliveryStreamsCommand)
|
|
2047
|
+
.sc(ListDeliveryStreams)
|
|
1295
2048
|
.build() {
|
|
1296
2049
|
}
|
|
1297
2050
|
|
|
@@ -1299,16 +2052,11 @@ class ListTagsForDeliveryStreamCommand extends smithyClient.Command
|
|
|
1299
2052
|
.classBuilder()
|
|
1300
2053
|
.ep(commonParams)
|
|
1301
2054
|
.m(function (Command, cs, config, o) {
|
|
1302
|
-
return [
|
|
1303
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1304
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1305
|
-
];
|
|
2055
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1306
2056
|
})
|
|
1307
2057
|
.s("Firehose_20150804", "ListTagsForDeliveryStream", {})
|
|
1308
2058
|
.n("FirehoseClient", "ListTagsForDeliveryStreamCommand")
|
|
1309
|
-
.
|
|
1310
|
-
.ser(se_ListTagsForDeliveryStreamCommand)
|
|
1311
|
-
.de(de_ListTagsForDeliveryStreamCommand)
|
|
2059
|
+
.sc(ListTagsForDeliveryStream)
|
|
1312
2060
|
.build() {
|
|
1313
2061
|
}
|
|
1314
2062
|
|
|
@@ -1316,16 +2064,11 @@ class PutRecordBatchCommand extends smithyClient.Command
|
|
|
1316
2064
|
.classBuilder()
|
|
1317
2065
|
.ep(commonParams)
|
|
1318
2066
|
.m(function (Command, cs, config, o) {
|
|
1319
|
-
return [
|
|
1320
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1321
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1322
|
-
];
|
|
2067
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1323
2068
|
})
|
|
1324
2069
|
.s("Firehose_20150804", "PutRecordBatch", {})
|
|
1325
2070
|
.n("FirehoseClient", "PutRecordBatchCommand")
|
|
1326
|
-
.
|
|
1327
|
-
.ser(se_PutRecordBatchCommand)
|
|
1328
|
-
.de(de_PutRecordBatchCommand)
|
|
2071
|
+
.sc(PutRecordBatch)
|
|
1329
2072
|
.build() {
|
|
1330
2073
|
}
|
|
1331
2074
|
|
|
@@ -1333,16 +2076,11 @@ class PutRecordCommand extends smithyClient.Command
|
|
|
1333
2076
|
.classBuilder()
|
|
1334
2077
|
.ep(commonParams)
|
|
1335
2078
|
.m(function (Command, cs, config, o) {
|
|
1336
|
-
return [
|
|
1337
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1338
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1339
|
-
];
|
|
2079
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1340
2080
|
})
|
|
1341
2081
|
.s("Firehose_20150804", "PutRecord", {})
|
|
1342
2082
|
.n("FirehoseClient", "PutRecordCommand")
|
|
1343
|
-
.
|
|
1344
|
-
.ser(se_PutRecordCommand)
|
|
1345
|
-
.de(de_PutRecordCommand)
|
|
2083
|
+
.sc(PutRecord)
|
|
1346
2084
|
.build() {
|
|
1347
2085
|
}
|
|
1348
2086
|
|
|
@@ -1350,16 +2088,11 @@ class StartDeliveryStreamEncryptionCommand extends smithyClient.Command
|
|
|
1350
2088
|
.classBuilder()
|
|
1351
2089
|
.ep(commonParams)
|
|
1352
2090
|
.m(function (Command, cs, config, o) {
|
|
1353
|
-
return [
|
|
1354
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1355
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1356
|
-
];
|
|
2091
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1357
2092
|
})
|
|
1358
2093
|
.s("Firehose_20150804", "StartDeliveryStreamEncryption", {})
|
|
1359
2094
|
.n("FirehoseClient", "StartDeliveryStreamEncryptionCommand")
|
|
1360
|
-
.
|
|
1361
|
-
.ser(se_StartDeliveryStreamEncryptionCommand)
|
|
1362
|
-
.de(de_StartDeliveryStreamEncryptionCommand)
|
|
2095
|
+
.sc(StartDeliveryStreamEncryption)
|
|
1363
2096
|
.build() {
|
|
1364
2097
|
}
|
|
1365
2098
|
|
|
@@ -1367,16 +2100,11 @@ class StopDeliveryStreamEncryptionCommand extends smithyClient.Command
|
|
|
1367
2100
|
.classBuilder()
|
|
1368
2101
|
.ep(commonParams)
|
|
1369
2102
|
.m(function (Command, cs, config, o) {
|
|
1370
|
-
return [
|
|
1371
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1372
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1373
|
-
];
|
|
2103
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1374
2104
|
})
|
|
1375
2105
|
.s("Firehose_20150804", "StopDeliveryStreamEncryption", {})
|
|
1376
2106
|
.n("FirehoseClient", "StopDeliveryStreamEncryptionCommand")
|
|
1377
|
-
.
|
|
1378
|
-
.ser(se_StopDeliveryStreamEncryptionCommand)
|
|
1379
|
-
.de(de_StopDeliveryStreamEncryptionCommand)
|
|
2107
|
+
.sc(StopDeliveryStreamEncryption)
|
|
1380
2108
|
.build() {
|
|
1381
2109
|
}
|
|
1382
2110
|
|
|
@@ -1384,16 +2112,11 @@ class TagDeliveryStreamCommand extends smithyClient.Command
|
|
|
1384
2112
|
.classBuilder()
|
|
1385
2113
|
.ep(commonParams)
|
|
1386
2114
|
.m(function (Command, cs, config, o) {
|
|
1387
|
-
return [
|
|
1388
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1389
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1390
|
-
];
|
|
2115
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1391
2116
|
})
|
|
1392
2117
|
.s("Firehose_20150804", "TagDeliveryStream", {})
|
|
1393
2118
|
.n("FirehoseClient", "TagDeliveryStreamCommand")
|
|
1394
|
-
.
|
|
1395
|
-
.ser(se_TagDeliveryStreamCommand)
|
|
1396
|
-
.de(de_TagDeliveryStreamCommand)
|
|
2119
|
+
.sc(TagDeliveryStream)
|
|
1397
2120
|
.build() {
|
|
1398
2121
|
}
|
|
1399
2122
|
|
|
@@ -1401,16 +2124,11 @@ class UntagDeliveryStreamCommand extends smithyClient.Command
|
|
|
1401
2124
|
.classBuilder()
|
|
1402
2125
|
.ep(commonParams)
|
|
1403
2126
|
.m(function (Command, cs, config, o) {
|
|
1404
|
-
return [
|
|
1405
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1406
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1407
|
-
];
|
|
2127
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1408
2128
|
})
|
|
1409
2129
|
.s("Firehose_20150804", "UntagDeliveryStream", {})
|
|
1410
2130
|
.n("FirehoseClient", "UntagDeliveryStreamCommand")
|
|
1411
|
-
.
|
|
1412
|
-
.ser(se_UntagDeliveryStreamCommand)
|
|
1413
|
-
.de(de_UntagDeliveryStreamCommand)
|
|
2131
|
+
.sc(UntagDeliveryStream)
|
|
1414
2132
|
.build() {
|
|
1415
2133
|
}
|
|
1416
2134
|
|
|
@@ -1418,16 +2136,11 @@ class UpdateDestinationCommand extends smithyClient.Command
|
|
|
1418
2136
|
.classBuilder()
|
|
1419
2137
|
.ep(commonParams)
|
|
1420
2138
|
.m(function (Command, cs, config, o) {
|
|
1421
|
-
return [
|
|
1422
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1423
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1424
|
-
];
|
|
2139
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1425
2140
|
})
|
|
1426
2141
|
.s("Firehose_20150804", "UpdateDestination", {})
|
|
1427
2142
|
.n("FirehoseClient", "UpdateDestinationCommand")
|
|
1428
|
-
.
|
|
1429
|
-
.ser(se_UpdateDestinationCommand)
|
|
1430
|
-
.de(de_UpdateDestinationCommand)
|
|
2143
|
+
.sc(UpdateDestination)
|
|
1431
2144
|
.build() {
|
|
1432
2145
|
}
|
|
1433
2146
|
|
|
@@ -1461,42 +2174,31 @@ exports.AmazonOpenSearchServerlessS3BackupMode = AmazonOpenSearchServerlessS3Bac
|
|
|
1461
2174
|
exports.AmazonopensearchserviceIndexRotationPeriod = AmazonopensearchserviceIndexRotationPeriod;
|
|
1462
2175
|
exports.AmazonopensearchserviceS3BackupMode = AmazonopensearchserviceS3BackupMode;
|
|
1463
2176
|
exports.CompressionFormat = CompressionFormat;
|
|
1464
|
-
exports.ConcurrentModificationException = ConcurrentModificationException;
|
|
2177
|
+
exports.ConcurrentModificationException = ConcurrentModificationException$1;
|
|
1465
2178
|
exports.Connectivity = Connectivity;
|
|
1466
2179
|
exports.ContentEncoding = ContentEncoding;
|
|
1467
2180
|
exports.CreateDeliveryStreamCommand = CreateDeliveryStreamCommand;
|
|
1468
|
-
exports.CreateDeliveryStreamInputFilterSensitiveLog = CreateDeliveryStreamInputFilterSensitiveLog;
|
|
1469
2181
|
exports.DatabaseType = DatabaseType;
|
|
1470
2182
|
exports.DefaultDocumentIdFormat = DefaultDocumentIdFormat;
|
|
1471
2183
|
exports.DeleteDeliveryStreamCommand = DeleteDeliveryStreamCommand;
|
|
1472
|
-
exports.DeliveryStreamDescriptionFilterSensitiveLog = DeliveryStreamDescriptionFilterSensitiveLog;
|
|
1473
2184
|
exports.DeliveryStreamEncryptionStatus = DeliveryStreamEncryptionStatus;
|
|
1474
2185
|
exports.DeliveryStreamFailureType = DeliveryStreamFailureType;
|
|
1475
2186
|
exports.DeliveryStreamStatus = DeliveryStreamStatus;
|
|
1476
2187
|
exports.DeliveryStreamType = DeliveryStreamType;
|
|
1477
2188
|
exports.DescribeDeliveryStreamCommand = DescribeDeliveryStreamCommand;
|
|
1478
|
-
exports.DescribeDeliveryStreamOutputFilterSensitiveLog = DescribeDeliveryStreamOutputFilterSensitiveLog;
|
|
1479
|
-
exports.DestinationDescriptionFilterSensitiveLog = DestinationDescriptionFilterSensitiveLog;
|
|
1480
2189
|
exports.ElasticsearchIndexRotationPeriod = ElasticsearchIndexRotationPeriod;
|
|
1481
2190
|
exports.ElasticsearchS3BackupMode = ElasticsearchS3BackupMode;
|
|
1482
2191
|
exports.Firehose = Firehose;
|
|
1483
2192
|
exports.FirehoseClient = FirehoseClient;
|
|
1484
|
-
exports.FirehoseServiceException = FirehoseServiceException;
|
|
2193
|
+
exports.FirehoseServiceException = FirehoseServiceException$1;
|
|
1485
2194
|
exports.HECEndpointType = HECEndpointType;
|
|
1486
|
-
exports.HttpEndpointCommonAttributeFilterSensitiveLog = HttpEndpointCommonAttributeFilterSensitiveLog;
|
|
1487
|
-
exports.HttpEndpointConfigurationFilterSensitiveLog = HttpEndpointConfigurationFilterSensitiveLog;
|
|
1488
|
-
exports.HttpEndpointDescriptionFilterSensitiveLog = HttpEndpointDescriptionFilterSensitiveLog;
|
|
1489
|
-
exports.HttpEndpointDestinationConfigurationFilterSensitiveLog = HttpEndpointDestinationConfigurationFilterSensitiveLog;
|
|
1490
|
-
exports.HttpEndpointDestinationDescriptionFilterSensitiveLog = HttpEndpointDestinationDescriptionFilterSensitiveLog;
|
|
1491
|
-
exports.HttpEndpointDestinationUpdateFilterSensitiveLog = HttpEndpointDestinationUpdateFilterSensitiveLog;
|
|
1492
|
-
exports.HttpEndpointRequestConfigurationFilterSensitiveLog = HttpEndpointRequestConfigurationFilterSensitiveLog;
|
|
1493
2195
|
exports.HttpEndpointS3BackupMode = HttpEndpointS3BackupMode;
|
|
1494
2196
|
exports.IcebergS3BackupMode = IcebergS3BackupMode;
|
|
1495
|
-
exports.InvalidArgumentException = InvalidArgumentException;
|
|
1496
|
-
exports.InvalidKMSResourceException = InvalidKMSResourceException;
|
|
1497
|
-
exports.InvalidSourceException = InvalidSourceException;
|
|
2197
|
+
exports.InvalidArgumentException = InvalidArgumentException$1;
|
|
2198
|
+
exports.InvalidKMSResourceException = InvalidKMSResourceException$1;
|
|
2199
|
+
exports.InvalidSourceException = InvalidSourceException$1;
|
|
1498
2200
|
exports.KeyType = KeyType;
|
|
1499
|
-
exports.LimitExceededException = LimitExceededException;
|
|
2201
|
+
exports.LimitExceededException = LimitExceededException$1;
|
|
1500
2202
|
exports.ListDeliveryStreamsCommand = ListDeliveryStreamsCommand;
|
|
1501
2203
|
exports.ListTagsForDeliveryStreamCommand = ListTagsForDeliveryStreamCommand;
|
|
1502
2204
|
exports.NoEncryptionConfig = NoEncryptionConfig;
|
|
@@ -1508,28 +2210,19 @@ exports.ProcessorParameterName = ProcessorParameterName;
|
|
|
1508
2210
|
exports.ProcessorType = ProcessorType;
|
|
1509
2211
|
exports.PutRecordBatchCommand = PutRecordBatchCommand;
|
|
1510
2212
|
exports.PutRecordCommand = PutRecordCommand;
|
|
1511
|
-
exports.RedshiftDestinationConfigurationFilterSensitiveLog = RedshiftDestinationConfigurationFilterSensitiveLog;
|
|
1512
|
-
exports.RedshiftDestinationDescriptionFilterSensitiveLog = RedshiftDestinationDescriptionFilterSensitiveLog;
|
|
1513
|
-
exports.RedshiftDestinationUpdateFilterSensitiveLog = RedshiftDestinationUpdateFilterSensitiveLog;
|
|
1514
2213
|
exports.RedshiftS3BackupMode = RedshiftS3BackupMode;
|
|
1515
|
-
exports.ResourceInUseException = ResourceInUseException;
|
|
1516
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
2214
|
+
exports.ResourceInUseException = ResourceInUseException$1;
|
|
2215
|
+
exports.ResourceNotFoundException = ResourceNotFoundException$1;
|
|
1517
2216
|
exports.S3BackupMode = S3BackupMode;
|
|
1518
2217
|
exports.SSLMode = SSLMode;
|
|
1519
|
-
exports.ServiceUnavailableException = ServiceUnavailableException;
|
|
2218
|
+
exports.ServiceUnavailableException = ServiceUnavailableException$1;
|
|
1520
2219
|
exports.SnapshotRequestedBy = SnapshotRequestedBy;
|
|
1521
2220
|
exports.SnapshotStatus = SnapshotStatus;
|
|
1522
2221
|
exports.SnowflakeDataLoadingOption = SnowflakeDataLoadingOption;
|
|
1523
|
-
exports.SnowflakeDestinationConfigurationFilterSensitiveLog = SnowflakeDestinationConfigurationFilterSensitiveLog;
|
|
1524
|
-
exports.SnowflakeDestinationDescriptionFilterSensitiveLog = SnowflakeDestinationDescriptionFilterSensitiveLog;
|
|
1525
|
-
exports.SnowflakeDestinationUpdateFilterSensitiveLog = SnowflakeDestinationUpdateFilterSensitiveLog;
|
|
1526
|
-
exports.SnowflakeRoleConfigurationFilterSensitiveLog = SnowflakeRoleConfigurationFilterSensitiveLog;
|
|
1527
2222
|
exports.SnowflakeS3BackupMode = SnowflakeS3BackupMode;
|
|
1528
|
-
exports.SnowflakeVpcConfigurationFilterSensitiveLog = SnowflakeVpcConfigurationFilterSensitiveLog;
|
|
1529
2223
|
exports.SplunkS3BackupMode = SplunkS3BackupMode;
|
|
1530
2224
|
exports.StartDeliveryStreamEncryptionCommand = StartDeliveryStreamEncryptionCommand;
|
|
1531
2225
|
exports.StopDeliveryStreamEncryptionCommand = StopDeliveryStreamEncryptionCommand;
|
|
1532
2226
|
exports.TagDeliveryStreamCommand = TagDeliveryStreamCommand;
|
|
1533
2227
|
exports.UntagDeliveryStreamCommand = UntagDeliveryStreamCommand;
|
|
1534
2228
|
exports.UpdateDestinationCommand = UpdateDestinationCommand;
|
|
1535
|
-
exports.UpdateDestinationInputFilterSensitiveLog = UpdateDestinationInputFilterSensitiveLog;
|