@aws-sdk/client-firehose 3.987.0 → 3.989.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 +31 -1388
- package/dist-cjs/models/FirehoseServiceException.js +12 -0
- package/dist-cjs/models/errors.js +112 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +1135 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +58 -52
- package/dist-types/schemas/schemas_0.d.ts +16 -9
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +11 -9
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var FirehoseServiceException = require('./models/FirehoseServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,1225 +113,6 @@ class FirehoseClient extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class FirehoseServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, FirehoseServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class ConcurrentModificationException extends FirehoseServiceException {
|
|
121
|
-
name = "ConcurrentModificationException";
|
|
122
|
-
$fault = "client";
|
|
123
|
-
constructor(opts) {
|
|
124
|
-
super({
|
|
125
|
-
name: "ConcurrentModificationException",
|
|
126
|
-
$fault: "client",
|
|
127
|
-
...opts,
|
|
128
|
-
});
|
|
129
|
-
Object.setPrototypeOf(this, ConcurrentModificationException.prototype);
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
class InvalidArgumentException extends FirehoseServiceException {
|
|
133
|
-
name = "InvalidArgumentException";
|
|
134
|
-
$fault = "client";
|
|
135
|
-
constructor(opts) {
|
|
136
|
-
super({
|
|
137
|
-
name: "InvalidArgumentException",
|
|
138
|
-
$fault: "client",
|
|
139
|
-
...opts,
|
|
140
|
-
});
|
|
141
|
-
Object.setPrototypeOf(this, InvalidArgumentException.prototype);
|
|
142
|
-
}
|
|
143
|
-
}
|
|
144
|
-
class InvalidKMSResourceException extends FirehoseServiceException {
|
|
145
|
-
name = "InvalidKMSResourceException";
|
|
146
|
-
$fault = "client";
|
|
147
|
-
code;
|
|
148
|
-
constructor(opts) {
|
|
149
|
-
super({
|
|
150
|
-
name: "InvalidKMSResourceException",
|
|
151
|
-
$fault: "client",
|
|
152
|
-
...opts,
|
|
153
|
-
});
|
|
154
|
-
Object.setPrototypeOf(this, InvalidKMSResourceException.prototype);
|
|
155
|
-
this.code = opts.code;
|
|
156
|
-
}
|
|
157
|
-
}
|
|
158
|
-
class LimitExceededException extends FirehoseServiceException {
|
|
159
|
-
name = "LimitExceededException";
|
|
160
|
-
$fault = "client";
|
|
161
|
-
constructor(opts) {
|
|
162
|
-
super({
|
|
163
|
-
name: "LimitExceededException",
|
|
164
|
-
$fault: "client",
|
|
165
|
-
...opts,
|
|
166
|
-
});
|
|
167
|
-
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
168
|
-
}
|
|
169
|
-
}
|
|
170
|
-
class ResourceInUseException extends FirehoseServiceException {
|
|
171
|
-
name = "ResourceInUseException";
|
|
172
|
-
$fault = "client";
|
|
173
|
-
constructor(opts) {
|
|
174
|
-
super({
|
|
175
|
-
name: "ResourceInUseException",
|
|
176
|
-
$fault: "client",
|
|
177
|
-
...opts,
|
|
178
|
-
});
|
|
179
|
-
Object.setPrototypeOf(this, ResourceInUseException.prototype);
|
|
180
|
-
}
|
|
181
|
-
}
|
|
182
|
-
class ResourceNotFoundException extends FirehoseServiceException {
|
|
183
|
-
name = "ResourceNotFoundException";
|
|
184
|
-
$fault = "client";
|
|
185
|
-
constructor(opts) {
|
|
186
|
-
super({
|
|
187
|
-
name: "ResourceNotFoundException",
|
|
188
|
-
$fault: "client",
|
|
189
|
-
...opts,
|
|
190
|
-
});
|
|
191
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
192
|
-
}
|
|
193
|
-
}
|
|
194
|
-
class InvalidSourceException extends FirehoseServiceException {
|
|
195
|
-
name = "InvalidSourceException";
|
|
196
|
-
$fault = "client";
|
|
197
|
-
code;
|
|
198
|
-
constructor(opts) {
|
|
199
|
-
super({
|
|
200
|
-
name: "InvalidSourceException",
|
|
201
|
-
$fault: "client",
|
|
202
|
-
...opts,
|
|
203
|
-
});
|
|
204
|
-
Object.setPrototypeOf(this, InvalidSourceException.prototype);
|
|
205
|
-
this.code = opts.code;
|
|
206
|
-
}
|
|
207
|
-
}
|
|
208
|
-
class ServiceUnavailableException extends FirehoseServiceException {
|
|
209
|
-
name = "ServiceUnavailableException";
|
|
210
|
-
$fault = "server";
|
|
211
|
-
constructor(opts) {
|
|
212
|
-
super({
|
|
213
|
-
name: "ServiceUnavailableException",
|
|
214
|
-
$fault: "server",
|
|
215
|
-
...opts,
|
|
216
|
-
});
|
|
217
|
-
Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
|
|
218
|
-
}
|
|
219
|
-
}
|
|
220
|
-
|
|
221
|
-
const _ABH = "AmazonopensearchserviceBufferingHints";
|
|
222
|
-
const _AC = "AuthenticationConfiguration";
|
|
223
|
-
const _ADC = "AmazonopensearchserviceDestinationConfiguration";
|
|
224
|
-
const _ADD = "AmazonopensearchserviceDestinationDescription";
|
|
225
|
-
const _ADU = "AmazonopensearchserviceDestinationUpdate";
|
|
226
|
-
const _AFD = "AllowForceDelete";
|
|
227
|
-
const _AK = "AccessKey";
|
|
228
|
-
const _AN = "AttributeName";
|
|
229
|
-
const _AO = "AppendOnly";
|
|
230
|
-
const _AOSSBH = "AmazonOpenSearchServerlessBufferingHints";
|
|
231
|
-
const _AOSSDC = "AmazonOpenSearchServerlessDestinationConfiguration";
|
|
232
|
-
const _AOSSDD = "AmazonOpenSearchServerlessDestinationDescription";
|
|
233
|
-
const _AOSSDU = "AmazonOpenSearchServerlessDestinationUpdate";
|
|
234
|
-
const _AOSSRO = "AmazonOpenSearchServerlessRetryOptions";
|
|
235
|
-
const _ARO = "AmazonopensearchserviceRetryOptions";
|
|
236
|
-
const _AU = "AccountUrl";
|
|
237
|
-
const _AV = "AttributeValue";
|
|
238
|
-
const _AWSKMSKARN = "AWSKMSKeyARN";
|
|
239
|
-
const _BARN = "BucketARN";
|
|
240
|
-
const _BFC = "BloomFilterColumns";
|
|
241
|
-
const _BFFPP = "BloomFilterFalsePositiveProbability";
|
|
242
|
-
const _BH = "BufferingHints";
|
|
243
|
-
const _BSB = "BlockSizeBytes";
|
|
244
|
-
const _C = "Connectivity";
|
|
245
|
-
const _CA = "CommonAttributes";
|
|
246
|
-
const _CARN = "CatalogARN";
|
|
247
|
-
const _CC = "CatalogConfiguration";
|
|
248
|
-
const _CCN = "ContentColumnName";
|
|
249
|
-
const _CCo = "CopyCommand";
|
|
250
|
-
const _CDIJKTU = "ConvertDotsInJsonKeysToUnderscores";
|
|
251
|
-
const _CDS = "CreateDeliveryStream";
|
|
252
|
-
const _CDSI = "CreateDeliveryStreamInput";
|
|
253
|
-
const _CDSO = "CreateDeliveryStreamOutput";
|
|
254
|
-
const _CDSVI = "CurrentDeliveryStreamVersionId";
|
|
255
|
-
const _CE = "CollectionEndpoint";
|
|
256
|
-
const _CEl = "ClusterEndpoint";
|
|
257
|
-
const _CEo = "ContentEncoding";
|
|
258
|
-
const _CF = "CompressionFormat";
|
|
259
|
-
const _CI = "CaseInsensitive";
|
|
260
|
-
const _CIa = "CatalogId";
|
|
261
|
-
const _CJDBCURL = "ClusterJDBCURL";
|
|
262
|
-
const _CME = "ConcurrentModificationException";
|
|
263
|
-
const _CO = "CopyOptions";
|
|
264
|
-
const _CT = "CreateTimestamp";
|
|
265
|
-
const _CTJKM = "ColumnToJsonKeyMappings";
|
|
266
|
-
const _CTZ = "CustomTimeZone";
|
|
267
|
-
const _CWLO = "CloudWatchLoggingOptions";
|
|
268
|
-
const _Co = "Columns";
|
|
269
|
-
const _Com = "Compression";
|
|
270
|
-
const _D = "Databases";
|
|
271
|
-
const _DARN = "DomainARN";
|
|
272
|
-
const _DCL = "DatabaseColumnList";
|
|
273
|
-
const _DD = "DestinationDescription";
|
|
274
|
-
const _DDIF = "DefaultDocumentIdFormat";
|
|
275
|
-
const _DDL = "DestinationDescriptionList";
|
|
276
|
-
const _DDN = "DestinationDatabaseName";
|
|
277
|
-
const _DDS = "DeleteDeliveryStream";
|
|
278
|
-
const _DDSI = "DeleteDeliveryStreamInput";
|
|
279
|
-
const _DDSIe = "DescribeDeliveryStreamInput";
|
|
280
|
-
const _DDSO = "DeleteDeliveryStreamOutput";
|
|
281
|
-
const _DDSOe = "DescribeDeliveryStreamOutput";
|
|
282
|
-
const _DDSe = "DescribeDeliveryStream";
|
|
283
|
-
const _DFCC = "DataFormatConversionConfiguration";
|
|
284
|
-
const _DI = "DestinationId";
|
|
285
|
-
const _DIO = "DocumentIdOptions";
|
|
286
|
-
const _DIS = "DurationInSeconds";
|
|
287
|
-
const _DKT = "DictionaryKeyThreshold";
|
|
288
|
-
const _DL = "DatabaseList";
|
|
289
|
-
const _DLO = "DataLoadingOption";
|
|
290
|
-
const _DN = "DatabaseName";
|
|
291
|
-
const _DPC = "DynamicPartitioningConfiguration";
|
|
292
|
-
const _DPSC = "DirectPutSourceConfiguration";
|
|
293
|
-
const _DPSD = "DirectPutSourceDescription";
|
|
294
|
-
const _DSAC = "DatabaseSourceAuthenticationConfiguration";
|
|
295
|
-
const _DSARN = "DeliveryStreamARN";
|
|
296
|
-
const _DSC = "DatabaseSourceConfiguration";
|
|
297
|
-
const _DSD = "DatabaseSourceDescription";
|
|
298
|
-
const _DSDe = "DeliveryStreamDescription";
|
|
299
|
-
const _DSEC = "DeliveryStreamEncryptionConfiguration";
|
|
300
|
-
const _DSECI = "DeliveryStreamEncryptionConfigurationInput";
|
|
301
|
-
const _DSI = "DatabaseSnapshotInfo";
|
|
302
|
-
const _DSIL = "DatabaseSnapshotInfoList";
|
|
303
|
-
const _DSN = "DeliveryStreamName";
|
|
304
|
-
const _DSNe = "DeliveryStreamNames";
|
|
305
|
-
const _DSS = "DeliveryStreamStatus";
|
|
306
|
-
const _DST = "DeliveryStreamType";
|
|
307
|
-
const _DSTe = "DeliveryStartTimestamp";
|
|
308
|
-
const _DSVPCC = "DatabaseSourceVPCConfiguration";
|
|
309
|
-
const _DTC = "DataTableColumns";
|
|
310
|
-
const _DTCL = "DestinationTableConfigurationList";
|
|
311
|
-
const _DTCe = "DestinationTableConfiguration";
|
|
312
|
-
const _DTL = "DatabaseTableList";
|
|
313
|
-
const _DTN = "DataTableName";
|
|
314
|
-
const _DTNe = "DestinationTableName";
|
|
315
|
-
const _Da = "Data";
|
|
316
|
-
const _Dat = "Database";
|
|
317
|
-
const _De = "Destinations";
|
|
318
|
-
const _Des = "Deserializer";
|
|
319
|
-
const _Det = "Details";
|
|
320
|
-
const _E = "Enabled";
|
|
321
|
-
const _EBH = "ElasticsearchBufferingHints";
|
|
322
|
-
const _EC = "EncryptionConfiguration";
|
|
323
|
-
const _ECn = "EndpointConfiguration";
|
|
324
|
-
const _ECr = "ErrorCode";
|
|
325
|
-
const _EDC = "ElasticsearchDestinationConfiguration";
|
|
326
|
-
const _EDCn = "EnableDictionaryCompression";
|
|
327
|
-
const _EDD = "ElasticsearchDestinationDescription";
|
|
328
|
-
const _EDU = "ElasticsearchDestinationUpdate";
|
|
329
|
-
const _EM = "ErrorMessage";
|
|
330
|
-
const _EOP = "ErrorOutputPrefix";
|
|
331
|
-
const _EP = "EnablePadding";
|
|
332
|
-
const _ERO = "ElasticsearchRetryOptions";
|
|
333
|
-
const _ESDC = "ExtendedS3DestinationConfiguration";
|
|
334
|
-
const _ESDD = "ExtendedS3DestinationDescription";
|
|
335
|
-
const _ESDI = "ExclusiveStartDestinationId";
|
|
336
|
-
const _ESDSN = "ExclusiveStartDeliveryStreamName";
|
|
337
|
-
const _ESDU = "ExtendedS3DestinationUpdate";
|
|
338
|
-
const _ESTK = "ExclusiveStartTagKey";
|
|
339
|
-
const _En = "Endpoint";
|
|
340
|
-
const _Enc = "Encrypted";
|
|
341
|
-
const _Ex = "Exclude";
|
|
342
|
-
const _FD = "FailureDescription";
|
|
343
|
-
const _FE = "FileExtension";
|
|
344
|
-
const _FPC = "FailedPutCount";
|
|
345
|
-
const _FV = "FormatVersion";
|
|
346
|
-
const _HEAK = "HttpEndpointAccessKey";
|
|
347
|
-
const _HEAN = "HttpEndpointAttributeName";
|
|
348
|
-
const _HEAV = "HttpEndpointAttributeValue";
|
|
349
|
-
const _HEBH = "HttpEndpointBufferingHints";
|
|
350
|
-
const _HEC = "HttpEndpointConfiguration";
|
|
351
|
-
const _HECA = "HttpEndpointCommonAttribute";
|
|
352
|
-
const _HECAL = "HttpEndpointCommonAttributesList";
|
|
353
|
-
const _HECATIS = "HECAcknowledgmentTimeoutInSeconds";
|
|
354
|
-
const _HECE = "HECEndpoint";
|
|
355
|
-
const _HECET = "HECEndpointType";
|
|
356
|
-
const _HECT = "HECToken";
|
|
357
|
-
const _HED = "HttpEndpointDescription";
|
|
358
|
-
const _HEDC = "HttpEndpointDestinationConfiguration";
|
|
359
|
-
const _HEDD = "HttpEndpointDestinationDescription";
|
|
360
|
-
const _HEDU = "HttpEndpointDestinationUpdate";
|
|
361
|
-
const _HERC = "HttpEndpointRequestConfiguration";
|
|
362
|
-
const _HERO = "HttpEndpointRetryOptions";
|
|
363
|
-
const _HEU = "HttpEndpointUrl";
|
|
364
|
-
const _HJSD = "HiveJsonSerDe";
|
|
365
|
-
const _HMD = "HasMoreDestinations";
|
|
366
|
-
const _HMDS = "HasMoreDeliveryStreams";
|
|
367
|
-
const _HMT = "HasMoreTags";
|
|
368
|
-
const _I = "Include";
|
|
369
|
-
const _IAE = "InvalidArgumentException";
|
|
370
|
-
const _IDC = "IcebergDestinationConfiguration";
|
|
371
|
-
const _IDD = "IcebergDestinationDescription";
|
|
372
|
-
const _IDU = "IcebergDestinationUpdate";
|
|
373
|
-
const _IFC = "InputFormatConfiguration";
|
|
374
|
-
const _IIS = "IntervalInSeconds";
|
|
375
|
-
const _IKMSRE = "InvalidKMSResourceException";
|
|
376
|
-
const _IN = "IndexName";
|
|
377
|
-
const _IRP = "IndexRotationPeriod";
|
|
378
|
-
const _ISE = "InvalidSourceException";
|
|
379
|
-
const _Id = "Id";
|
|
380
|
-
const _Ide = "Identity";
|
|
381
|
-
const _K = "Key";
|
|
382
|
-
const _KARN = "KeyARN";
|
|
383
|
-
const _KMSEC = "KMSEncryptionConfig";
|
|
384
|
-
const _KP = "KeyPassphrase";
|
|
385
|
-
const _KSARN = "KinesisStreamARN";
|
|
386
|
-
const _KSSC = "KinesisStreamSourceConfiguration";
|
|
387
|
-
const _KSSD = "KinesisStreamSourceDescription";
|
|
388
|
-
const _KT = "KeyType";
|
|
389
|
-
const _L = "Limit";
|
|
390
|
-
const _LDS = "ListDeliveryStreams";
|
|
391
|
-
const _LDSI = "ListDeliveryStreamsInput";
|
|
392
|
-
const _LDSO = "ListDeliveryStreamsOutput";
|
|
393
|
-
const _LEE = "LimitExceededException";
|
|
394
|
-
const _LGN = "LogGroupName";
|
|
395
|
-
const _LSN = "LogStreamName";
|
|
396
|
-
const _LTFDS = "ListTagsForDeliveryStream";
|
|
397
|
-
const _LTFDSI = "ListTagsForDeliveryStreamInput";
|
|
398
|
-
const _LTFDSO = "ListTagsForDeliveryStreamOutput";
|
|
399
|
-
const _LTFDSOTL = "ListTagsForDeliveryStreamOutputTagList";
|
|
400
|
-
const _LUT = "LastUpdateTimestamp";
|
|
401
|
-
const _MDCN = "MetaDataColumnName";
|
|
402
|
-
const _MPB = "MaxPaddingBytes";
|
|
403
|
-
const _MSKCARN = "MSKClusterARN";
|
|
404
|
-
const _MSKSC = "MSKSourceConfiguration";
|
|
405
|
-
const _MSKSD = "MSKSourceDescription";
|
|
406
|
-
const _N = "Name";
|
|
407
|
-
const _NEC = "NoEncryptionConfig";
|
|
408
|
-
const _OFC = "OutputFormatConfiguration";
|
|
409
|
-
const _OSD = "OrcSerDe";
|
|
410
|
-
const _OXJSD = "OpenXJsonSerDe";
|
|
411
|
-
const _P = "Password";
|
|
412
|
-
const _PC = "ProcessingConfiguration";
|
|
413
|
-
const _PF = "PartitionField";
|
|
414
|
-
const _PFa = "PartitionFields";
|
|
415
|
-
const _PK = "PrivateKey";
|
|
416
|
-
const _PL = "ProcessorList";
|
|
417
|
-
const _PLVI = "PrivateLinkVpceId";
|
|
418
|
-
const _PN = "ParameterName";
|
|
419
|
-
const _PP = "ProcessorParameter";
|
|
420
|
-
const _PPL = "ProcessorParameterList";
|
|
421
|
-
const _PR = "PutRecord";
|
|
422
|
-
const _PRB = "PutRecordBatch";
|
|
423
|
-
const _PRBI = "PutRecordBatchInput";
|
|
424
|
-
const _PRBO = "PutRecordBatchOutput";
|
|
425
|
-
const _PRBRE = "PutRecordBatchResponseEntry";
|
|
426
|
-
const _PRBREL = "PutRecordBatchRequestEntryList";
|
|
427
|
-
const _PRBRELu = "PutRecordBatchResponseEntryList";
|
|
428
|
-
const _PRI = "PutRecordInput";
|
|
429
|
-
const _PRO = "PutRecordOutput";
|
|
430
|
-
const _PS = "PartitionSpec";
|
|
431
|
-
const _PSB = "PageSizeBytes";
|
|
432
|
-
const _PSD = "ParquetSerDe";
|
|
433
|
-
const _PT = "PaddingTolerance";
|
|
434
|
-
const _PV = "ParameterValue";
|
|
435
|
-
const _Pa = "Parameters";
|
|
436
|
-
const _Po = "Port";
|
|
437
|
-
const _Pr = "Prefix";
|
|
438
|
-
const _Pro = "Processors";
|
|
439
|
-
const _Proc = "Processor";
|
|
440
|
-
const _R = "Records";
|
|
441
|
-
const _RARN = "RoleARN";
|
|
442
|
-
const _RB = "RequestedBy";
|
|
443
|
-
const _RC = "RequestConfiguration";
|
|
444
|
-
const _RDC = "RedshiftDestinationConfiguration";
|
|
445
|
-
const _RDD = "RedshiftDestinationDescription";
|
|
446
|
-
const _RDU = "RedshiftDestinationUpdate";
|
|
447
|
-
const _RFT = "ReadFromTimestamp";
|
|
448
|
-
const _RI = "RecordId";
|
|
449
|
-
const _RIS = "RowIndexStride";
|
|
450
|
-
const _RIUE = "ResourceInUseException";
|
|
451
|
-
const _RNFE = "ResourceNotFoundException";
|
|
452
|
-
const _RO = "RetryOptions";
|
|
453
|
-
const _RR = "RequestResponses";
|
|
454
|
-
const _RRO = "RedshiftRetryOptions";
|
|
455
|
-
const _RT = "RequestTimestamp";
|
|
456
|
-
const _Re = "Record";
|
|
457
|
-
const _Reg = "Region";
|
|
458
|
-
const _S = "Status";
|
|
459
|
-
const _SARN = "SecretARN";
|
|
460
|
-
const _SAU = "SnowflakeAccountUrl";
|
|
461
|
-
const _SBC = "S3BackupConfiguration";
|
|
462
|
-
const _SBD = "S3BackupDescription";
|
|
463
|
-
const _SBH = "SnowflakeBufferingHints";
|
|
464
|
-
const _SBHp = "SplunkBufferingHints";
|
|
465
|
-
const _SBM = "S3BackupMode";
|
|
466
|
-
const _SBU = "S3BackupUpdate";
|
|
467
|
-
const _SC = "S3Configuration";
|
|
468
|
-
const _SCCN = "SnowflakeContentColumnName";
|
|
469
|
-
const _SCc = "SchemaConfiguration";
|
|
470
|
-
const _SD = "SnowflakeDatabase";
|
|
471
|
-
const _SDC = "S3DestinationConfiguration";
|
|
472
|
-
const _SDCn = "SnowflakeDestinationConfiguration";
|
|
473
|
-
const _SDCp = "SplunkDestinationConfiguration";
|
|
474
|
-
const _SDD = "S3DestinationDescription";
|
|
475
|
-
const _SDDn = "SnowflakeDestinationDescription";
|
|
476
|
-
const _SDDp = "SplunkDestinationDescription";
|
|
477
|
-
const _SDSE = "StartDeliveryStreamEncryption";
|
|
478
|
-
const _SDSEI = "StartDeliveryStreamEncryptionInput";
|
|
479
|
-
const _SDSEIt = "StopDeliveryStreamEncryptionInput";
|
|
480
|
-
const _SDSEO = "StartDeliveryStreamEncryptionOutput";
|
|
481
|
-
const _SDSEOt = "StopDeliveryStreamEncryptionOutput";
|
|
482
|
-
const _SDSEt = "StopDeliveryStreamEncryption";
|
|
483
|
-
const _SDU = "S3DestinationUpdate";
|
|
484
|
-
const _SDUn = "SnowflakeDestinationUpdate";
|
|
485
|
-
const _SDUp = "SplunkDestinationUpdate";
|
|
486
|
-
const _SDo = "SourceDescription";
|
|
487
|
-
const _SEC = "SchemaEvolutionConfiguration";
|
|
488
|
-
const _SEOP = "S3ErrorOutputPrefix";
|
|
489
|
-
const _SGI = "SecurityGroupIds";
|
|
490
|
-
const _SI = "SnapshotInfo";
|
|
491
|
-
const _SIMB = "SizeInMBs";
|
|
492
|
-
const _SIu = "SubnetIds";
|
|
493
|
-
const _SK = "SurrogateKeys";
|
|
494
|
-
const _SKP = "SnowflakeKeyPassphrase";
|
|
495
|
-
const _SMC = "SecretsManagerConfiguration";
|
|
496
|
-
const _SMDCN = "SnowflakeMetaDataColumnName";
|
|
497
|
-
const _SN = "SourceName";
|
|
498
|
-
const _SPK = "SnowflakePrivateKey";
|
|
499
|
-
const _SPLVI = "SnowflakePrivateLinkVpceId";
|
|
500
|
-
const _SR = "SnowflakeRole";
|
|
501
|
-
const _SRC = "SnowflakeRoleConfiguration";
|
|
502
|
-
const _SRO = "SnowflakeRetryOptions";
|
|
503
|
-
const _SROp = "SplunkRetryOptions";
|
|
504
|
-
const _SS = "SnowflakeSchema";
|
|
505
|
-
const _SSB = "StripeSizeBytes";
|
|
506
|
-
const _SSLM = "SSLMode";
|
|
507
|
-
const _ST = "SnowflakeTable";
|
|
508
|
-
const _SU = "SnowflakeUser";
|
|
509
|
-
const _SUE = "ServiceUnavailableException";
|
|
510
|
-
const _SUp = "S3Update";
|
|
511
|
-
const _SVC = "SnowflakeVpcConfiguration";
|
|
512
|
-
const _SWT = "SnapshotWatermarkTable";
|
|
513
|
-
const _Sc = "Schema";
|
|
514
|
-
const _Se = "Serializer";
|
|
515
|
-
const _So = "Source";
|
|
516
|
-
const _T = "Tags";
|
|
517
|
-
const _TCC = "TableCreationConfiguration";
|
|
518
|
-
const _TDS = "TagDeliveryStream";
|
|
519
|
-
const _TDSI = "TagDeliveryStreamInput";
|
|
520
|
-
const _TDSITL = "TagDeliveryStreamInputTagList";
|
|
521
|
-
const _TDSO = "TagDeliveryStreamOutput";
|
|
522
|
-
const _TF = "TimestampFormats";
|
|
523
|
-
const _THIMB = "ThroughputHintInMBs";
|
|
524
|
-
const _TK = "TagKeys";
|
|
525
|
-
const _TN = "TypeName";
|
|
526
|
-
const _TNa = "TableName";
|
|
527
|
-
const _TNo = "TopicName";
|
|
528
|
-
const _Ta = "Table";
|
|
529
|
-
const _Tab = "Tables";
|
|
530
|
-
const _Tag = "Tag";
|
|
531
|
-
const _Ty = "Type";
|
|
532
|
-
const _U = "Username";
|
|
533
|
-
const _UD = "UpdateDestination";
|
|
534
|
-
const _UDI = "UpdateDestinationInput";
|
|
535
|
-
const _UDO = "UpdateDestinationOutput";
|
|
536
|
-
const _UDS = "UntagDeliveryStream";
|
|
537
|
-
const _UDSI = "UntagDeliveryStreamInput";
|
|
538
|
-
const _UDSO = "UntagDeliveryStreamOutput";
|
|
539
|
-
const _UK = "UniqueKeys";
|
|
540
|
-
const _Ur = "Url";
|
|
541
|
-
const _Us = "User";
|
|
542
|
-
const _V = "Value";
|
|
543
|
-
const _VC = "VpcConfiguration";
|
|
544
|
-
const _VCD = "VpcConfigurationDescription";
|
|
545
|
-
const _VESN = "VpcEndpointServiceName";
|
|
546
|
-
const _VI = "VersionId";
|
|
547
|
-
const _VIp = "VpcId";
|
|
548
|
-
const _WL = "WarehouseLocation";
|
|
549
|
-
const _WV = "WriterVersion";
|
|
550
|
-
const _c = "client";
|
|
551
|
-
const _co = "code";
|
|
552
|
-
const _e = "error";
|
|
553
|
-
const _hE = "httpError";
|
|
554
|
-
const _m = "message";
|
|
555
|
-
const _s = "server";
|
|
556
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.firehose";
|
|
557
|
-
const n0 = "com.amazonaws.firehose";
|
|
558
|
-
var HttpEndpointAccessKey = [0, n0, _HEAK, 8, 0];
|
|
559
|
-
var HttpEndpointAttributeName = [0, n0, _HEAN, 8, 0];
|
|
560
|
-
var HttpEndpointAttributeValue = [0, n0, _HEAV, 8, 0];
|
|
561
|
-
var HttpEndpointUrl = [0, n0, _HEU, 8, 0];
|
|
562
|
-
var Password = [0, n0, _P, 8, 0];
|
|
563
|
-
var SnowflakeAccountUrl = [0, n0, _SAU, 8, 0];
|
|
564
|
-
var SnowflakeContentColumnName = [0, n0, _SCCN, 8, 0];
|
|
565
|
-
var SnowflakeDatabase = [0, n0, _SD, 8, 0];
|
|
566
|
-
var SnowflakeKeyPassphrase = [0, n0, _SKP, 8, 0];
|
|
567
|
-
var SnowflakeMetaDataColumnName = [0, n0, _SMDCN, 8, 0];
|
|
568
|
-
var SnowflakePrivateKey = [0, n0, _SPK, 8, 0];
|
|
569
|
-
var SnowflakePrivateLinkVpceId = [0, n0, _SPLVI, 8, 0];
|
|
570
|
-
var SnowflakeRole = [0, n0, _SR, 8, 0];
|
|
571
|
-
var SnowflakeSchema = [0, n0, _SS, 8, 0];
|
|
572
|
-
var SnowflakeTable = [0, n0, _ST, 8, 0];
|
|
573
|
-
var SnowflakeUser = [0, n0, _SU, 8, 0];
|
|
574
|
-
var Username = [0, n0, _U, 8, 0];
|
|
575
|
-
var AmazonOpenSearchServerlessBufferingHints$ = [3, n0, _AOSSBH,
|
|
576
|
-
0,
|
|
577
|
-
[_IIS, _SIMB],
|
|
578
|
-
[1, 1]
|
|
579
|
-
];
|
|
580
|
-
var AmazonOpenSearchServerlessDestinationConfiguration$ = [3, n0, _AOSSDC,
|
|
581
|
-
0,
|
|
582
|
-
[_RARN, _IN, _SC, _CE, _BH, _RO, _SBM, _PC, _CWLO, _VC],
|
|
583
|
-
[0, 0, () => S3DestinationConfiguration$, 0, () => AmazonOpenSearchServerlessBufferingHints$, () => AmazonOpenSearchServerlessRetryOptions$, 0, () => ProcessingConfiguration$, () => CloudWatchLoggingOptions$, () => VpcConfiguration$], 3
|
|
584
|
-
];
|
|
585
|
-
var AmazonOpenSearchServerlessDestinationDescription$ = [3, n0, _AOSSDD,
|
|
586
|
-
0,
|
|
587
|
-
[_RARN, _CE, _IN, _BH, _RO, _SBM, _SDD, _PC, _CWLO, _VCD],
|
|
588
|
-
[0, 0, 0, () => AmazonOpenSearchServerlessBufferingHints$, () => AmazonOpenSearchServerlessRetryOptions$, 0, () => S3DestinationDescription$, () => ProcessingConfiguration$, () => CloudWatchLoggingOptions$, () => VpcConfigurationDescription$]
|
|
589
|
-
];
|
|
590
|
-
var AmazonOpenSearchServerlessDestinationUpdate$ = [3, n0, _AOSSDU,
|
|
591
|
-
0,
|
|
592
|
-
[_RARN, _CE, _IN, _BH, _RO, _SUp, _PC, _CWLO],
|
|
593
|
-
[0, 0, 0, () => AmazonOpenSearchServerlessBufferingHints$, () => AmazonOpenSearchServerlessRetryOptions$, () => S3DestinationUpdate$, () => ProcessingConfiguration$, () => CloudWatchLoggingOptions$]
|
|
594
|
-
];
|
|
595
|
-
var AmazonOpenSearchServerlessRetryOptions$ = [3, n0, _AOSSRO,
|
|
596
|
-
0,
|
|
597
|
-
[_DIS],
|
|
598
|
-
[1]
|
|
599
|
-
];
|
|
600
|
-
var AmazonopensearchserviceBufferingHints$ = [3, n0, _ABH,
|
|
601
|
-
0,
|
|
602
|
-
[_IIS, _SIMB],
|
|
603
|
-
[1, 1]
|
|
604
|
-
];
|
|
605
|
-
var AmazonopensearchserviceDestinationConfiguration$ = [3, n0, _ADC,
|
|
606
|
-
0,
|
|
607
|
-
[_RARN, _IN, _SC, _DARN, _CEl, _TN, _IRP, _BH, _RO, _SBM, _PC, _CWLO, _VC, _DIO],
|
|
608
|
-
[0, 0, () => S3DestinationConfiguration$, 0, 0, 0, 0, () => AmazonopensearchserviceBufferingHints$, () => AmazonopensearchserviceRetryOptions$, 0, () => ProcessingConfiguration$, () => CloudWatchLoggingOptions$, () => VpcConfiguration$, () => DocumentIdOptions$], 3
|
|
609
|
-
];
|
|
610
|
-
var AmazonopensearchserviceDestinationDescription$ = [3, n0, _ADD,
|
|
611
|
-
0,
|
|
612
|
-
[_RARN, _DARN, _CEl, _IN, _TN, _IRP, _BH, _RO, _SBM, _SDD, _PC, _CWLO, _VCD, _DIO],
|
|
613
|
-
[0, 0, 0, 0, 0, 0, () => AmazonopensearchserviceBufferingHints$, () => AmazonopensearchserviceRetryOptions$, 0, () => S3DestinationDescription$, () => ProcessingConfiguration$, () => CloudWatchLoggingOptions$, () => VpcConfigurationDescription$, () => DocumentIdOptions$]
|
|
614
|
-
];
|
|
615
|
-
var AmazonopensearchserviceDestinationUpdate$ = [3, n0, _ADU,
|
|
616
|
-
0,
|
|
617
|
-
[_RARN, _DARN, _CEl, _IN, _TN, _IRP, _BH, _RO, _SUp, _PC, _CWLO, _DIO],
|
|
618
|
-
[0, 0, 0, 0, 0, 0, () => AmazonopensearchserviceBufferingHints$, () => AmazonopensearchserviceRetryOptions$, () => S3DestinationUpdate$, () => ProcessingConfiguration$, () => CloudWatchLoggingOptions$, () => DocumentIdOptions$]
|
|
619
|
-
];
|
|
620
|
-
var AmazonopensearchserviceRetryOptions$ = [3, n0, _ARO,
|
|
621
|
-
0,
|
|
622
|
-
[_DIS],
|
|
623
|
-
[1]
|
|
624
|
-
];
|
|
625
|
-
var AuthenticationConfiguration$ = [3, n0, _AC,
|
|
626
|
-
0,
|
|
627
|
-
[_RARN, _C],
|
|
628
|
-
[0, 0], 2
|
|
629
|
-
];
|
|
630
|
-
var BufferingHints$ = [3, n0, _BH,
|
|
631
|
-
0,
|
|
632
|
-
[_SIMB, _IIS],
|
|
633
|
-
[1, 1]
|
|
634
|
-
];
|
|
635
|
-
var CatalogConfiguration$ = [3, n0, _CC,
|
|
636
|
-
0,
|
|
637
|
-
[_CARN, _WL],
|
|
638
|
-
[0, 0]
|
|
639
|
-
];
|
|
640
|
-
var CloudWatchLoggingOptions$ = [3, n0, _CWLO,
|
|
641
|
-
0,
|
|
642
|
-
[_E, _LGN, _LSN],
|
|
643
|
-
[2, 0, 0]
|
|
644
|
-
];
|
|
645
|
-
var ConcurrentModificationException$ = [-3, n0, _CME,
|
|
646
|
-
{ [_e]: _c },
|
|
647
|
-
[_m],
|
|
648
|
-
[0]
|
|
649
|
-
];
|
|
650
|
-
schema.TypeRegistry.for(n0).registerError(ConcurrentModificationException$, ConcurrentModificationException);
|
|
651
|
-
var CopyCommand$ = [3, n0, _CCo,
|
|
652
|
-
0,
|
|
653
|
-
[_DTN, _DTC, _CO],
|
|
654
|
-
[0, 0, 0], 1
|
|
655
|
-
];
|
|
656
|
-
var CreateDeliveryStreamInput$ = [3, n0, _CDSI,
|
|
657
|
-
0,
|
|
658
|
-
[_DSN, _DST, _DPSC, _KSSC, _DSECI, _SDC, _ESDC, _RDC, _EDC, _ADC, _SDCp, _HEDC, _T, _AOSSDC, _MSKSC, _SDCn, _IDC, _DSC],
|
|
659
|
-
[0, 0, () => DirectPutSourceConfiguration$, () => KinesisStreamSourceConfiguration$, () => DeliveryStreamEncryptionConfigurationInput$, () => S3DestinationConfiguration$, () => ExtendedS3DestinationConfiguration$, [() => RedshiftDestinationConfiguration$, 0], () => ElasticsearchDestinationConfiguration$, () => AmazonopensearchserviceDestinationConfiguration$, () => SplunkDestinationConfiguration$, [() => HttpEndpointDestinationConfiguration$, 0], () => TagDeliveryStreamInputTagList, () => AmazonOpenSearchServerlessDestinationConfiguration$, () => MSKSourceConfiguration$, [() => SnowflakeDestinationConfiguration$, 0], () => IcebergDestinationConfiguration$, () => DatabaseSourceConfiguration$], 1
|
|
660
|
-
];
|
|
661
|
-
var CreateDeliveryStreamOutput$ = [3, n0, _CDSO,
|
|
662
|
-
0,
|
|
663
|
-
[_DSARN],
|
|
664
|
-
[0]
|
|
665
|
-
];
|
|
666
|
-
var DatabaseColumnList$ = [3, n0, _DCL,
|
|
667
|
-
0,
|
|
668
|
-
[_I, _Ex],
|
|
669
|
-
[64 | 0, 64 | 0]
|
|
670
|
-
];
|
|
671
|
-
var DatabaseList$ = [3, n0, _DL,
|
|
672
|
-
0,
|
|
673
|
-
[_I, _Ex],
|
|
674
|
-
[64 | 0, 64 | 0]
|
|
675
|
-
];
|
|
676
|
-
var DatabaseSnapshotInfo$ = [3, n0, _DSI,
|
|
677
|
-
0,
|
|
678
|
-
[_Id, _Ta, _RT, _RB, _S, _FD],
|
|
679
|
-
[0, 0, 4, 0, 0, () => FailureDescription$], 5
|
|
680
|
-
];
|
|
681
|
-
var DatabaseSourceAuthenticationConfiguration$ = [3, n0, _DSAC,
|
|
682
|
-
0,
|
|
683
|
-
[_SMC],
|
|
684
|
-
[() => SecretsManagerConfiguration$], 1
|
|
685
|
-
];
|
|
686
|
-
var DatabaseSourceConfiguration$ = [3, n0, _DSC,
|
|
687
|
-
0,
|
|
688
|
-
[_Ty, _En, _Po, _D, _Tab, _SWT, _DSAC, _DSVPCC, _SSLM, _Co, _SK],
|
|
689
|
-
[0, 0, 1, () => DatabaseList$, () => DatabaseTableList$, 0, () => DatabaseSourceAuthenticationConfiguration$, () => DatabaseSourceVPCConfiguration$, 0, () => DatabaseColumnList$, 64 | 0], 8
|
|
690
|
-
];
|
|
691
|
-
var DatabaseSourceDescription$ = [3, n0, _DSD,
|
|
692
|
-
0,
|
|
693
|
-
[_Ty, _En, _Po, _SSLM, _D, _Tab, _Co, _SK, _SWT, _SI, _DSAC, _DSVPCC],
|
|
694
|
-
[0, 0, 1, 0, () => DatabaseList$, () => DatabaseTableList$, () => DatabaseColumnList$, 64 | 0, 0, () => DatabaseSnapshotInfoList, () => DatabaseSourceAuthenticationConfiguration$, () => DatabaseSourceVPCConfiguration$]
|
|
695
|
-
];
|
|
696
|
-
var DatabaseSourceVPCConfiguration$ = [3, n0, _DSVPCC,
|
|
697
|
-
0,
|
|
698
|
-
[_VESN],
|
|
699
|
-
[0], 1
|
|
700
|
-
];
|
|
701
|
-
var DatabaseTableList$ = [3, n0, _DTL,
|
|
702
|
-
0,
|
|
703
|
-
[_I, _Ex],
|
|
704
|
-
[64 | 0, 64 | 0]
|
|
705
|
-
];
|
|
706
|
-
var DataFormatConversionConfiguration$ = [3, n0, _DFCC,
|
|
707
|
-
0,
|
|
708
|
-
[_SCc, _IFC, _OFC, _E],
|
|
709
|
-
[() => SchemaConfiguration$, () => InputFormatConfiguration$, () => OutputFormatConfiguration$, 2]
|
|
710
|
-
];
|
|
711
|
-
var DeleteDeliveryStreamInput$ = [3, n0, _DDSI,
|
|
712
|
-
0,
|
|
713
|
-
[_DSN, _AFD],
|
|
714
|
-
[0, 2], 1
|
|
715
|
-
];
|
|
716
|
-
var DeleteDeliveryStreamOutput$ = [3, n0, _DDSO,
|
|
717
|
-
0,
|
|
718
|
-
[],
|
|
719
|
-
[]
|
|
720
|
-
];
|
|
721
|
-
var DeliveryStreamDescription$ = [3, n0, _DSDe,
|
|
722
|
-
0,
|
|
723
|
-
[_DSN, _DSARN, _DSS, _DST, _VI, _De, _HMD, _FD, _DSEC, _CT, _LUT, _So],
|
|
724
|
-
[0, 0, 0, 0, 0, [() => DestinationDescriptionList, 0], 2, () => FailureDescription$, () => DeliveryStreamEncryptionConfiguration$, 4, 4, () => SourceDescription$], 7
|
|
725
|
-
];
|
|
726
|
-
var DeliveryStreamEncryptionConfiguration$ = [3, n0, _DSEC,
|
|
727
|
-
0,
|
|
728
|
-
[_KARN, _KT, _S, _FD],
|
|
729
|
-
[0, 0, 0, () => FailureDescription$]
|
|
730
|
-
];
|
|
731
|
-
var DeliveryStreamEncryptionConfigurationInput$ = [3, n0, _DSECI,
|
|
732
|
-
0,
|
|
733
|
-
[_KT, _KARN],
|
|
734
|
-
[0, 0], 1
|
|
735
|
-
];
|
|
736
|
-
var DescribeDeliveryStreamInput$ = [3, n0, _DDSIe,
|
|
737
|
-
0,
|
|
738
|
-
[_DSN, _L, _ESDI],
|
|
739
|
-
[0, 1, 0], 1
|
|
740
|
-
];
|
|
741
|
-
var DescribeDeliveryStreamOutput$ = [3, n0, _DDSOe,
|
|
742
|
-
0,
|
|
743
|
-
[_DSDe],
|
|
744
|
-
[[() => DeliveryStreamDescription$, 0]], 1
|
|
745
|
-
];
|
|
746
|
-
var Deserializer$ = [3, n0, _Des,
|
|
747
|
-
0,
|
|
748
|
-
[_OXJSD, _HJSD],
|
|
749
|
-
[() => OpenXJsonSerDe$, () => HiveJsonSerDe$]
|
|
750
|
-
];
|
|
751
|
-
var DestinationDescription$ = [3, n0, _DD,
|
|
752
|
-
0,
|
|
753
|
-
[_DI, _SDD, _ESDD, _RDD, _EDD, _ADD, _SDDp, _HEDD, _SDDn, _AOSSDD, _IDD],
|
|
754
|
-
[0, () => S3DestinationDescription$, () => ExtendedS3DestinationDescription$, [() => RedshiftDestinationDescription$, 0], () => ElasticsearchDestinationDescription$, () => AmazonopensearchserviceDestinationDescription$, () => SplunkDestinationDescription$, [() => HttpEndpointDestinationDescription$, 0], [() => SnowflakeDestinationDescription$, 0], () => AmazonOpenSearchServerlessDestinationDescription$, () => IcebergDestinationDescription$], 1
|
|
755
|
-
];
|
|
756
|
-
var DestinationTableConfiguration$ = [3, n0, _DTCe,
|
|
757
|
-
0,
|
|
758
|
-
[_DTNe, _DDN, _UK, _PS, _SEOP],
|
|
759
|
-
[0, 0, 64 | 0, () => PartitionSpec$, 0], 2
|
|
760
|
-
];
|
|
761
|
-
var DirectPutSourceConfiguration$ = [3, n0, _DPSC,
|
|
762
|
-
0,
|
|
763
|
-
[_THIMB],
|
|
764
|
-
[1], 1
|
|
765
|
-
];
|
|
766
|
-
var DirectPutSourceDescription$ = [3, n0, _DPSD,
|
|
767
|
-
0,
|
|
768
|
-
[_THIMB],
|
|
769
|
-
[1]
|
|
770
|
-
];
|
|
771
|
-
var DocumentIdOptions$ = [3, n0, _DIO,
|
|
772
|
-
0,
|
|
773
|
-
[_DDIF],
|
|
774
|
-
[0], 1
|
|
775
|
-
];
|
|
776
|
-
var DynamicPartitioningConfiguration$ = [3, n0, _DPC,
|
|
777
|
-
0,
|
|
778
|
-
[_RO, _E],
|
|
779
|
-
[() => RetryOptions$, 2]
|
|
780
|
-
];
|
|
781
|
-
var ElasticsearchBufferingHints$ = [3, n0, _EBH,
|
|
782
|
-
0,
|
|
783
|
-
[_IIS, _SIMB],
|
|
784
|
-
[1, 1]
|
|
785
|
-
];
|
|
786
|
-
var ElasticsearchDestinationConfiguration$ = [3, n0, _EDC,
|
|
787
|
-
0,
|
|
788
|
-
[_RARN, _IN, _SC, _DARN, _CEl, _TN, _IRP, _BH, _RO, _SBM, _PC, _CWLO, _VC, _DIO],
|
|
789
|
-
[0, 0, () => S3DestinationConfiguration$, 0, 0, 0, 0, () => ElasticsearchBufferingHints$, () => ElasticsearchRetryOptions$, 0, () => ProcessingConfiguration$, () => CloudWatchLoggingOptions$, () => VpcConfiguration$, () => DocumentIdOptions$], 3
|
|
790
|
-
];
|
|
791
|
-
var ElasticsearchDestinationDescription$ = [3, n0, _EDD,
|
|
792
|
-
0,
|
|
793
|
-
[_RARN, _DARN, _CEl, _IN, _TN, _IRP, _BH, _RO, _SBM, _SDD, _PC, _CWLO, _VCD, _DIO],
|
|
794
|
-
[0, 0, 0, 0, 0, 0, () => ElasticsearchBufferingHints$, () => ElasticsearchRetryOptions$, 0, () => S3DestinationDescription$, () => ProcessingConfiguration$, () => CloudWatchLoggingOptions$, () => VpcConfigurationDescription$, () => DocumentIdOptions$]
|
|
795
|
-
];
|
|
796
|
-
var ElasticsearchDestinationUpdate$ = [3, n0, _EDU,
|
|
797
|
-
0,
|
|
798
|
-
[_RARN, _DARN, _CEl, _IN, _TN, _IRP, _BH, _RO, _SUp, _PC, _CWLO, _DIO],
|
|
799
|
-
[0, 0, 0, 0, 0, 0, () => ElasticsearchBufferingHints$, () => ElasticsearchRetryOptions$, () => S3DestinationUpdate$, () => ProcessingConfiguration$, () => CloudWatchLoggingOptions$, () => DocumentIdOptions$]
|
|
800
|
-
];
|
|
801
|
-
var ElasticsearchRetryOptions$ = [3, n0, _ERO,
|
|
802
|
-
0,
|
|
803
|
-
[_DIS],
|
|
804
|
-
[1]
|
|
805
|
-
];
|
|
806
|
-
var EncryptionConfiguration$ = [3, n0, _EC,
|
|
807
|
-
0,
|
|
808
|
-
[_NEC, _KMSEC],
|
|
809
|
-
[0, () => KMSEncryptionConfig$]
|
|
810
|
-
];
|
|
811
|
-
var ExtendedS3DestinationConfiguration$ = [3, n0, _ESDC,
|
|
812
|
-
0,
|
|
813
|
-
[_RARN, _BARN, _Pr, _EOP, _BH, _CF, _EC, _CWLO, _PC, _SBM, _SBC, _DFCC, _DPC, _FE, _CTZ],
|
|
814
|
-
[0, 0, 0, 0, () => BufferingHints$, 0, () => EncryptionConfiguration$, () => CloudWatchLoggingOptions$, () => ProcessingConfiguration$, 0, () => S3DestinationConfiguration$, () => DataFormatConversionConfiguration$, () => DynamicPartitioningConfiguration$, 0, 0], 2
|
|
815
|
-
];
|
|
816
|
-
var ExtendedS3DestinationDescription$ = [3, n0, _ESDD,
|
|
817
|
-
0,
|
|
818
|
-
[_RARN, _BARN, _BH, _CF, _EC, _Pr, _EOP, _CWLO, _PC, _SBM, _SBD, _DFCC, _DPC, _FE, _CTZ],
|
|
819
|
-
[0, 0, () => BufferingHints$, 0, () => EncryptionConfiguration$, 0, 0, () => CloudWatchLoggingOptions$, () => ProcessingConfiguration$, 0, () => S3DestinationDescription$, () => DataFormatConversionConfiguration$, () => DynamicPartitioningConfiguration$, 0, 0], 5
|
|
820
|
-
];
|
|
821
|
-
var ExtendedS3DestinationUpdate$ = [3, n0, _ESDU,
|
|
822
|
-
0,
|
|
823
|
-
[_RARN, _BARN, _Pr, _EOP, _BH, _CF, _EC, _CWLO, _PC, _SBM, _SBU, _DFCC, _DPC, _FE, _CTZ],
|
|
824
|
-
[0, 0, 0, 0, () => BufferingHints$, 0, () => EncryptionConfiguration$, () => CloudWatchLoggingOptions$, () => ProcessingConfiguration$, 0, () => S3DestinationUpdate$, () => DataFormatConversionConfiguration$, () => DynamicPartitioningConfiguration$, 0, 0]
|
|
825
|
-
];
|
|
826
|
-
var FailureDescription$ = [3, n0, _FD,
|
|
827
|
-
0,
|
|
828
|
-
[_Ty, _Det],
|
|
829
|
-
[0, 0], 2
|
|
830
|
-
];
|
|
831
|
-
var HiveJsonSerDe$ = [3, n0, _HJSD,
|
|
832
|
-
0,
|
|
833
|
-
[_TF],
|
|
834
|
-
[64 | 0]
|
|
835
|
-
];
|
|
836
|
-
var HttpEndpointBufferingHints$ = [3, n0, _HEBH,
|
|
837
|
-
0,
|
|
838
|
-
[_SIMB, _IIS],
|
|
839
|
-
[1, 1]
|
|
840
|
-
];
|
|
841
|
-
var HttpEndpointCommonAttribute$ = [3, n0, _HECA,
|
|
842
|
-
0,
|
|
843
|
-
[_AN, _AV],
|
|
844
|
-
[[() => HttpEndpointAttributeName, 0], [() => HttpEndpointAttributeValue, 0]], 2
|
|
845
|
-
];
|
|
846
|
-
var HttpEndpointConfiguration$ = [3, n0, _HEC,
|
|
847
|
-
0,
|
|
848
|
-
[_Ur, _N, _AK],
|
|
849
|
-
[[() => HttpEndpointUrl, 0], 0, [() => HttpEndpointAccessKey, 0]], 1
|
|
850
|
-
];
|
|
851
|
-
var HttpEndpointDescription$ = [3, n0, _HED,
|
|
852
|
-
0,
|
|
853
|
-
[_Ur, _N],
|
|
854
|
-
[[() => HttpEndpointUrl, 0], 0]
|
|
855
|
-
];
|
|
856
|
-
var HttpEndpointDestinationConfiguration$ = [3, n0, _HEDC,
|
|
857
|
-
0,
|
|
858
|
-
[_ECn, _SC, _BH, _CWLO, _RC, _PC, _RARN, _RO, _SBM, _SMC],
|
|
859
|
-
[[() => HttpEndpointConfiguration$, 0], () => S3DestinationConfiguration$, () => HttpEndpointBufferingHints$, () => CloudWatchLoggingOptions$, [() => HttpEndpointRequestConfiguration$, 0], () => ProcessingConfiguration$, 0, () => HttpEndpointRetryOptions$, 0, () => SecretsManagerConfiguration$], 2
|
|
860
|
-
];
|
|
861
|
-
var HttpEndpointDestinationDescription$ = [3, n0, _HEDD,
|
|
862
|
-
0,
|
|
863
|
-
[_ECn, _BH, _CWLO, _RC, _PC, _RARN, _RO, _SBM, _SDD, _SMC],
|
|
864
|
-
[[() => HttpEndpointDescription$, 0], () => HttpEndpointBufferingHints$, () => CloudWatchLoggingOptions$, [() => HttpEndpointRequestConfiguration$, 0], () => ProcessingConfiguration$, 0, () => HttpEndpointRetryOptions$, 0, () => S3DestinationDescription$, () => SecretsManagerConfiguration$]
|
|
865
|
-
];
|
|
866
|
-
var HttpEndpointDestinationUpdate$ = [3, n0, _HEDU,
|
|
867
|
-
0,
|
|
868
|
-
[_ECn, _BH, _CWLO, _RC, _PC, _RARN, _RO, _SBM, _SUp, _SMC],
|
|
869
|
-
[[() => HttpEndpointConfiguration$, 0], () => HttpEndpointBufferingHints$, () => CloudWatchLoggingOptions$, [() => HttpEndpointRequestConfiguration$, 0], () => ProcessingConfiguration$, 0, () => HttpEndpointRetryOptions$, 0, () => S3DestinationUpdate$, () => SecretsManagerConfiguration$]
|
|
870
|
-
];
|
|
871
|
-
var HttpEndpointRequestConfiguration$ = [3, n0, _HERC,
|
|
872
|
-
0,
|
|
873
|
-
[_CEo, _CA],
|
|
874
|
-
[0, [() => HttpEndpointCommonAttributesList, 0]]
|
|
875
|
-
];
|
|
876
|
-
var HttpEndpointRetryOptions$ = [3, n0, _HERO,
|
|
877
|
-
0,
|
|
878
|
-
[_DIS],
|
|
879
|
-
[1]
|
|
880
|
-
];
|
|
881
|
-
var IcebergDestinationConfiguration$ = [3, n0, _IDC,
|
|
882
|
-
0,
|
|
883
|
-
[_RARN, _CC, _SC, _DTCL, _SEC, _TCC, _BH, _CWLO, _PC, _SBM, _RO, _AO],
|
|
884
|
-
[0, () => CatalogConfiguration$, () => S3DestinationConfiguration$, () => DestinationTableConfigurationList, () => SchemaEvolutionConfiguration$, () => TableCreationConfiguration$, () => BufferingHints$, () => CloudWatchLoggingOptions$, () => ProcessingConfiguration$, 0, () => RetryOptions$, 2], 3
|
|
885
|
-
];
|
|
886
|
-
var IcebergDestinationDescription$ = [3, n0, _IDD,
|
|
887
|
-
0,
|
|
888
|
-
[_DTCL, _SEC, _TCC, _BH, _CWLO, _PC, _SBM, _RO, _RARN, _AO, _CC, _SDD],
|
|
889
|
-
[() => DestinationTableConfigurationList, () => SchemaEvolutionConfiguration$, () => TableCreationConfiguration$, () => BufferingHints$, () => CloudWatchLoggingOptions$, () => ProcessingConfiguration$, 0, () => RetryOptions$, 0, 2, () => CatalogConfiguration$, () => S3DestinationDescription$]
|
|
890
|
-
];
|
|
891
|
-
var IcebergDestinationUpdate$ = [3, n0, _IDU,
|
|
892
|
-
0,
|
|
893
|
-
[_DTCL, _SEC, _TCC, _BH, _CWLO, _PC, _SBM, _RO, _RARN, _AO, _CC, _SC],
|
|
894
|
-
[() => DestinationTableConfigurationList, () => SchemaEvolutionConfiguration$, () => TableCreationConfiguration$, () => BufferingHints$, () => CloudWatchLoggingOptions$, () => ProcessingConfiguration$, 0, () => RetryOptions$, 0, 2, () => CatalogConfiguration$, () => S3DestinationConfiguration$]
|
|
895
|
-
];
|
|
896
|
-
var InputFormatConfiguration$ = [3, n0, _IFC,
|
|
897
|
-
0,
|
|
898
|
-
[_Des],
|
|
899
|
-
[() => Deserializer$]
|
|
900
|
-
];
|
|
901
|
-
var InvalidArgumentException$ = [-3, n0, _IAE,
|
|
902
|
-
{ [_e]: _c },
|
|
903
|
-
[_m],
|
|
904
|
-
[0]
|
|
905
|
-
];
|
|
906
|
-
schema.TypeRegistry.for(n0).registerError(InvalidArgumentException$, InvalidArgumentException);
|
|
907
|
-
var InvalidKMSResourceException$ = [-3, n0, _IKMSRE,
|
|
908
|
-
{ [_e]: _c },
|
|
909
|
-
[_co, _m],
|
|
910
|
-
[0, 0]
|
|
911
|
-
];
|
|
912
|
-
schema.TypeRegistry.for(n0).registerError(InvalidKMSResourceException$, InvalidKMSResourceException);
|
|
913
|
-
var InvalidSourceException$ = [-3, n0, _ISE,
|
|
914
|
-
{ [_e]: _c },
|
|
915
|
-
[_co, _m],
|
|
916
|
-
[0, 0]
|
|
917
|
-
];
|
|
918
|
-
schema.TypeRegistry.for(n0).registerError(InvalidSourceException$, InvalidSourceException);
|
|
919
|
-
var KinesisStreamSourceConfiguration$ = [3, n0, _KSSC,
|
|
920
|
-
0,
|
|
921
|
-
[_KSARN, _RARN],
|
|
922
|
-
[0, 0], 2
|
|
923
|
-
];
|
|
924
|
-
var KinesisStreamSourceDescription$ = [3, n0, _KSSD,
|
|
925
|
-
0,
|
|
926
|
-
[_KSARN, _RARN, _DSTe],
|
|
927
|
-
[0, 0, 4]
|
|
928
|
-
];
|
|
929
|
-
var KMSEncryptionConfig$ = [3, n0, _KMSEC,
|
|
930
|
-
0,
|
|
931
|
-
[_AWSKMSKARN],
|
|
932
|
-
[0], 1
|
|
933
|
-
];
|
|
934
|
-
var LimitExceededException$ = [-3, n0, _LEE,
|
|
935
|
-
{ [_e]: _c },
|
|
936
|
-
[_m],
|
|
937
|
-
[0]
|
|
938
|
-
];
|
|
939
|
-
schema.TypeRegistry.for(n0).registerError(LimitExceededException$, LimitExceededException);
|
|
940
|
-
var ListDeliveryStreamsInput$ = [3, n0, _LDSI,
|
|
941
|
-
0,
|
|
942
|
-
[_L, _DST, _ESDSN],
|
|
943
|
-
[1, 0, 0]
|
|
944
|
-
];
|
|
945
|
-
var ListDeliveryStreamsOutput$ = [3, n0, _LDSO,
|
|
946
|
-
0,
|
|
947
|
-
[_DSNe, _HMDS],
|
|
948
|
-
[64 | 0, 2], 2
|
|
949
|
-
];
|
|
950
|
-
var ListTagsForDeliveryStreamInput$ = [3, n0, _LTFDSI,
|
|
951
|
-
0,
|
|
952
|
-
[_DSN, _ESTK, _L],
|
|
953
|
-
[0, 0, 1], 1
|
|
954
|
-
];
|
|
955
|
-
var ListTagsForDeliveryStreamOutput$ = [3, n0, _LTFDSO,
|
|
956
|
-
0,
|
|
957
|
-
[_T, _HMT],
|
|
958
|
-
[() => ListTagsForDeliveryStreamOutputTagList, 2], 2
|
|
959
|
-
];
|
|
960
|
-
var MSKSourceConfiguration$ = [3, n0, _MSKSC,
|
|
961
|
-
0,
|
|
962
|
-
[_MSKCARN, _TNo, _AC, _RFT],
|
|
963
|
-
[0, 0, () => AuthenticationConfiguration$, 4], 3
|
|
964
|
-
];
|
|
965
|
-
var MSKSourceDescription$ = [3, n0, _MSKSD,
|
|
966
|
-
0,
|
|
967
|
-
[_MSKCARN, _TNo, _AC, _DSTe, _RFT],
|
|
968
|
-
[0, 0, () => AuthenticationConfiguration$, 4, 4]
|
|
969
|
-
];
|
|
970
|
-
var OpenXJsonSerDe$ = [3, n0, _OXJSD,
|
|
971
|
-
0,
|
|
972
|
-
[_CDIJKTU, _CI, _CTJKM],
|
|
973
|
-
[2, 2, 128 | 0]
|
|
974
|
-
];
|
|
975
|
-
var OrcSerDe$ = [3, n0, _OSD,
|
|
976
|
-
0,
|
|
977
|
-
[_SSB, _BSB, _RIS, _EP, _PT, _Com, _BFC, _BFFPP, _DKT, _FV],
|
|
978
|
-
[1, 1, 1, 2, 1, 0, 64 | 0, 1, 1, 0]
|
|
979
|
-
];
|
|
980
|
-
var OutputFormatConfiguration$ = [3, n0, _OFC,
|
|
981
|
-
0,
|
|
982
|
-
[_Se],
|
|
983
|
-
[() => Serializer$]
|
|
984
|
-
];
|
|
985
|
-
var ParquetSerDe$ = [3, n0, _PSD,
|
|
986
|
-
0,
|
|
987
|
-
[_BSB, _PSB, _Com, _EDCn, _MPB, _WV],
|
|
988
|
-
[1, 1, 0, 2, 1, 0]
|
|
989
|
-
];
|
|
990
|
-
var PartitionField$ = [3, n0, _PF,
|
|
991
|
-
0,
|
|
992
|
-
[_SN],
|
|
993
|
-
[0], 1
|
|
994
|
-
];
|
|
995
|
-
var PartitionSpec$ = [3, n0, _PS,
|
|
996
|
-
0,
|
|
997
|
-
[_Ide],
|
|
998
|
-
[() => PartitionFields]
|
|
999
|
-
];
|
|
1000
|
-
var ProcessingConfiguration$ = [3, n0, _PC,
|
|
1001
|
-
0,
|
|
1002
|
-
[_E, _Pro],
|
|
1003
|
-
[2, () => ProcessorList]
|
|
1004
|
-
];
|
|
1005
|
-
var Processor$ = [3, n0, _Proc,
|
|
1006
|
-
0,
|
|
1007
|
-
[_Ty, _Pa],
|
|
1008
|
-
[0, () => ProcessorParameterList], 1
|
|
1009
|
-
];
|
|
1010
|
-
var ProcessorParameter$ = [3, n0, _PP,
|
|
1011
|
-
0,
|
|
1012
|
-
[_PN, _PV],
|
|
1013
|
-
[0, 0], 2
|
|
1014
|
-
];
|
|
1015
|
-
var PutRecordBatchInput$ = [3, n0, _PRBI,
|
|
1016
|
-
0,
|
|
1017
|
-
[_DSN, _R],
|
|
1018
|
-
[0, () => PutRecordBatchRequestEntryList], 2
|
|
1019
|
-
];
|
|
1020
|
-
var PutRecordBatchOutput$ = [3, n0, _PRBO,
|
|
1021
|
-
0,
|
|
1022
|
-
[_FPC, _RR, _Enc],
|
|
1023
|
-
[1, () => PutRecordBatchResponseEntryList, 2], 2
|
|
1024
|
-
];
|
|
1025
|
-
var PutRecordBatchResponseEntry$ = [3, n0, _PRBRE,
|
|
1026
|
-
0,
|
|
1027
|
-
[_RI, _ECr, _EM],
|
|
1028
|
-
[0, 0, 0]
|
|
1029
|
-
];
|
|
1030
|
-
var PutRecordInput$ = [3, n0, _PRI,
|
|
1031
|
-
0,
|
|
1032
|
-
[_DSN, _Re],
|
|
1033
|
-
[0, () => _Record$], 2
|
|
1034
|
-
];
|
|
1035
|
-
var PutRecordOutput$ = [3, n0, _PRO,
|
|
1036
|
-
0,
|
|
1037
|
-
[_RI, _Enc],
|
|
1038
|
-
[0, 2], 1
|
|
1039
|
-
];
|
|
1040
|
-
var _Record$ = [3, n0, _Re,
|
|
1041
|
-
0,
|
|
1042
|
-
[_Da],
|
|
1043
|
-
[21], 1
|
|
1044
|
-
];
|
|
1045
|
-
var RedshiftDestinationConfiguration$ = [3, n0, _RDC,
|
|
1046
|
-
0,
|
|
1047
|
-
[_RARN, _CJDBCURL, _CCo, _SC, _U, _P, _RO, _PC, _SBM, _SBC, _CWLO, _SMC],
|
|
1048
|
-
[0, 0, () => CopyCommand$, () => S3DestinationConfiguration$, [() => Username, 0], [() => Password, 0], () => RedshiftRetryOptions$, () => ProcessingConfiguration$, 0, () => S3DestinationConfiguration$, () => CloudWatchLoggingOptions$, () => SecretsManagerConfiguration$], 4
|
|
1049
|
-
];
|
|
1050
|
-
var RedshiftDestinationDescription$ = [3, n0, _RDD,
|
|
1051
|
-
0,
|
|
1052
|
-
[_RARN, _CJDBCURL, _CCo, _SDD, _U, _RO, _PC, _SBM, _SBD, _CWLO, _SMC],
|
|
1053
|
-
[0, 0, () => CopyCommand$, () => S3DestinationDescription$, [() => Username, 0], () => RedshiftRetryOptions$, () => ProcessingConfiguration$, 0, () => S3DestinationDescription$, () => CloudWatchLoggingOptions$, () => SecretsManagerConfiguration$], 4
|
|
1054
|
-
];
|
|
1055
|
-
var RedshiftDestinationUpdate$ = [3, n0, _RDU,
|
|
1056
|
-
0,
|
|
1057
|
-
[_RARN, _CJDBCURL, _CCo, _U, _P, _RO, _SUp, _PC, _SBM, _SBU, _CWLO, _SMC],
|
|
1058
|
-
[0, 0, () => CopyCommand$, [() => Username, 0], [() => Password, 0], () => RedshiftRetryOptions$, () => S3DestinationUpdate$, () => ProcessingConfiguration$, 0, () => S3DestinationUpdate$, () => CloudWatchLoggingOptions$, () => SecretsManagerConfiguration$]
|
|
1059
|
-
];
|
|
1060
|
-
var RedshiftRetryOptions$ = [3, n0, _RRO,
|
|
1061
|
-
0,
|
|
1062
|
-
[_DIS],
|
|
1063
|
-
[1]
|
|
1064
|
-
];
|
|
1065
|
-
var ResourceInUseException$ = [-3, n0, _RIUE,
|
|
1066
|
-
{ [_e]: _c },
|
|
1067
|
-
[_m],
|
|
1068
|
-
[0]
|
|
1069
|
-
];
|
|
1070
|
-
schema.TypeRegistry.for(n0).registerError(ResourceInUseException$, ResourceInUseException);
|
|
1071
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
1072
|
-
{ [_e]: _c },
|
|
1073
|
-
[_m],
|
|
1074
|
-
[0]
|
|
1075
|
-
];
|
|
1076
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
1077
|
-
var RetryOptions$ = [3, n0, _RO,
|
|
1078
|
-
0,
|
|
1079
|
-
[_DIS],
|
|
1080
|
-
[1]
|
|
1081
|
-
];
|
|
1082
|
-
var S3DestinationConfiguration$ = [3, n0, _SDC,
|
|
1083
|
-
0,
|
|
1084
|
-
[_RARN, _BARN, _Pr, _EOP, _BH, _CF, _EC, _CWLO],
|
|
1085
|
-
[0, 0, 0, 0, () => BufferingHints$, 0, () => EncryptionConfiguration$, () => CloudWatchLoggingOptions$], 2
|
|
1086
|
-
];
|
|
1087
|
-
var S3DestinationDescription$ = [3, n0, _SDD,
|
|
1088
|
-
0,
|
|
1089
|
-
[_RARN, _BARN, _BH, _CF, _EC, _Pr, _EOP, _CWLO],
|
|
1090
|
-
[0, 0, () => BufferingHints$, 0, () => EncryptionConfiguration$, 0, 0, () => CloudWatchLoggingOptions$], 5
|
|
1091
|
-
];
|
|
1092
|
-
var S3DestinationUpdate$ = [3, n0, _SDU,
|
|
1093
|
-
0,
|
|
1094
|
-
[_RARN, _BARN, _Pr, _EOP, _BH, _CF, _EC, _CWLO],
|
|
1095
|
-
[0, 0, 0, 0, () => BufferingHints$, 0, () => EncryptionConfiguration$, () => CloudWatchLoggingOptions$]
|
|
1096
|
-
];
|
|
1097
|
-
var SchemaConfiguration$ = [3, n0, _SCc,
|
|
1098
|
-
0,
|
|
1099
|
-
[_RARN, _CIa, _DN, _TNa, _Reg, _VI],
|
|
1100
|
-
[0, 0, 0, 0, 0, 0]
|
|
1101
|
-
];
|
|
1102
|
-
var SchemaEvolutionConfiguration$ = [3, n0, _SEC,
|
|
1103
|
-
0,
|
|
1104
|
-
[_E],
|
|
1105
|
-
[2], 1
|
|
1106
|
-
];
|
|
1107
|
-
var SecretsManagerConfiguration$ = [3, n0, _SMC,
|
|
1108
|
-
0,
|
|
1109
|
-
[_E, _SARN, _RARN],
|
|
1110
|
-
[2, 0, 0], 1
|
|
1111
|
-
];
|
|
1112
|
-
var Serializer$ = [3, n0, _Se,
|
|
1113
|
-
0,
|
|
1114
|
-
[_PSD, _OSD],
|
|
1115
|
-
[() => ParquetSerDe$, () => OrcSerDe$]
|
|
1116
|
-
];
|
|
1117
|
-
var ServiceUnavailableException$ = [-3, n0, _SUE,
|
|
1118
|
-
{ [_e]: _s, [_hE]: 503 },
|
|
1119
|
-
[_m],
|
|
1120
|
-
[0]
|
|
1121
|
-
];
|
|
1122
|
-
schema.TypeRegistry.for(n0).registerError(ServiceUnavailableException$, ServiceUnavailableException);
|
|
1123
|
-
var SnowflakeBufferingHints$ = [3, n0, _SBH,
|
|
1124
|
-
0,
|
|
1125
|
-
[_SIMB, _IIS],
|
|
1126
|
-
[1, 1]
|
|
1127
|
-
];
|
|
1128
|
-
var SnowflakeDestinationConfiguration$ = [3, n0, _SDCn,
|
|
1129
|
-
0,
|
|
1130
|
-
[_AU, _Dat, _Sc, _Ta, _RARN, _SC, _PK, _KP, _Us, _SRC, _DLO, _MDCN, _CCN, _SVC, _CWLO, _PC, _RO, _SBM, _SMC, _BH],
|
|
1131
|
-
[[() => SnowflakeAccountUrl, 0], [() => SnowflakeDatabase, 0], [() => SnowflakeSchema, 0], [() => SnowflakeTable, 0], 0, () => S3DestinationConfiguration$, [() => SnowflakePrivateKey, 0], [() => SnowflakeKeyPassphrase, 0], [() => SnowflakeUser, 0], [() => SnowflakeRoleConfiguration$, 0], 0, [() => SnowflakeMetaDataColumnName, 0], [() => SnowflakeContentColumnName, 0], [() => SnowflakeVpcConfiguration$, 0], () => CloudWatchLoggingOptions$, () => ProcessingConfiguration$, () => SnowflakeRetryOptions$, 0, () => SecretsManagerConfiguration$, () => SnowflakeBufferingHints$], 6
|
|
1132
|
-
];
|
|
1133
|
-
var SnowflakeDestinationDescription$ = [3, n0, _SDDn,
|
|
1134
|
-
0,
|
|
1135
|
-
[_AU, _Us, _Dat, _Sc, _Ta, _SRC, _DLO, _MDCN, _CCN, _SVC, _CWLO, _PC, _RARN, _RO, _SBM, _SDD, _SMC, _BH],
|
|
1136
|
-
[[() => SnowflakeAccountUrl, 0], [() => SnowflakeUser, 0], [() => SnowflakeDatabase, 0], [() => SnowflakeSchema, 0], [() => SnowflakeTable, 0], [() => SnowflakeRoleConfiguration$, 0], 0, [() => SnowflakeMetaDataColumnName, 0], [() => SnowflakeContentColumnName, 0], [() => SnowflakeVpcConfiguration$, 0], () => CloudWatchLoggingOptions$, () => ProcessingConfiguration$, 0, () => SnowflakeRetryOptions$, 0, () => S3DestinationDescription$, () => SecretsManagerConfiguration$, () => SnowflakeBufferingHints$]
|
|
1137
|
-
];
|
|
1138
|
-
var SnowflakeDestinationUpdate$ = [3, n0, _SDUn,
|
|
1139
|
-
0,
|
|
1140
|
-
[_AU, _PK, _KP, _Us, _Dat, _Sc, _Ta, _SRC, _DLO, _MDCN, _CCN, _CWLO, _PC, _RARN, _RO, _SBM, _SUp, _SMC, _BH],
|
|
1141
|
-
[[() => SnowflakeAccountUrl, 0], [() => SnowflakePrivateKey, 0], [() => SnowflakeKeyPassphrase, 0], [() => SnowflakeUser, 0], [() => SnowflakeDatabase, 0], [() => SnowflakeSchema, 0], [() => SnowflakeTable, 0], [() => SnowflakeRoleConfiguration$, 0], 0, [() => SnowflakeMetaDataColumnName, 0], [() => SnowflakeContentColumnName, 0], () => CloudWatchLoggingOptions$, () => ProcessingConfiguration$, 0, () => SnowflakeRetryOptions$, 0, () => S3DestinationUpdate$, () => SecretsManagerConfiguration$, () => SnowflakeBufferingHints$]
|
|
1142
|
-
];
|
|
1143
|
-
var SnowflakeRetryOptions$ = [3, n0, _SRO,
|
|
1144
|
-
0,
|
|
1145
|
-
[_DIS],
|
|
1146
|
-
[1]
|
|
1147
|
-
];
|
|
1148
|
-
var SnowflakeRoleConfiguration$ = [3, n0, _SRC,
|
|
1149
|
-
0,
|
|
1150
|
-
[_E, _SR],
|
|
1151
|
-
[2, [() => SnowflakeRole, 0]]
|
|
1152
|
-
];
|
|
1153
|
-
var SnowflakeVpcConfiguration$ = [3, n0, _SVC,
|
|
1154
|
-
0,
|
|
1155
|
-
[_PLVI],
|
|
1156
|
-
[[() => SnowflakePrivateLinkVpceId, 0]], 1
|
|
1157
|
-
];
|
|
1158
|
-
var SourceDescription$ = [3, n0, _SDo,
|
|
1159
|
-
0,
|
|
1160
|
-
[_DPSD, _KSSD, _MSKSD, _DSD],
|
|
1161
|
-
[() => DirectPutSourceDescription$, () => KinesisStreamSourceDescription$, () => MSKSourceDescription$, () => DatabaseSourceDescription$]
|
|
1162
|
-
];
|
|
1163
|
-
var SplunkBufferingHints$ = [3, n0, _SBHp,
|
|
1164
|
-
0,
|
|
1165
|
-
[_IIS, _SIMB],
|
|
1166
|
-
[1, 1]
|
|
1167
|
-
];
|
|
1168
|
-
var SplunkDestinationConfiguration$ = [3, n0, _SDCp,
|
|
1169
|
-
0,
|
|
1170
|
-
[_HECE, _HECET, _SC, _HECT, _HECATIS, _RO, _SBM, _PC, _CWLO, _BH, _SMC],
|
|
1171
|
-
[0, 0, () => S3DestinationConfiguration$, 0, 1, () => SplunkRetryOptions$, 0, () => ProcessingConfiguration$, () => CloudWatchLoggingOptions$, () => SplunkBufferingHints$, () => SecretsManagerConfiguration$], 3
|
|
1172
|
-
];
|
|
1173
|
-
var SplunkDestinationDescription$ = [3, n0, _SDDp,
|
|
1174
|
-
0,
|
|
1175
|
-
[_HECE, _HECET, _HECT, _HECATIS, _RO, _SBM, _SDD, _PC, _CWLO, _BH, _SMC],
|
|
1176
|
-
[0, 0, 0, 1, () => SplunkRetryOptions$, 0, () => S3DestinationDescription$, () => ProcessingConfiguration$, () => CloudWatchLoggingOptions$, () => SplunkBufferingHints$, () => SecretsManagerConfiguration$]
|
|
1177
|
-
];
|
|
1178
|
-
var SplunkDestinationUpdate$ = [3, n0, _SDUp,
|
|
1179
|
-
0,
|
|
1180
|
-
[_HECE, _HECET, _HECT, _HECATIS, _RO, _SBM, _SUp, _PC, _CWLO, _BH, _SMC],
|
|
1181
|
-
[0, 0, 0, 1, () => SplunkRetryOptions$, 0, () => S3DestinationUpdate$, () => ProcessingConfiguration$, () => CloudWatchLoggingOptions$, () => SplunkBufferingHints$, () => SecretsManagerConfiguration$]
|
|
1182
|
-
];
|
|
1183
|
-
var SplunkRetryOptions$ = [3, n0, _SROp,
|
|
1184
|
-
0,
|
|
1185
|
-
[_DIS],
|
|
1186
|
-
[1]
|
|
1187
|
-
];
|
|
1188
|
-
var StartDeliveryStreamEncryptionInput$ = [3, n0, _SDSEI,
|
|
1189
|
-
0,
|
|
1190
|
-
[_DSN, _DSECI],
|
|
1191
|
-
[0, () => DeliveryStreamEncryptionConfigurationInput$], 1
|
|
1192
|
-
];
|
|
1193
|
-
var StartDeliveryStreamEncryptionOutput$ = [3, n0, _SDSEO,
|
|
1194
|
-
0,
|
|
1195
|
-
[],
|
|
1196
|
-
[]
|
|
1197
|
-
];
|
|
1198
|
-
var StopDeliveryStreamEncryptionInput$ = [3, n0, _SDSEIt,
|
|
1199
|
-
0,
|
|
1200
|
-
[_DSN],
|
|
1201
|
-
[0], 1
|
|
1202
|
-
];
|
|
1203
|
-
var StopDeliveryStreamEncryptionOutput$ = [3, n0, _SDSEOt,
|
|
1204
|
-
0,
|
|
1205
|
-
[],
|
|
1206
|
-
[]
|
|
1207
|
-
];
|
|
1208
|
-
var TableCreationConfiguration$ = [3, n0, _TCC,
|
|
1209
|
-
0,
|
|
1210
|
-
[_E],
|
|
1211
|
-
[2], 1
|
|
1212
|
-
];
|
|
1213
|
-
var Tag$ = [3, n0, _Tag,
|
|
1214
|
-
0,
|
|
1215
|
-
[_K, _V],
|
|
1216
|
-
[0, 0], 1
|
|
1217
|
-
];
|
|
1218
|
-
var TagDeliveryStreamInput$ = [3, n0, _TDSI,
|
|
1219
|
-
0,
|
|
1220
|
-
[_DSN, _T],
|
|
1221
|
-
[0, () => TagDeliveryStreamInputTagList], 2
|
|
1222
|
-
];
|
|
1223
|
-
var TagDeliveryStreamOutput$ = [3, n0, _TDSO,
|
|
1224
|
-
0,
|
|
1225
|
-
[],
|
|
1226
|
-
[]
|
|
1227
|
-
];
|
|
1228
|
-
var UntagDeliveryStreamInput$ = [3, n0, _UDSI,
|
|
1229
|
-
0,
|
|
1230
|
-
[_DSN, _TK],
|
|
1231
|
-
[0, 64 | 0], 2
|
|
1232
|
-
];
|
|
1233
|
-
var UntagDeliveryStreamOutput$ = [3, n0, _UDSO,
|
|
1234
|
-
0,
|
|
1235
|
-
[],
|
|
1236
|
-
[]
|
|
1237
|
-
];
|
|
1238
|
-
var UpdateDestinationInput$ = [3, n0, _UDI,
|
|
1239
|
-
0,
|
|
1240
|
-
[_DSN, _CDSVI, _DI, _SDU, _ESDU, _RDU, _EDU, _ADU, _SDUp, _HEDU, _AOSSDU, _SDUn, _IDU],
|
|
1241
|
-
[0, 0, 0, () => S3DestinationUpdate$, () => ExtendedS3DestinationUpdate$, [() => RedshiftDestinationUpdate$, 0], () => ElasticsearchDestinationUpdate$, () => AmazonopensearchserviceDestinationUpdate$, () => SplunkDestinationUpdate$, [() => HttpEndpointDestinationUpdate$, 0], () => AmazonOpenSearchServerlessDestinationUpdate$, [() => SnowflakeDestinationUpdate$, 0], () => IcebergDestinationUpdate$], 3
|
|
1242
|
-
];
|
|
1243
|
-
var UpdateDestinationOutput$ = [3, n0, _UDO,
|
|
1244
|
-
0,
|
|
1245
|
-
[],
|
|
1246
|
-
[]
|
|
1247
|
-
];
|
|
1248
|
-
var VpcConfiguration$ = [3, n0, _VC,
|
|
1249
|
-
0,
|
|
1250
|
-
[_SIu, _RARN, _SGI],
|
|
1251
|
-
[64 | 0, 0, 64 | 0], 3
|
|
1252
|
-
];
|
|
1253
|
-
var VpcConfigurationDescription$ = [3, n0, _VCD,
|
|
1254
|
-
0,
|
|
1255
|
-
[_SIu, _RARN, _SGI, _VIp],
|
|
1256
|
-
[64 | 0, 0, 64 | 0, 0], 4
|
|
1257
|
-
];
|
|
1258
|
-
var FirehoseServiceException$ = [-3, _sm, "FirehoseServiceException", 0, [], []];
|
|
1259
|
-
schema.TypeRegistry.for(_sm).registerError(FirehoseServiceException$, FirehoseServiceException);
|
|
1260
|
-
var DatabaseSnapshotInfoList = [1, n0, _DSIL,
|
|
1261
|
-
0, () => DatabaseSnapshotInfo$
|
|
1262
|
-
];
|
|
1263
|
-
var DestinationDescriptionList = [1, n0, _DDL,
|
|
1264
|
-
0, [() => DestinationDescription$,
|
|
1265
|
-
0]
|
|
1266
|
-
];
|
|
1267
|
-
var DestinationTableConfigurationList = [1, n0, _DTCL,
|
|
1268
|
-
0, () => DestinationTableConfiguration$
|
|
1269
|
-
];
|
|
1270
|
-
var HttpEndpointCommonAttributesList = [1, n0, _HECAL,
|
|
1271
|
-
0, [() => HttpEndpointCommonAttribute$,
|
|
1272
|
-
0]
|
|
1273
|
-
];
|
|
1274
|
-
var ListTagsForDeliveryStreamOutputTagList = [1, n0, _LTFDSOTL,
|
|
1275
|
-
0, () => Tag$
|
|
1276
|
-
];
|
|
1277
|
-
var PartitionFields = [1, n0, _PFa,
|
|
1278
|
-
0, () => PartitionField$
|
|
1279
|
-
];
|
|
1280
|
-
var ProcessorList = [1, n0, _PL,
|
|
1281
|
-
0, () => Processor$
|
|
1282
|
-
];
|
|
1283
|
-
var ProcessorParameterList = [1, n0, _PPL,
|
|
1284
|
-
0, () => ProcessorParameter$
|
|
1285
|
-
];
|
|
1286
|
-
var PutRecordBatchRequestEntryList = [1, n0, _PRBREL,
|
|
1287
|
-
0, () => _Record$
|
|
1288
|
-
];
|
|
1289
|
-
var PutRecordBatchResponseEntryList = [1, n0, _PRBRELu,
|
|
1290
|
-
0, () => PutRecordBatchResponseEntry$
|
|
1291
|
-
];
|
|
1292
|
-
var TagDeliveryStreamInputTagList = [1, n0, _TDSITL,
|
|
1293
|
-
0, () => Tag$
|
|
1294
|
-
];
|
|
1295
|
-
var CreateDeliveryStream$ = [9, n0, _CDS,
|
|
1296
|
-
0, () => CreateDeliveryStreamInput$, () => CreateDeliveryStreamOutput$
|
|
1297
|
-
];
|
|
1298
|
-
var DeleteDeliveryStream$ = [9, n0, _DDS,
|
|
1299
|
-
0, () => DeleteDeliveryStreamInput$, () => DeleteDeliveryStreamOutput$
|
|
1300
|
-
];
|
|
1301
|
-
var DescribeDeliveryStream$ = [9, n0, _DDSe,
|
|
1302
|
-
0, () => DescribeDeliveryStreamInput$, () => DescribeDeliveryStreamOutput$
|
|
1303
|
-
];
|
|
1304
|
-
var ListDeliveryStreams$ = [9, n0, _LDS,
|
|
1305
|
-
0, () => ListDeliveryStreamsInput$, () => ListDeliveryStreamsOutput$
|
|
1306
|
-
];
|
|
1307
|
-
var ListTagsForDeliveryStream$ = [9, n0, _LTFDS,
|
|
1308
|
-
0, () => ListTagsForDeliveryStreamInput$, () => ListTagsForDeliveryStreamOutput$
|
|
1309
|
-
];
|
|
1310
|
-
var PutRecord$ = [9, n0, _PR,
|
|
1311
|
-
0, () => PutRecordInput$, () => PutRecordOutput$
|
|
1312
|
-
];
|
|
1313
|
-
var PutRecordBatch$ = [9, n0, _PRB,
|
|
1314
|
-
0, () => PutRecordBatchInput$, () => PutRecordBatchOutput$
|
|
1315
|
-
];
|
|
1316
|
-
var StartDeliveryStreamEncryption$ = [9, n0, _SDSE,
|
|
1317
|
-
0, () => StartDeliveryStreamEncryptionInput$, () => StartDeliveryStreamEncryptionOutput$
|
|
1318
|
-
];
|
|
1319
|
-
var StopDeliveryStreamEncryption$ = [9, n0, _SDSEt,
|
|
1320
|
-
0, () => StopDeliveryStreamEncryptionInput$, () => StopDeliveryStreamEncryptionOutput$
|
|
1321
|
-
];
|
|
1322
|
-
var TagDeliveryStream$ = [9, n0, _TDS,
|
|
1323
|
-
0, () => TagDeliveryStreamInput$, () => TagDeliveryStreamOutput$
|
|
1324
|
-
];
|
|
1325
|
-
var UntagDeliveryStream$ = [9, n0, _UDS,
|
|
1326
|
-
0, () => UntagDeliveryStreamInput$, () => UntagDeliveryStreamOutput$
|
|
1327
|
-
];
|
|
1328
|
-
var UpdateDestination$ = [9, n0, _UD,
|
|
1329
|
-
0, () => UpdateDestinationInput$, () => UpdateDestinationOutput$
|
|
1330
|
-
];
|
|
1331
|
-
|
|
1332
116
|
class CreateDeliveryStreamCommand extends smithyClient.Command
|
|
1333
117
|
.classBuilder()
|
|
1334
118
|
.ep(commonParams)
|
|
@@ -1337,7 +121,7 @@ class CreateDeliveryStreamCommand extends smithyClient.Command
|
|
|
1337
121
|
})
|
|
1338
122
|
.s("Firehose_20150804", "CreateDeliveryStream", {})
|
|
1339
123
|
.n("FirehoseClient", "CreateDeliveryStreamCommand")
|
|
1340
|
-
.sc(CreateDeliveryStream$)
|
|
124
|
+
.sc(schemas_0.CreateDeliveryStream$)
|
|
1341
125
|
.build() {
|
|
1342
126
|
}
|
|
1343
127
|
|
|
@@ -1349,7 +133,7 @@ class DeleteDeliveryStreamCommand extends smithyClient.Command
|
|
|
1349
133
|
})
|
|
1350
134
|
.s("Firehose_20150804", "DeleteDeliveryStream", {})
|
|
1351
135
|
.n("FirehoseClient", "DeleteDeliveryStreamCommand")
|
|
1352
|
-
.sc(DeleteDeliveryStream$)
|
|
136
|
+
.sc(schemas_0.DeleteDeliveryStream$)
|
|
1353
137
|
.build() {
|
|
1354
138
|
}
|
|
1355
139
|
|
|
@@ -1361,7 +145,7 @@ class DescribeDeliveryStreamCommand extends smithyClient.Command
|
|
|
1361
145
|
})
|
|
1362
146
|
.s("Firehose_20150804", "DescribeDeliveryStream", {})
|
|
1363
147
|
.n("FirehoseClient", "DescribeDeliveryStreamCommand")
|
|
1364
|
-
.sc(DescribeDeliveryStream$)
|
|
148
|
+
.sc(schemas_0.DescribeDeliveryStream$)
|
|
1365
149
|
.build() {
|
|
1366
150
|
}
|
|
1367
151
|
|
|
@@ -1373,7 +157,7 @@ class ListDeliveryStreamsCommand extends smithyClient.Command
|
|
|
1373
157
|
})
|
|
1374
158
|
.s("Firehose_20150804", "ListDeliveryStreams", {})
|
|
1375
159
|
.n("FirehoseClient", "ListDeliveryStreamsCommand")
|
|
1376
|
-
.sc(ListDeliveryStreams$)
|
|
160
|
+
.sc(schemas_0.ListDeliveryStreams$)
|
|
1377
161
|
.build() {
|
|
1378
162
|
}
|
|
1379
163
|
|
|
@@ -1385,7 +169,7 @@ class ListTagsForDeliveryStreamCommand extends smithyClient.Command
|
|
|
1385
169
|
})
|
|
1386
170
|
.s("Firehose_20150804", "ListTagsForDeliveryStream", {})
|
|
1387
171
|
.n("FirehoseClient", "ListTagsForDeliveryStreamCommand")
|
|
1388
|
-
.sc(ListTagsForDeliveryStream$)
|
|
172
|
+
.sc(schemas_0.ListTagsForDeliveryStream$)
|
|
1389
173
|
.build() {
|
|
1390
174
|
}
|
|
1391
175
|
|
|
@@ -1397,7 +181,7 @@ class PutRecordBatchCommand extends smithyClient.Command
|
|
|
1397
181
|
})
|
|
1398
182
|
.s("Firehose_20150804", "PutRecordBatch", {})
|
|
1399
183
|
.n("FirehoseClient", "PutRecordBatchCommand")
|
|
1400
|
-
.sc(PutRecordBatch$)
|
|
184
|
+
.sc(schemas_0.PutRecordBatch$)
|
|
1401
185
|
.build() {
|
|
1402
186
|
}
|
|
1403
187
|
|
|
@@ -1409,7 +193,7 @@ class PutRecordCommand extends smithyClient.Command
|
|
|
1409
193
|
})
|
|
1410
194
|
.s("Firehose_20150804", "PutRecord", {})
|
|
1411
195
|
.n("FirehoseClient", "PutRecordCommand")
|
|
1412
|
-
.sc(PutRecord$)
|
|
196
|
+
.sc(schemas_0.PutRecord$)
|
|
1413
197
|
.build() {
|
|
1414
198
|
}
|
|
1415
199
|
|
|
@@ -1421,7 +205,7 @@ class StartDeliveryStreamEncryptionCommand extends smithyClient.Command
|
|
|
1421
205
|
})
|
|
1422
206
|
.s("Firehose_20150804", "StartDeliveryStreamEncryption", {})
|
|
1423
207
|
.n("FirehoseClient", "StartDeliveryStreamEncryptionCommand")
|
|
1424
|
-
.sc(StartDeliveryStreamEncryption$)
|
|
208
|
+
.sc(schemas_0.StartDeliveryStreamEncryption$)
|
|
1425
209
|
.build() {
|
|
1426
210
|
}
|
|
1427
211
|
|
|
@@ -1433,7 +217,7 @@ class StopDeliveryStreamEncryptionCommand extends smithyClient.Command
|
|
|
1433
217
|
})
|
|
1434
218
|
.s("Firehose_20150804", "StopDeliveryStreamEncryption", {})
|
|
1435
219
|
.n("FirehoseClient", "StopDeliveryStreamEncryptionCommand")
|
|
1436
|
-
.sc(StopDeliveryStreamEncryption$)
|
|
220
|
+
.sc(schemas_0.StopDeliveryStreamEncryption$)
|
|
1437
221
|
.build() {
|
|
1438
222
|
}
|
|
1439
223
|
|
|
@@ -1445,7 +229,7 @@ class TagDeliveryStreamCommand extends smithyClient.Command
|
|
|
1445
229
|
})
|
|
1446
230
|
.s("Firehose_20150804", "TagDeliveryStream", {})
|
|
1447
231
|
.n("FirehoseClient", "TagDeliveryStreamCommand")
|
|
1448
|
-
.sc(TagDeliveryStream$)
|
|
232
|
+
.sc(schemas_0.TagDeliveryStream$)
|
|
1449
233
|
.build() {
|
|
1450
234
|
}
|
|
1451
235
|
|
|
@@ -1457,7 +241,7 @@ class UntagDeliveryStreamCommand extends smithyClient.Command
|
|
|
1457
241
|
})
|
|
1458
242
|
.s("Firehose_20150804", "UntagDeliveryStream", {})
|
|
1459
243
|
.n("FirehoseClient", "UntagDeliveryStreamCommand")
|
|
1460
|
-
.sc(UntagDeliveryStream$)
|
|
244
|
+
.sc(schemas_0.UntagDeliveryStream$)
|
|
1461
245
|
.build() {
|
|
1462
246
|
}
|
|
1463
247
|
|
|
@@ -1469,7 +253,7 @@ class UpdateDestinationCommand extends smithyClient.Command
|
|
|
1469
253
|
})
|
|
1470
254
|
.s("Firehose_20150804", "UpdateDestination", {})
|
|
1471
255
|
.n("FirehoseClient", "UpdateDestinationCommand")
|
|
1472
|
-
.sc(UpdateDestination$)
|
|
256
|
+
.sc(schemas_0.UpdateDestination$)
|
|
1473
257
|
.build() {
|
|
1474
258
|
}
|
|
1475
259
|
|
|
@@ -1681,207 +465,66 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1681
465
|
enumerable: true,
|
|
1682
466
|
get: function () { return smithyClient.Client; }
|
|
1683
467
|
});
|
|
1684
|
-
exports
|
|
1685
|
-
|
|
1686
|
-
|
|
1687
|
-
|
|
1688
|
-
exports.AmazonOpenSearchServerlessRetryOptions$ = AmazonOpenSearchServerlessRetryOptions$;
|
|
468
|
+
Object.defineProperty(exports, "FirehoseServiceException", {
|
|
469
|
+
enumerable: true,
|
|
470
|
+
get: function () { return FirehoseServiceException.FirehoseServiceException; }
|
|
471
|
+
});
|
|
1689
472
|
exports.AmazonOpenSearchServerlessS3BackupMode = AmazonOpenSearchServerlessS3BackupMode;
|
|
1690
|
-
exports.AmazonopensearchserviceBufferingHints$ = AmazonopensearchserviceBufferingHints$;
|
|
1691
|
-
exports.AmazonopensearchserviceDestinationConfiguration$ = AmazonopensearchserviceDestinationConfiguration$;
|
|
1692
|
-
exports.AmazonopensearchserviceDestinationDescription$ = AmazonopensearchserviceDestinationDescription$;
|
|
1693
|
-
exports.AmazonopensearchserviceDestinationUpdate$ = AmazonopensearchserviceDestinationUpdate$;
|
|
1694
473
|
exports.AmazonopensearchserviceIndexRotationPeriod = AmazonopensearchserviceIndexRotationPeriod;
|
|
1695
|
-
exports.AmazonopensearchserviceRetryOptions$ = AmazonopensearchserviceRetryOptions$;
|
|
1696
474
|
exports.AmazonopensearchserviceS3BackupMode = AmazonopensearchserviceS3BackupMode;
|
|
1697
|
-
exports.AuthenticationConfiguration$ = AuthenticationConfiguration$;
|
|
1698
|
-
exports.BufferingHints$ = BufferingHints$;
|
|
1699
|
-
exports.CatalogConfiguration$ = CatalogConfiguration$;
|
|
1700
|
-
exports.CloudWatchLoggingOptions$ = CloudWatchLoggingOptions$;
|
|
1701
475
|
exports.CompressionFormat = CompressionFormat;
|
|
1702
|
-
exports.ConcurrentModificationException = ConcurrentModificationException;
|
|
1703
|
-
exports.ConcurrentModificationException$ = ConcurrentModificationException$;
|
|
1704
476
|
exports.Connectivity = Connectivity;
|
|
1705
477
|
exports.ContentEncoding = ContentEncoding;
|
|
1706
|
-
exports.CopyCommand$ = CopyCommand$;
|
|
1707
|
-
exports.CreateDeliveryStream$ = CreateDeliveryStream$;
|
|
1708
478
|
exports.CreateDeliveryStreamCommand = CreateDeliveryStreamCommand;
|
|
1709
|
-
exports.CreateDeliveryStreamInput$ = CreateDeliveryStreamInput$;
|
|
1710
|
-
exports.CreateDeliveryStreamOutput$ = CreateDeliveryStreamOutput$;
|
|
1711
|
-
exports.DataFormatConversionConfiguration$ = DataFormatConversionConfiguration$;
|
|
1712
|
-
exports.DatabaseColumnList$ = DatabaseColumnList$;
|
|
1713
|
-
exports.DatabaseList$ = DatabaseList$;
|
|
1714
|
-
exports.DatabaseSnapshotInfo$ = DatabaseSnapshotInfo$;
|
|
1715
|
-
exports.DatabaseSourceAuthenticationConfiguration$ = DatabaseSourceAuthenticationConfiguration$;
|
|
1716
|
-
exports.DatabaseSourceConfiguration$ = DatabaseSourceConfiguration$;
|
|
1717
|
-
exports.DatabaseSourceDescription$ = DatabaseSourceDescription$;
|
|
1718
|
-
exports.DatabaseSourceVPCConfiguration$ = DatabaseSourceVPCConfiguration$;
|
|
1719
|
-
exports.DatabaseTableList$ = DatabaseTableList$;
|
|
1720
479
|
exports.DatabaseType = DatabaseType;
|
|
1721
480
|
exports.DefaultDocumentIdFormat = DefaultDocumentIdFormat;
|
|
1722
|
-
exports.DeleteDeliveryStream$ = DeleteDeliveryStream$;
|
|
1723
481
|
exports.DeleteDeliveryStreamCommand = DeleteDeliveryStreamCommand;
|
|
1724
|
-
exports.DeleteDeliveryStreamInput$ = DeleteDeliveryStreamInput$;
|
|
1725
|
-
exports.DeleteDeliveryStreamOutput$ = DeleteDeliveryStreamOutput$;
|
|
1726
|
-
exports.DeliveryStreamDescription$ = DeliveryStreamDescription$;
|
|
1727
|
-
exports.DeliveryStreamEncryptionConfiguration$ = DeliveryStreamEncryptionConfiguration$;
|
|
1728
|
-
exports.DeliveryStreamEncryptionConfigurationInput$ = DeliveryStreamEncryptionConfigurationInput$;
|
|
1729
482
|
exports.DeliveryStreamEncryptionStatus = DeliveryStreamEncryptionStatus;
|
|
1730
483
|
exports.DeliveryStreamFailureType = DeliveryStreamFailureType;
|
|
1731
484
|
exports.DeliveryStreamStatus = DeliveryStreamStatus;
|
|
1732
485
|
exports.DeliveryStreamType = DeliveryStreamType;
|
|
1733
|
-
exports.DescribeDeliveryStream$ = DescribeDeliveryStream$;
|
|
1734
486
|
exports.DescribeDeliveryStreamCommand = DescribeDeliveryStreamCommand;
|
|
1735
|
-
exports.DescribeDeliveryStreamInput$ = DescribeDeliveryStreamInput$;
|
|
1736
|
-
exports.DescribeDeliveryStreamOutput$ = DescribeDeliveryStreamOutput$;
|
|
1737
|
-
exports.Deserializer$ = Deserializer$;
|
|
1738
|
-
exports.DestinationDescription$ = DestinationDescription$;
|
|
1739
|
-
exports.DestinationTableConfiguration$ = DestinationTableConfiguration$;
|
|
1740
|
-
exports.DirectPutSourceConfiguration$ = DirectPutSourceConfiguration$;
|
|
1741
|
-
exports.DirectPutSourceDescription$ = DirectPutSourceDescription$;
|
|
1742
|
-
exports.DocumentIdOptions$ = DocumentIdOptions$;
|
|
1743
|
-
exports.DynamicPartitioningConfiguration$ = DynamicPartitioningConfiguration$;
|
|
1744
|
-
exports.ElasticsearchBufferingHints$ = ElasticsearchBufferingHints$;
|
|
1745
|
-
exports.ElasticsearchDestinationConfiguration$ = ElasticsearchDestinationConfiguration$;
|
|
1746
|
-
exports.ElasticsearchDestinationDescription$ = ElasticsearchDestinationDescription$;
|
|
1747
|
-
exports.ElasticsearchDestinationUpdate$ = ElasticsearchDestinationUpdate$;
|
|
1748
487
|
exports.ElasticsearchIndexRotationPeriod = ElasticsearchIndexRotationPeriod;
|
|
1749
|
-
exports.ElasticsearchRetryOptions$ = ElasticsearchRetryOptions$;
|
|
1750
488
|
exports.ElasticsearchS3BackupMode = ElasticsearchS3BackupMode;
|
|
1751
|
-
exports.EncryptionConfiguration$ = EncryptionConfiguration$;
|
|
1752
|
-
exports.ExtendedS3DestinationConfiguration$ = ExtendedS3DestinationConfiguration$;
|
|
1753
|
-
exports.ExtendedS3DestinationDescription$ = ExtendedS3DestinationDescription$;
|
|
1754
|
-
exports.ExtendedS3DestinationUpdate$ = ExtendedS3DestinationUpdate$;
|
|
1755
|
-
exports.FailureDescription$ = FailureDescription$;
|
|
1756
489
|
exports.Firehose = Firehose;
|
|
1757
490
|
exports.FirehoseClient = FirehoseClient;
|
|
1758
|
-
exports.FirehoseServiceException = FirehoseServiceException;
|
|
1759
|
-
exports.FirehoseServiceException$ = FirehoseServiceException$;
|
|
1760
491
|
exports.HECEndpointType = HECEndpointType;
|
|
1761
|
-
exports.HiveJsonSerDe$ = HiveJsonSerDe$;
|
|
1762
|
-
exports.HttpEndpointBufferingHints$ = HttpEndpointBufferingHints$;
|
|
1763
|
-
exports.HttpEndpointCommonAttribute$ = HttpEndpointCommonAttribute$;
|
|
1764
|
-
exports.HttpEndpointConfiguration$ = HttpEndpointConfiguration$;
|
|
1765
|
-
exports.HttpEndpointDescription$ = HttpEndpointDescription$;
|
|
1766
|
-
exports.HttpEndpointDestinationConfiguration$ = HttpEndpointDestinationConfiguration$;
|
|
1767
|
-
exports.HttpEndpointDestinationDescription$ = HttpEndpointDestinationDescription$;
|
|
1768
|
-
exports.HttpEndpointDestinationUpdate$ = HttpEndpointDestinationUpdate$;
|
|
1769
|
-
exports.HttpEndpointRequestConfiguration$ = HttpEndpointRequestConfiguration$;
|
|
1770
|
-
exports.HttpEndpointRetryOptions$ = HttpEndpointRetryOptions$;
|
|
1771
492
|
exports.HttpEndpointS3BackupMode = HttpEndpointS3BackupMode;
|
|
1772
|
-
exports.IcebergDestinationConfiguration$ = IcebergDestinationConfiguration$;
|
|
1773
|
-
exports.IcebergDestinationDescription$ = IcebergDestinationDescription$;
|
|
1774
|
-
exports.IcebergDestinationUpdate$ = IcebergDestinationUpdate$;
|
|
1775
493
|
exports.IcebergS3BackupMode = IcebergS3BackupMode;
|
|
1776
|
-
exports.InputFormatConfiguration$ = InputFormatConfiguration$;
|
|
1777
|
-
exports.InvalidArgumentException = InvalidArgumentException;
|
|
1778
|
-
exports.InvalidArgumentException$ = InvalidArgumentException$;
|
|
1779
|
-
exports.InvalidKMSResourceException = InvalidKMSResourceException;
|
|
1780
|
-
exports.InvalidKMSResourceException$ = InvalidKMSResourceException$;
|
|
1781
|
-
exports.InvalidSourceException = InvalidSourceException;
|
|
1782
|
-
exports.InvalidSourceException$ = InvalidSourceException$;
|
|
1783
|
-
exports.KMSEncryptionConfig$ = KMSEncryptionConfig$;
|
|
1784
494
|
exports.KeyType = KeyType;
|
|
1785
|
-
exports.KinesisStreamSourceConfiguration$ = KinesisStreamSourceConfiguration$;
|
|
1786
|
-
exports.KinesisStreamSourceDescription$ = KinesisStreamSourceDescription$;
|
|
1787
|
-
exports.LimitExceededException = LimitExceededException;
|
|
1788
|
-
exports.LimitExceededException$ = LimitExceededException$;
|
|
1789
|
-
exports.ListDeliveryStreams$ = ListDeliveryStreams$;
|
|
1790
495
|
exports.ListDeliveryStreamsCommand = ListDeliveryStreamsCommand;
|
|
1791
|
-
exports.ListDeliveryStreamsInput$ = ListDeliveryStreamsInput$;
|
|
1792
|
-
exports.ListDeliveryStreamsOutput$ = ListDeliveryStreamsOutput$;
|
|
1793
|
-
exports.ListTagsForDeliveryStream$ = ListTagsForDeliveryStream$;
|
|
1794
496
|
exports.ListTagsForDeliveryStreamCommand = ListTagsForDeliveryStreamCommand;
|
|
1795
|
-
exports.ListTagsForDeliveryStreamInput$ = ListTagsForDeliveryStreamInput$;
|
|
1796
|
-
exports.ListTagsForDeliveryStreamOutput$ = ListTagsForDeliveryStreamOutput$;
|
|
1797
|
-
exports.MSKSourceConfiguration$ = MSKSourceConfiguration$;
|
|
1798
|
-
exports.MSKSourceDescription$ = MSKSourceDescription$;
|
|
1799
497
|
exports.NoEncryptionConfig = NoEncryptionConfig;
|
|
1800
|
-
exports.OpenXJsonSerDe$ = OpenXJsonSerDe$;
|
|
1801
498
|
exports.OrcCompression = OrcCompression;
|
|
1802
499
|
exports.OrcFormatVersion = OrcFormatVersion;
|
|
1803
|
-
exports.OrcSerDe$ = OrcSerDe$;
|
|
1804
|
-
exports.OutputFormatConfiguration$ = OutputFormatConfiguration$;
|
|
1805
500
|
exports.ParquetCompression = ParquetCompression;
|
|
1806
|
-
exports.ParquetSerDe$ = ParquetSerDe$;
|
|
1807
501
|
exports.ParquetWriterVersion = ParquetWriterVersion;
|
|
1808
|
-
exports.PartitionField$ = PartitionField$;
|
|
1809
|
-
exports.PartitionSpec$ = PartitionSpec$;
|
|
1810
|
-
exports.ProcessingConfiguration$ = ProcessingConfiguration$;
|
|
1811
|
-
exports.Processor$ = Processor$;
|
|
1812
|
-
exports.ProcessorParameter$ = ProcessorParameter$;
|
|
1813
502
|
exports.ProcessorParameterName = ProcessorParameterName;
|
|
1814
503
|
exports.ProcessorType = ProcessorType;
|
|
1815
|
-
exports.PutRecord$ = PutRecord$;
|
|
1816
|
-
exports.PutRecordBatch$ = PutRecordBatch$;
|
|
1817
504
|
exports.PutRecordBatchCommand = PutRecordBatchCommand;
|
|
1818
|
-
exports.PutRecordBatchInput$ = PutRecordBatchInput$;
|
|
1819
|
-
exports.PutRecordBatchOutput$ = PutRecordBatchOutput$;
|
|
1820
|
-
exports.PutRecordBatchResponseEntry$ = PutRecordBatchResponseEntry$;
|
|
1821
505
|
exports.PutRecordCommand = PutRecordCommand;
|
|
1822
|
-
exports.PutRecordInput$ = PutRecordInput$;
|
|
1823
|
-
exports.PutRecordOutput$ = PutRecordOutput$;
|
|
1824
|
-
exports.RedshiftDestinationConfiguration$ = RedshiftDestinationConfiguration$;
|
|
1825
|
-
exports.RedshiftDestinationDescription$ = RedshiftDestinationDescription$;
|
|
1826
|
-
exports.RedshiftDestinationUpdate$ = RedshiftDestinationUpdate$;
|
|
1827
|
-
exports.RedshiftRetryOptions$ = RedshiftRetryOptions$;
|
|
1828
506
|
exports.RedshiftS3BackupMode = RedshiftS3BackupMode;
|
|
1829
|
-
exports.ResourceInUseException = ResourceInUseException;
|
|
1830
|
-
exports.ResourceInUseException$ = ResourceInUseException$;
|
|
1831
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1832
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1833
|
-
exports.RetryOptions$ = RetryOptions$;
|
|
1834
507
|
exports.S3BackupMode = S3BackupMode;
|
|
1835
|
-
exports.S3DestinationConfiguration$ = S3DestinationConfiguration$;
|
|
1836
|
-
exports.S3DestinationDescription$ = S3DestinationDescription$;
|
|
1837
|
-
exports.S3DestinationUpdate$ = S3DestinationUpdate$;
|
|
1838
508
|
exports.SSLMode = SSLMode;
|
|
1839
|
-
exports.SchemaConfiguration$ = SchemaConfiguration$;
|
|
1840
|
-
exports.SchemaEvolutionConfiguration$ = SchemaEvolutionConfiguration$;
|
|
1841
|
-
exports.SecretsManagerConfiguration$ = SecretsManagerConfiguration$;
|
|
1842
|
-
exports.Serializer$ = Serializer$;
|
|
1843
|
-
exports.ServiceUnavailableException = ServiceUnavailableException;
|
|
1844
|
-
exports.ServiceUnavailableException$ = ServiceUnavailableException$;
|
|
1845
509
|
exports.SnapshotRequestedBy = SnapshotRequestedBy;
|
|
1846
510
|
exports.SnapshotStatus = SnapshotStatus;
|
|
1847
|
-
exports.SnowflakeBufferingHints$ = SnowflakeBufferingHints$;
|
|
1848
511
|
exports.SnowflakeDataLoadingOption = SnowflakeDataLoadingOption;
|
|
1849
|
-
exports.SnowflakeDestinationConfiguration$ = SnowflakeDestinationConfiguration$;
|
|
1850
|
-
exports.SnowflakeDestinationDescription$ = SnowflakeDestinationDescription$;
|
|
1851
|
-
exports.SnowflakeDestinationUpdate$ = SnowflakeDestinationUpdate$;
|
|
1852
|
-
exports.SnowflakeRetryOptions$ = SnowflakeRetryOptions$;
|
|
1853
|
-
exports.SnowflakeRoleConfiguration$ = SnowflakeRoleConfiguration$;
|
|
1854
512
|
exports.SnowflakeS3BackupMode = SnowflakeS3BackupMode;
|
|
1855
|
-
exports.SnowflakeVpcConfiguration$ = SnowflakeVpcConfiguration$;
|
|
1856
|
-
exports.SourceDescription$ = SourceDescription$;
|
|
1857
|
-
exports.SplunkBufferingHints$ = SplunkBufferingHints$;
|
|
1858
|
-
exports.SplunkDestinationConfiguration$ = SplunkDestinationConfiguration$;
|
|
1859
|
-
exports.SplunkDestinationDescription$ = SplunkDestinationDescription$;
|
|
1860
|
-
exports.SplunkDestinationUpdate$ = SplunkDestinationUpdate$;
|
|
1861
|
-
exports.SplunkRetryOptions$ = SplunkRetryOptions$;
|
|
1862
513
|
exports.SplunkS3BackupMode = SplunkS3BackupMode;
|
|
1863
|
-
exports.StartDeliveryStreamEncryption$ = StartDeliveryStreamEncryption$;
|
|
1864
514
|
exports.StartDeliveryStreamEncryptionCommand = StartDeliveryStreamEncryptionCommand;
|
|
1865
|
-
exports.StartDeliveryStreamEncryptionInput$ = StartDeliveryStreamEncryptionInput$;
|
|
1866
|
-
exports.StartDeliveryStreamEncryptionOutput$ = StartDeliveryStreamEncryptionOutput$;
|
|
1867
|
-
exports.StopDeliveryStreamEncryption$ = StopDeliveryStreamEncryption$;
|
|
1868
515
|
exports.StopDeliveryStreamEncryptionCommand = StopDeliveryStreamEncryptionCommand;
|
|
1869
|
-
exports.StopDeliveryStreamEncryptionInput$ = StopDeliveryStreamEncryptionInput$;
|
|
1870
|
-
exports.StopDeliveryStreamEncryptionOutput$ = StopDeliveryStreamEncryptionOutput$;
|
|
1871
|
-
exports.TableCreationConfiguration$ = TableCreationConfiguration$;
|
|
1872
|
-
exports.Tag$ = Tag$;
|
|
1873
|
-
exports.TagDeliveryStream$ = TagDeliveryStream$;
|
|
1874
516
|
exports.TagDeliveryStreamCommand = TagDeliveryStreamCommand;
|
|
1875
|
-
exports.TagDeliveryStreamInput$ = TagDeliveryStreamInput$;
|
|
1876
|
-
exports.TagDeliveryStreamOutput$ = TagDeliveryStreamOutput$;
|
|
1877
|
-
exports.UntagDeliveryStream$ = UntagDeliveryStream$;
|
|
1878
517
|
exports.UntagDeliveryStreamCommand = UntagDeliveryStreamCommand;
|
|
1879
|
-
exports.UntagDeliveryStreamInput$ = UntagDeliveryStreamInput$;
|
|
1880
|
-
exports.UntagDeliveryStreamOutput$ = UntagDeliveryStreamOutput$;
|
|
1881
|
-
exports.UpdateDestination$ = UpdateDestination$;
|
|
1882
518
|
exports.UpdateDestinationCommand = UpdateDestinationCommand;
|
|
1883
|
-
|
|
1884
|
-
exports.
|
|
1885
|
-
|
|
1886
|
-
|
|
1887
|
-
|
|
519
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
520
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
521
|
+
enumerable: true,
|
|
522
|
+
get: function () { return schemas_0[k]; }
|
|
523
|
+
});
|
|
524
|
+
});
|
|
525
|
+
Object.keys(errors).forEach(function (k) {
|
|
526
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
527
|
+
enumerable: true,
|
|
528
|
+
get: function () { return errors[k]; }
|
|
529
|
+
});
|
|
530
|
+
});
|