@aws-sdk/client-firehose 3.299.0 → 3.300.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.
@@ -95,6 +95,554 @@ export interface CreateDeliveryStreamCommandOutput extends CreateDeliveryStreamO
95
95
  * import { FirehoseClient, CreateDeliveryStreamCommand } from "@aws-sdk/client-firehose"; // ES Modules import
96
96
  * // const { FirehoseClient, CreateDeliveryStreamCommand } = require("@aws-sdk/client-firehose"); // CommonJS import
97
97
  * const client = new FirehoseClient(config);
98
+ * const input = {
99
+ * DeliveryStreamName: "STRING_VALUE", // required
100
+ * DeliveryStreamType: "DirectPut" || "KinesisStreamAsSource",
101
+ * KinesisStreamSourceConfiguration: {
102
+ * KinesisStreamARN: "STRING_VALUE", // required
103
+ * RoleARN: "STRING_VALUE", // required
104
+ * },
105
+ * DeliveryStreamEncryptionConfigurationInput: {
106
+ * KeyARN: "STRING_VALUE",
107
+ * KeyType: "AWS_OWNED_CMK" || "CUSTOMER_MANAGED_CMK", // required
108
+ * },
109
+ * S3DestinationConfiguration: {
110
+ * RoleARN: "STRING_VALUE", // required
111
+ * BucketARN: "STRING_VALUE", // required
112
+ * Prefix: "STRING_VALUE",
113
+ * ErrorOutputPrefix: "STRING_VALUE",
114
+ * BufferingHints: {
115
+ * SizeInMBs: Number("int"),
116
+ * IntervalInSeconds: Number("int"),
117
+ * },
118
+ * CompressionFormat: "UNCOMPRESSED" || "GZIP" || "ZIP" || "Snappy" || "HADOOP_SNAPPY",
119
+ * EncryptionConfiguration: {
120
+ * NoEncryptionConfig: "NoEncryption",
121
+ * KMSEncryptionConfig: {
122
+ * AWSKMSKeyARN: "STRING_VALUE", // required
123
+ * },
124
+ * },
125
+ * CloudWatchLoggingOptions: {
126
+ * Enabled: true || false,
127
+ * LogGroupName: "STRING_VALUE",
128
+ * LogStreamName: "STRING_VALUE",
129
+ * },
130
+ * },
131
+ * ExtendedS3DestinationConfiguration: {
132
+ * RoleARN: "STRING_VALUE", // required
133
+ * BucketARN: "STRING_VALUE", // required
134
+ * Prefix: "STRING_VALUE",
135
+ * ErrorOutputPrefix: "STRING_VALUE",
136
+ * BufferingHints: {
137
+ * SizeInMBs: Number("int"),
138
+ * IntervalInSeconds: Number("int"),
139
+ * },
140
+ * CompressionFormat: "UNCOMPRESSED" || "GZIP" || "ZIP" || "Snappy" || "HADOOP_SNAPPY",
141
+ * EncryptionConfiguration: {
142
+ * NoEncryptionConfig: "NoEncryption",
143
+ * KMSEncryptionConfig: {
144
+ * AWSKMSKeyARN: "STRING_VALUE", // required
145
+ * },
146
+ * },
147
+ * CloudWatchLoggingOptions: {
148
+ * Enabled: true || false,
149
+ * LogGroupName: "STRING_VALUE",
150
+ * LogStreamName: "STRING_VALUE",
151
+ * },
152
+ * ProcessingConfiguration: {
153
+ * Enabled: true || false,
154
+ * Processors: [
155
+ * {
156
+ * Type: "RecordDeAggregation" || "Lambda" || "MetadataExtraction" || "AppendDelimiterToRecord", // required
157
+ * Parameters: [
158
+ * {
159
+ * ParameterName: "LambdaArn" || "NumberOfRetries" || "MetadataExtractionQuery" || "JsonParsingEngine" || "RoleArn" || "BufferSizeInMBs" || "BufferIntervalInSeconds" || "SubRecordType" || "Delimiter", // required
160
+ * ParameterValue: "STRING_VALUE", // required
161
+ * },
162
+ * ],
163
+ * },
164
+ * ],
165
+ * },
166
+ * S3BackupMode: "Disabled" || "Enabled",
167
+ * S3BackupConfiguration: {
168
+ * RoleARN: "STRING_VALUE", // required
169
+ * BucketARN: "STRING_VALUE", // required
170
+ * Prefix: "STRING_VALUE",
171
+ * ErrorOutputPrefix: "STRING_VALUE",
172
+ * BufferingHints: {
173
+ * SizeInMBs: Number("int"),
174
+ * IntervalInSeconds: Number("int"),
175
+ * },
176
+ * CompressionFormat: "UNCOMPRESSED" || "GZIP" || "ZIP" || "Snappy" || "HADOOP_SNAPPY",
177
+ * EncryptionConfiguration: {
178
+ * NoEncryptionConfig: "NoEncryption",
179
+ * KMSEncryptionConfig: {
180
+ * AWSKMSKeyARN: "STRING_VALUE", // required
181
+ * },
182
+ * },
183
+ * CloudWatchLoggingOptions: {
184
+ * Enabled: true || false,
185
+ * LogGroupName: "STRING_VALUE",
186
+ * LogStreamName: "STRING_VALUE",
187
+ * },
188
+ * },
189
+ * DataFormatConversionConfiguration: {
190
+ * SchemaConfiguration: {
191
+ * RoleARN: "STRING_VALUE",
192
+ * CatalogId: "STRING_VALUE",
193
+ * DatabaseName: "STRING_VALUE",
194
+ * TableName: "STRING_VALUE",
195
+ * Region: "STRING_VALUE",
196
+ * VersionId: "STRING_VALUE",
197
+ * },
198
+ * InputFormatConfiguration: {
199
+ * Deserializer: {
200
+ * OpenXJsonSerDe: {
201
+ * ConvertDotsInJsonKeysToUnderscores: true || false,
202
+ * CaseInsensitive: true || false,
203
+ * ColumnToJsonKeyMappings: {
204
+ * "<keys>": "STRING_VALUE",
205
+ * },
206
+ * },
207
+ * HiveJsonSerDe: {
208
+ * TimestampFormats: [
209
+ * "STRING_VALUE",
210
+ * ],
211
+ * },
212
+ * },
213
+ * },
214
+ * OutputFormatConfiguration: {
215
+ * Serializer: {
216
+ * ParquetSerDe: {
217
+ * BlockSizeBytes: Number("int"),
218
+ * PageSizeBytes: Number("int"),
219
+ * Compression: "UNCOMPRESSED" || "GZIP" || "SNAPPY",
220
+ * EnableDictionaryCompression: true || false,
221
+ * MaxPaddingBytes: Number("int"),
222
+ * WriterVersion: "V1" || "V2",
223
+ * },
224
+ * OrcSerDe: {
225
+ * StripeSizeBytes: Number("int"),
226
+ * BlockSizeBytes: Number("int"),
227
+ * RowIndexStride: Number("int"),
228
+ * EnablePadding: true || false,
229
+ * PaddingTolerance: Number("double"),
230
+ * Compression: "NONE" || "ZLIB" || "SNAPPY",
231
+ * BloomFilterColumns: [
232
+ * "STRING_VALUE",
233
+ * ],
234
+ * BloomFilterFalsePositiveProbability: Number("double"),
235
+ * DictionaryKeyThreshold: Number("double"),
236
+ * FormatVersion: "V0_11" || "V0_12",
237
+ * },
238
+ * },
239
+ * },
240
+ * Enabled: true || false,
241
+ * },
242
+ * DynamicPartitioningConfiguration: {
243
+ * RetryOptions: {
244
+ * DurationInSeconds: Number("int"),
245
+ * },
246
+ * Enabled: true || false,
247
+ * },
248
+ * },
249
+ * RedshiftDestinationConfiguration: {
250
+ * RoleARN: "STRING_VALUE", // required
251
+ * ClusterJDBCURL: "STRING_VALUE", // required
252
+ * CopyCommand: {
253
+ * DataTableName: "STRING_VALUE", // required
254
+ * DataTableColumns: "STRING_VALUE",
255
+ * CopyOptions: "STRING_VALUE",
256
+ * },
257
+ * Username: "STRING_VALUE", // required
258
+ * Password: "STRING_VALUE", // required
259
+ * RetryOptions: {
260
+ * DurationInSeconds: Number("int"),
261
+ * },
262
+ * S3Configuration: {
263
+ * RoleARN: "STRING_VALUE", // required
264
+ * BucketARN: "STRING_VALUE", // required
265
+ * Prefix: "STRING_VALUE",
266
+ * ErrorOutputPrefix: "STRING_VALUE",
267
+ * BufferingHints: {
268
+ * SizeInMBs: Number("int"),
269
+ * IntervalInSeconds: Number("int"),
270
+ * },
271
+ * CompressionFormat: "UNCOMPRESSED" || "GZIP" || "ZIP" || "Snappy" || "HADOOP_SNAPPY",
272
+ * EncryptionConfiguration: {
273
+ * NoEncryptionConfig: "NoEncryption",
274
+ * KMSEncryptionConfig: {
275
+ * AWSKMSKeyARN: "STRING_VALUE", // required
276
+ * },
277
+ * },
278
+ * CloudWatchLoggingOptions: {
279
+ * Enabled: true || false,
280
+ * LogGroupName: "STRING_VALUE",
281
+ * LogStreamName: "STRING_VALUE",
282
+ * },
283
+ * },
284
+ * ProcessingConfiguration: {
285
+ * Enabled: true || false,
286
+ * Processors: [
287
+ * {
288
+ * Type: "RecordDeAggregation" || "Lambda" || "MetadataExtraction" || "AppendDelimiterToRecord", // required
289
+ * Parameters: [
290
+ * {
291
+ * ParameterName: "LambdaArn" || "NumberOfRetries" || "MetadataExtractionQuery" || "JsonParsingEngine" || "RoleArn" || "BufferSizeInMBs" || "BufferIntervalInSeconds" || "SubRecordType" || "Delimiter", // required
292
+ * ParameterValue: "STRING_VALUE", // required
293
+ * },
294
+ * ],
295
+ * },
296
+ * ],
297
+ * },
298
+ * S3BackupMode: "Disabled" || "Enabled",
299
+ * S3BackupConfiguration: {
300
+ * RoleARN: "STRING_VALUE", // required
301
+ * BucketARN: "STRING_VALUE", // required
302
+ * Prefix: "STRING_VALUE",
303
+ * ErrorOutputPrefix: "STRING_VALUE",
304
+ * BufferingHints: {
305
+ * SizeInMBs: Number("int"),
306
+ * IntervalInSeconds: Number("int"),
307
+ * },
308
+ * CompressionFormat: "UNCOMPRESSED" || "GZIP" || "ZIP" || "Snappy" || "HADOOP_SNAPPY",
309
+ * EncryptionConfiguration: {
310
+ * NoEncryptionConfig: "NoEncryption",
311
+ * KMSEncryptionConfig: {
312
+ * AWSKMSKeyARN: "STRING_VALUE", // required
313
+ * },
314
+ * },
315
+ * CloudWatchLoggingOptions: {
316
+ * Enabled: true || false,
317
+ * LogGroupName: "STRING_VALUE",
318
+ * LogStreamName: "STRING_VALUE",
319
+ * },
320
+ * },
321
+ * CloudWatchLoggingOptions: {
322
+ * Enabled: true || false,
323
+ * LogGroupName: "STRING_VALUE",
324
+ * LogStreamName: "STRING_VALUE",
325
+ * },
326
+ * },
327
+ * ElasticsearchDestinationConfiguration: {
328
+ * RoleARN: "STRING_VALUE", // required
329
+ * DomainARN: "STRING_VALUE",
330
+ * ClusterEndpoint: "STRING_VALUE",
331
+ * IndexName: "STRING_VALUE", // required
332
+ * TypeName: "STRING_VALUE",
333
+ * IndexRotationPeriod: "NoRotation" || "OneHour" || "OneDay" || "OneWeek" || "OneMonth",
334
+ * BufferingHints: {
335
+ * IntervalInSeconds: Number("int"),
336
+ * SizeInMBs: Number("int"),
337
+ * },
338
+ * RetryOptions: {
339
+ * DurationInSeconds: Number("int"),
340
+ * },
341
+ * S3BackupMode: "FailedDocumentsOnly" || "AllDocuments",
342
+ * S3Configuration: {
343
+ * RoleARN: "STRING_VALUE", // required
344
+ * BucketARN: "STRING_VALUE", // required
345
+ * Prefix: "STRING_VALUE",
346
+ * ErrorOutputPrefix: "STRING_VALUE",
347
+ * BufferingHints: {
348
+ * SizeInMBs: Number("int"),
349
+ * IntervalInSeconds: Number("int"),
350
+ * },
351
+ * CompressionFormat: "UNCOMPRESSED" || "GZIP" || "ZIP" || "Snappy" || "HADOOP_SNAPPY",
352
+ * EncryptionConfiguration: {
353
+ * NoEncryptionConfig: "NoEncryption",
354
+ * KMSEncryptionConfig: {
355
+ * AWSKMSKeyARN: "STRING_VALUE", // required
356
+ * },
357
+ * },
358
+ * CloudWatchLoggingOptions: {
359
+ * Enabled: true || false,
360
+ * LogGroupName: "STRING_VALUE",
361
+ * LogStreamName: "STRING_VALUE",
362
+ * },
363
+ * },
364
+ * ProcessingConfiguration: {
365
+ * Enabled: true || false,
366
+ * Processors: [
367
+ * {
368
+ * Type: "RecordDeAggregation" || "Lambda" || "MetadataExtraction" || "AppendDelimiterToRecord", // required
369
+ * Parameters: [
370
+ * {
371
+ * ParameterName: "LambdaArn" || "NumberOfRetries" || "MetadataExtractionQuery" || "JsonParsingEngine" || "RoleArn" || "BufferSizeInMBs" || "BufferIntervalInSeconds" || "SubRecordType" || "Delimiter", // required
372
+ * ParameterValue: "STRING_VALUE", // required
373
+ * },
374
+ * ],
375
+ * },
376
+ * ],
377
+ * },
378
+ * CloudWatchLoggingOptions: {
379
+ * Enabled: true || false,
380
+ * LogGroupName: "STRING_VALUE",
381
+ * LogStreamName: "STRING_VALUE",
382
+ * },
383
+ * VpcConfiguration: {
384
+ * SubnetIds: [ // required
385
+ * "STRING_VALUE",
386
+ * ],
387
+ * RoleARN: "STRING_VALUE", // required
388
+ * SecurityGroupIds: [ // required
389
+ * "STRING_VALUE",
390
+ * ],
391
+ * },
392
+ * },
393
+ * AmazonopensearchserviceDestinationConfiguration: {
394
+ * RoleARN: "STRING_VALUE", // required
395
+ * DomainARN: "STRING_VALUE",
396
+ * ClusterEndpoint: "STRING_VALUE",
397
+ * IndexName: "STRING_VALUE", // required
398
+ * TypeName: "STRING_VALUE",
399
+ * IndexRotationPeriod: "NoRotation" || "OneHour" || "OneDay" || "OneWeek" || "OneMonth",
400
+ * BufferingHints: {
401
+ * IntervalInSeconds: Number("int"),
402
+ * SizeInMBs: Number("int"),
403
+ * },
404
+ * RetryOptions: {
405
+ * DurationInSeconds: Number("int"),
406
+ * },
407
+ * S3BackupMode: "FailedDocumentsOnly" || "AllDocuments",
408
+ * S3Configuration: {
409
+ * RoleARN: "STRING_VALUE", // required
410
+ * BucketARN: "STRING_VALUE", // required
411
+ * Prefix: "STRING_VALUE",
412
+ * ErrorOutputPrefix: "STRING_VALUE",
413
+ * BufferingHints: {
414
+ * SizeInMBs: Number("int"),
415
+ * IntervalInSeconds: Number("int"),
416
+ * },
417
+ * CompressionFormat: "UNCOMPRESSED" || "GZIP" || "ZIP" || "Snappy" || "HADOOP_SNAPPY",
418
+ * EncryptionConfiguration: {
419
+ * NoEncryptionConfig: "NoEncryption",
420
+ * KMSEncryptionConfig: {
421
+ * AWSKMSKeyARN: "STRING_VALUE", // required
422
+ * },
423
+ * },
424
+ * CloudWatchLoggingOptions: {
425
+ * Enabled: true || false,
426
+ * LogGroupName: "STRING_VALUE",
427
+ * LogStreamName: "STRING_VALUE",
428
+ * },
429
+ * },
430
+ * ProcessingConfiguration: {
431
+ * Enabled: true || false,
432
+ * Processors: [
433
+ * {
434
+ * Type: "RecordDeAggregation" || "Lambda" || "MetadataExtraction" || "AppendDelimiterToRecord", // required
435
+ * Parameters: [
436
+ * {
437
+ * ParameterName: "LambdaArn" || "NumberOfRetries" || "MetadataExtractionQuery" || "JsonParsingEngine" || "RoleArn" || "BufferSizeInMBs" || "BufferIntervalInSeconds" || "SubRecordType" || "Delimiter", // required
438
+ * ParameterValue: "STRING_VALUE", // required
439
+ * },
440
+ * ],
441
+ * },
442
+ * ],
443
+ * },
444
+ * CloudWatchLoggingOptions: {
445
+ * Enabled: true || false,
446
+ * LogGroupName: "STRING_VALUE",
447
+ * LogStreamName: "STRING_VALUE",
448
+ * },
449
+ * VpcConfiguration: {
450
+ * SubnetIds: [ // required
451
+ * "STRING_VALUE",
452
+ * ],
453
+ * RoleARN: "STRING_VALUE", // required
454
+ * SecurityGroupIds: [ // required
455
+ * "STRING_VALUE",
456
+ * ],
457
+ * },
458
+ * },
459
+ * SplunkDestinationConfiguration: {
460
+ * HECEndpoint: "STRING_VALUE", // required
461
+ * HECEndpointType: "Raw" || "Event", // required
462
+ * HECToken: "STRING_VALUE", // required
463
+ * HECAcknowledgmentTimeoutInSeconds: Number("int"),
464
+ * RetryOptions: {
465
+ * DurationInSeconds: Number("int"),
466
+ * },
467
+ * S3BackupMode: "FailedEventsOnly" || "AllEvents",
468
+ * S3Configuration: {
469
+ * RoleARN: "STRING_VALUE", // required
470
+ * BucketARN: "STRING_VALUE", // required
471
+ * Prefix: "STRING_VALUE",
472
+ * ErrorOutputPrefix: "STRING_VALUE",
473
+ * BufferingHints: {
474
+ * SizeInMBs: Number("int"),
475
+ * IntervalInSeconds: Number("int"),
476
+ * },
477
+ * CompressionFormat: "UNCOMPRESSED" || "GZIP" || "ZIP" || "Snappy" || "HADOOP_SNAPPY",
478
+ * EncryptionConfiguration: {
479
+ * NoEncryptionConfig: "NoEncryption",
480
+ * KMSEncryptionConfig: {
481
+ * AWSKMSKeyARN: "STRING_VALUE", // required
482
+ * },
483
+ * },
484
+ * CloudWatchLoggingOptions: {
485
+ * Enabled: true || false,
486
+ * LogGroupName: "STRING_VALUE",
487
+ * LogStreamName: "STRING_VALUE",
488
+ * },
489
+ * },
490
+ * ProcessingConfiguration: {
491
+ * Enabled: true || false,
492
+ * Processors: [
493
+ * {
494
+ * Type: "RecordDeAggregation" || "Lambda" || "MetadataExtraction" || "AppendDelimiterToRecord", // required
495
+ * Parameters: [
496
+ * {
497
+ * ParameterName: "LambdaArn" || "NumberOfRetries" || "MetadataExtractionQuery" || "JsonParsingEngine" || "RoleArn" || "BufferSizeInMBs" || "BufferIntervalInSeconds" || "SubRecordType" || "Delimiter", // required
498
+ * ParameterValue: "STRING_VALUE", // required
499
+ * },
500
+ * ],
501
+ * },
502
+ * ],
503
+ * },
504
+ * CloudWatchLoggingOptions: {
505
+ * Enabled: true || false,
506
+ * LogGroupName: "STRING_VALUE",
507
+ * LogStreamName: "STRING_VALUE",
508
+ * },
509
+ * },
510
+ * HttpEndpointDestinationConfiguration: {
511
+ * EndpointConfiguration: {
512
+ * Url: "STRING_VALUE", // required
513
+ * Name: "STRING_VALUE",
514
+ * AccessKey: "STRING_VALUE",
515
+ * },
516
+ * BufferingHints: {
517
+ * SizeInMBs: Number("int"),
518
+ * IntervalInSeconds: Number("int"),
519
+ * },
520
+ * CloudWatchLoggingOptions: {
521
+ * Enabled: true || false,
522
+ * LogGroupName: "STRING_VALUE",
523
+ * LogStreamName: "STRING_VALUE",
524
+ * },
525
+ * RequestConfiguration: {
526
+ * ContentEncoding: "NONE" || "GZIP",
527
+ * CommonAttributes: [
528
+ * {
529
+ * AttributeName: "STRING_VALUE", // required
530
+ * AttributeValue: "STRING_VALUE", // required
531
+ * },
532
+ * ],
533
+ * },
534
+ * ProcessingConfiguration: {
535
+ * Enabled: true || false,
536
+ * Processors: [
537
+ * {
538
+ * Type: "RecordDeAggregation" || "Lambda" || "MetadataExtraction" || "AppendDelimiterToRecord", // required
539
+ * Parameters: [
540
+ * {
541
+ * ParameterName: "LambdaArn" || "NumberOfRetries" || "MetadataExtractionQuery" || "JsonParsingEngine" || "RoleArn" || "BufferSizeInMBs" || "BufferIntervalInSeconds" || "SubRecordType" || "Delimiter", // required
542
+ * ParameterValue: "STRING_VALUE", // required
543
+ * },
544
+ * ],
545
+ * },
546
+ * ],
547
+ * },
548
+ * RoleARN: "STRING_VALUE",
549
+ * RetryOptions: {
550
+ * DurationInSeconds: Number("int"),
551
+ * },
552
+ * S3BackupMode: "FailedDataOnly" || "AllData",
553
+ * S3Configuration: {
554
+ * RoleARN: "STRING_VALUE", // required
555
+ * BucketARN: "STRING_VALUE", // required
556
+ * Prefix: "STRING_VALUE",
557
+ * ErrorOutputPrefix: "STRING_VALUE",
558
+ * BufferingHints: {
559
+ * SizeInMBs: Number("int"),
560
+ * IntervalInSeconds: Number("int"),
561
+ * },
562
+ * CompressionFormat: "UNCOMPRESSED" || "GZIP" || "ZIP" || "Snappy" || "HADOOP_SNAPPY",
563
+ * EncryptionConfiguration: {
564
+ * NoEncryptionConfig: "NoEncryption",
565
+ * KMSEncryptionConfig: {
566
+ * AWSKMSKeyARN: "STRING_VALUE", // required
567
+ * },
568
+ * },
569
+ * CloudWatchLoggingOptions: {
570
+ * Enabled: true || false,
571
+ * LogGroupName: "STRING_VALUE",
572
+ * LogStreamName: "STRING_VALUE",
573
+ * },
574
+ * },
575
+ * },
576
+ * Tags: [
577
+ * {
578
+ * Key: "STRING_VALUE", // required
579
+ * Value: "STRING_VALUE",
580
+ * },
581
+ * ],
582
+ * AmazonOpenSearchServerlessDestinationConfiguration: {
583
+ * RoleARN: "STRING_VALUE", // required
584
+ * CollectionEndpoint: "STRING_VALUE",
585
+ * IndexName: "STRING_VALUE", // required
586
+ * BufferingHints: {
587
+ * IntervalInSeconds: Number("int"),
588
+ * SizeInMBs: Number("int"),
589
+ * },
590
+ * RetryOptions: {
591
+ * DurationInSeconds: Number("int"),
592
+ * },
593
+ * S3BackupMode: "FailedDocumentsOnly" || "AllDocuments",
594
+ * S3Configuration: {
595
+ * RoleARN: "STRING_VALUE", // required
596
+ * BucketARN: "STRING_VALUE", // required
597
+ * Prefix: "STRING_VALUE",
598
+ * ErrorOutputPrefix: "STRING_VALUE",
599
+ * BufferingHints: {
600
+ * SizeInMBs: Number("int"),
601
+ * IntervalInSeconds: Number("int"),
602
+ * },
603
+ * CompressionFormat: "UNCOMPRESSED" || "GZIP" || "ZIP" || "Snappy" || "HADOOP_SNAPPY",
604
+ * EncryptionConfiguration: {
605
+ * NoEncryptionConfig: "NoEncryption",
606
+ * KMSEncryptionConfig: {
607
+ * AWSKMSKeyARN: "STRING_VALUE", // required
608
+ * },
609
+ * },
610
+ * CloudWatchLoggingOptions: {
611
+ * Enabled: true || false,
612
+ * LogGroupName: "STRING_VALUE",
613
+ * LogStreamName: "STRING_VALUE",
614
+ * },
615
+ * },
616
+ * ProcessingConfiguration: {
617
+ * Enabled: true || false,
618
+ * Processors: [
619
+ * {
620
+ * Type: "RecordDeAggregation" || "Lambda" || "MetadataExtraction" || "AppendDelimiterToRecord", // required
621
+ * Parameters: [
622
+ * {
623
+ * ParameterName: "LambdaArn" || "NumberOfRetries" || "MetadataExtractionQuery" || "JsonParsingEngine" || "RoleArn" || "BufferSizeInMBs" || "BufferIntervalInSeconds" || "SubRecordType" || "Delimiter", // required
624
+ * ParameterValue: "STRING_VALUE", // required
625
+ * },
626
+ * ],
627
+ * },
628
+ * ],
629
+ * },
630
+ * CloudWatchLoggingOptions: {
631
+ * Enabled: true || false,
632
+ * LogGroupName: "STRING_VALUE",
633
+ * LogStreamName: "STRING_VALUE",
634
+ * },
635
+ * VpcConfiguration: {
636
+ * SubnetIds: [ // required
637
+ * "STRING_VALUE",
638
+ * ],
639
+ * RoleARN: "STRING_VALUE", // required
640
+ * SecurityGroupIds: [ // required
641
+ * "STRING_VALUE",
642
+ * ],
643
+ * },
644
+ * },
645
+ * };
98
646
  * const command = new CreateDeliveryStreamCommand(input);
99
647
  * const response = await client.send(command);
100
648
  * ```
@@ -35,6 +35,10 @@ export interface DeleteDeliveryStreamCommandOutput extends DeleteDeliveryStreamO
35
35
  * import { FirehoseClient, DeleteDeliveryStreamCommand } from "@aws-sdk/client-firehose"; // ES Modules import
36
36
  * // const { FirehoseClient, DeleteDeliveryStreamCommand } = require("@aws-sdk/client-firehose"); // CommonJS import
37
37
  * const client = new FirehoseClient(config);
38
+ * const input = {
39
+ * DeliveryStreamName: "STRING_VALUE", // required
40
+ * AllowForceDelete: true || false,
41
+ * };
38
42
  * const command = new DeleteDeliveryStreamCommand(input);
39
43
  * const response = await client.send(command);
40
44
  * ```
@@ -32,6 +32,11 @@ export interface DescribeDeliveryStreamCommandOutput extends DescribeDeliveryStr
32
32
  * import { FirehoseClient, DescribeDeliveryStreamCommand } from "@aws-sdk/client-firehose"; // ES Modules import
33
33
  * // const { FirehoseClient, DescribeDeliveryStreamCommand } = require("@aws-sdk/client-firehose"); // CommonJS import
34
34
  * const client = new FirehoseClient(config);
35
+ * const input = {
36
+ * DeliveryStreamName: "STRING_VALUE", // required
37
+ * Limit: Number("int"),
38
+ * ExclusiveStartDestinationId: "STRING_VALUE",
39
+ * };
35
40
  * const command = new DescribeDeliveryStreamCommand(input);
36
41
  * const response = await client.send(command);
37
42
  * ```
@@ -33,6 +33,11 @@ export interface ListDeliveryStreamsCommandOutput extends ListDeliveryStreamsOut
33
33
  * import { FirehoseClient, ListDeliveryStreamsCommand } from "@aws-sdk/client-firehose"; // ES Modules import
34
34
  * // const { FirehoseClient, ListDeliveryStreamsCommand } = require("@aws-sdk/client-firehose"); // CommonJS import
35
35
  * const client = new FirehoseClient(config);
36
+ * const input = {
37
+ * Limit: Number("int"),
38
+ * DeliveryStreamType: "DirectPut" || "KinesisStreamAsSource",
39
+ * ExclusiveStartDeliveryStreamName: "STRING_VALUE",
40
+ * };
36
41
  * const command = new ListDeliveryStreamsCommand(input);
37
42
  * const response = await client.send(command);
38
43
  * ```
@@ -27,6 +27,11 @@ export interface ListTagsForDeliveryStreamCommandOutput extends ListTagsForDeliv
27
27
  * import { FirehoseClient, ListTagsForDeliveryStreamCommand } from "@aws-sdk/client-firehose"; // ES Modules import
28
28
  * // const { FirehoseClient, ListTagsForDeliveryStreamCommand } = require("@aws-sdk/client-firehose"); // CommonJS import
29
29
  * const client = new FirehoseClient(config);
30
+ * const input = {
31
+ * DeliveryStreamName: "STRING_VALUE", // required
32
+ * ExclusiveStartTagKey: "STRING_VALUE",
33
+ * Limit: Number("int"),
34
+ * };
30
35
  * const command = new ListTagsForDeliveryStreamCommand(input);
31
36
  * const response = await client.send(command);
32
37
  * ```
@@ -76,6 +76,14 @@ export interface PutRecordBatchCommandOutput extends PutRecordBatchOutput, __Met
76
76
  * import { FirehoseClient, PutRecordBatchCommand } from "@aws-sdk/client-firehose"; // ES Modules import
77
77
  * // const { FirehoseClient, PutRecordBatchCommand } = require("@aws-sdk/client-firehose"); // CommonJS import
78
78
  * const client = new FirehoseClient(config);
79
+ * const input = {
80
+ * DeliveryStreamName: "STRING_VALUE", // required
81
+ * Records: [ // required
82
+ * {
83
+ * Data: "BLOB_VALUE", // required
84
+ * },
85
+ * ],
86
+ * };
79
87
  * const command = new PutRecordBatchCommand(input);
80
88
  * const response = await client.send(command);
81
89
  * ```
@@ -57,6 +57,12 @@ export interface PutRecordCommandOutput extends PutRecordOutput, __MetadataBeare
57
57
  * import { FirehoseClient, PutRecordCommand } from "@aws-sdk/client-firehose"; // ES Modules import
58
58
  * // const { FirehoseClient, PutRecordCommand } = require("@aws-sdk/client-firehose"); // CommonJS import
59
59
  * const client = new FirehoseClient(config);
60
+ * const input = {
61
+ * DeliveryStreamName: "STRING_VALUE", // required
62
+ * Record: {
63
+ * Data: "BLOB_VALUE", // required
64
+ * },
65
+ * };
60
66
  * const command = new PutRecordCommand(input);
61
67
  * const response = await client.send(command);
62
68
  * ```
@@ -61,6 +61,13 @@ export interface StartDeliveryStreamEncryptionCommandOutput extends StartDeliver
61
61
  * import { FirehoseClient, StartDeliveryStreamEncryptionCommand } from "@aws-sdk/client-firehose"; // ES Modules import
62
62
  * // const { FirehoseClient, StartDeliveryStreamEncryptionCommand } = require("@aws-sdk/client-firehose"); // CommonJS import
63
63
  * const client = new FirehoseClient(config);
64
+ * const input = {
65
+ * DeliveryStreamName: "STRING_VALUE", // required
66
+ * DeliveryStreamEncryptionConfigurationInput: {
67
+ * KeyARN: "STRING_VALUE",
68
+ * KeyType: "AWS_OWNED_CMK" || "CUSTOMER_MANAGED_CMK", // required
69
+ * },
70
+ * };
64
71
  * const command = new StartDeliveryStreamEncryptionCommand(input);
65
72
  * const response = await client.send(command);
66
73
  * ```
@@ -45,6 +45,9 @@ export interface StopDeliveryStreamEncryptionCommandOutput extends StopDeliveryS
45
45
  * import { FirehoseClient, StopDeliveryStreamEncryptionCommand } from "@aws-sdk/client-firehose"; // ES Modules import
46
46
  * // const { FirehoseClient, StopDeliveryStreamEncryptionCommand } = require("@aws-sdk/client-firehose"); // CommonJS import
47
47
  * const client = new FirehoseClient(config);
48
+ * const input = {
49
+ * DeliveryStreamName: "STRING_VALUE", // required
50
+ * };
48
51
  * const command = new StopDeliveryStreamEncryptionCommand(input);
49
52
  * const response = await client.send(command);
50
53
  * ```
@@ -35,6 +35,15 @@ export interface TagDeliveryStreamCommandOutput extends TagDeliveryStreamOutput,
35
35
  * import { FirehoseClient, TagDeliveryStreamCommand } from "@aws-sdk/client-firehose"; // ES Modules import
36
36
  * // const { FirehoseClient, TagDeliveryStreamCommand } = require("@aws-sdk/client-firehose"); // CommonJS import
37
37
  * const client = new FirehoseClient(config);
38
+ * const input = {
39
+ * DeliveryStreamName: "STRING_VALUE", // required
40
+ * Tags: [ // required
41
+ * {
42
+ * Key: "STRING_VALUE", // required
43
+ * Value: "STRING_VALUE",
44
+ * },
45
+ * ],
46
+ * };
38
47
  * const command = new TagDeliveryStreamCommand(input);
39
48
  * const response = await client.send(command);
40
49
  * ```
@@ -29,6 +29,12 @@ export interface UntagDeliveryStreamCommandOutput extends UntagDeliveryStreamOut
29
29
  * import { FirehoseClient, UntagDeliveryStreamCommand } from "@aws-sdk/client-firehose"; // ES Modules import
30
30
  * // const { FirehoseClient, UntagDeliveryStreamCommand } = require("@aws-sdk/client-firehose"); // CommonJS import
31
31
  * const client = new FirehoseClient(config);
32
+ * const input = {
33
+ * DeliveryStreamName: "STRING_VALUE", // required
34
+ * TagKeys: [ // required
35
+ * "STRING_VALUE",
36
+ * ],
37
+ * };
32
38
  * const command = new UntagDeliveryStreamCommand(input);
33
39
  * const response = await client.send(command);
34
40
  * ```
@@ -49,6 +49,511 @@ export interface UpdateDestinationCommandOutput extends UpdateDestinationOutput,
49
49
  * import { FirehoseClient, UpdateDestinationCommand } from "@aws-sdk/client-firehose"; // ES Modules import
50
50
  * // const { FirehoseClient, UpdateDestinationCommand } = require("@aws-sdk/client-firehose"); // CommonJS import
51
51
  * const client = new FirehoseClient(config);
52
+ * const input = {
53
+ * DeliveryStreamName: "STRING_VALUE", // required
54
+ * CurrentDeliveryStreamVersionId: "STRING_VALUE", // required
55
+ * DestinationId: "STRING_VALUE", // required
56
+ * S3DestinationUpdate: {
57
+ * RoleARN: "STRING_VALUE",
58
+ * BucketARN: "STRING_VALUE",
59
+ * Prefix: "STRING_VALUE",
60
+ * ErrorOutputPrefix: "STRING_VALUE",
61
+ * BufferingHints: {
62
+ * SizeInMBs: Number("int"),
63
+ * IntervalInSeconds: Number("int"),
64
+ * },
65
+ * CompressionFormat: "UNCOMPRESSED" || "GZIP" || "ZIP" || "Snappy" || "HADOOP_SNAPPY",
66
+ * EncryptionConfiguration: {
67
+ * NoEncryptionConfig: "NoEncryption",
68
+ * KMSEncryptionConfig: {
69
+ * AWSKMSKeyARN: "STRING_VALUE", // required
70
+ * },
71
+ * },
72
+ * CloudWatchLoggingOptions: {
73
+ * Enabled: true || false,
74
+ * LogGroupName: "STRING_VALUE",
75
+ * LogStreamName: "STRING_VALUE",
76
+ * },
77
+ * },
78
+ * ExtendedS3DestinationUpdate: {
79
+ * RoleARN: "STRING_VALUE",
80
+ * BucketARN: "STRING_VALUE",
81
+ * Prefix: "STRING_VALUE",
82
+ * ErrorOutputPrefix: "STRING_VALUE",
83
+ * BufferingHints: {
84
+ * SizeInMBs: Number("int"),
85
+ * IntervalInSeconds: Number("int"),
86
+ * },
87
+ * CompressionFormat: "UNCOMPRESSED" || "GZIP" || "ZIP" || "Snappy" || "HADOOP_SNAPPY",
88
+ * EncryptionConfiguration: {
89
+ * NoEncryptionConfig: "NoEncryption",
90
+ * KMSEncryptionConfig: {
91
+ * AWSKMSKeyARN: "STRING_VALUE", // required
92
+ * },
93
+ * },
94
+ * CloudWatchLoggingOptions: {
95
+ * Enabled: true || false,
96
+ * LogGroupName: "STRING_VALUE",
97
+ * LogStreamName: "STRING_VALUE",
98
+ * },
99
+ * ProcessingConfiguration: {
100
+ * Enabled: true || false,
101
+ * Processors: [
102
+ * {
103
+ * Type: "RecordDeAggregation" || "Lambda" || "MetadataExtraction" || "AppendDelimiterToRecord", // required
104
+ * Parameters: [
105
+ * {
106
+ * ParameterName: "LambdaArn" || "NumberOfRetries" || "MetadataExtractionQuery" || "JsonParsingEngine" || "RoleArn" || "BufferSizeInMBs" || "BufferIntervalInSeconds" || "SubRecordType" || "Delimiter", // required
107
+ * ParameterValue: "STRING_VALUE", // required
108
+ * },
109
+ * ],
110
+ * },
111
+ * ],
112
+ * },
113
+ * S3BackupMode: "Disabled" || "Enabled",
114
+ * S3BackupUpdate: {
115
+ * RoleARN: "STRING_VALUE",
116
+ * BucketARN: "STRING_VALUE",
117
+ * Prefix: "STRING_VALUE",
118
+ * ErrorOutputPrefix: "STRING_VALUE",
119
+ * BufferingHints: {
120
+ * SizeInMBs: Number("int"),
121
+ * IntervalInSeconds: Number("int"),
122
+ * },
123
+ * CompressionFormat: "UNCOMPRESSED" || "GZIP" || "ZIP" || "Snappy" || "HADOOP_SNAPPY",
124
+ * EncryptionConfiguration: {
125
+ * NoEncryptionConfig: "NoEncryption",
126
+ * KMSEncryptionConfig: {
127
+ * AWSKMSKeyARN: "STRING_VALUE", // required
128
+ * },
129
+ * },
130
+ * CloudWatchLoggingOptions: {
131
+ * Enabled: true || false,
132
+ * LogGroupName: "STRING_VALUE",
133
+ * LogStreamName: "STRING_VALUE",
134
+ * },
135
+ * },
136
+ * DataFormatConversionConfiguration: {
137
+ * SchemaConfiguration: {
138
+ * RoleARN: "STRING_VALUE",
139
+ * CatalogId: "STRING_VALUE",
140
+ * DatabaseName: "STRING_VALUE",
141
+ * TableName: "STRING_VALUE",
142
+ * Region: "STRING_VALUE",
143
+ * VersionId: "STRING_VALUE",
144
+ * },
145
+ * InputFormatConfiguration: {
146
+ * Deserializer: {
147
+ * OpenXJsonSerDe: {
148
+ * ConvertDotsInJsonKeysToUnderscores: true || false,
149
+ * CaseInsensitive: true || false,
150
+ * ColumnToJsonKeyMappings: {
151
+ * "<keys>": "STRING_VALUE",
152
+ * },
153
+ * },
154
+ * HiveJsonSerDe: {
155
+ * TimestampFormats: [
156
+ * "STRING_VALUE",
157
+ * ],
158
+ * },
159
+ * },
160
+ * },
161
+ * OutputFormatConfiguration: {
162
+ * Serializer: {
163
+ * ParquetSerDe: {
164
+ * BlockSizeBytes: Number("int"),
165
+ * PageSizeBytes: Number("int"),
166
+ * Compression: "UNCOMPRESSED" || "GZIP" || "SNAPPY",
167
+ * EnableDictionaryCompression: true || false,
168
+ * MaxPaddingBytes: Number("int"),
169
+ * WriterVersion: "V1" || "V2",
170
+ * },
171
+ * OrcSerDe: {
172
+ * StripeSizeBytes: Number("int"),
173
+ * BlockSizeBytes: Number("int"),
174
+ * RowIndexStride: Number("int"),
175
+ * EnablePadding: true || false,
176
+ * PaddingTolerance: Number("double"),
177
+ * Compression: "NONE" || "ZLIB" || "SNAPPY",
178
+ * BloomFilterColumns: [
179
+ * "STRING_VALUE",
180
+ * ],
181
+ * BloomFilterFalsePositiveProbability: Number("double"),
182
+ * DictionaryKeyThreshold: Number("double"),
183
+ * FormatVersion: "V0_11" || "V0_12",
184
+ * },
185
+ * },
186
+ * },
187
+ * Enabled: true || false,
188
+ * },
189
+ * DynamicPartitioningConfiguration: {
190
+ * RetryOptions: {
191
+ * DurationInSeconds: Number("int"),
192
+ * },
193
+ * Enabled: true || false,
194
+ * },
195
+ * },
196
+ * RedshiftDestinationUpdate: {
197
+ * RoleARN: "STRING_VALUE",
198
+ * ClusterJDBCURL: "STRING_VALUE",
199
+ * CopyCommand: {
200
+ * DataTableName: "STRING_VALUE", // required
201
+ * DataTableColumns: "STRING_VALUE",
202
+ * CopyOptions: "STRING_VALUE",
203
+ * },
204
+ * Username: "STRING_VALUE",
205
+ * Password: "STRING_VALUE",
206
+ * RetryOptions: {
207
+ * DurationInSeconds: Number("int"),
208
+ * },
209
+ * S3Update: {
210
+ * RoleARN: "STRING_VALUE",
211
+ * BucketARN: "STRING_VALUE",
212
+ * Prefix: "STRING_VALUE",
213
+ * ErrorOutputPrefix: "STRING_VALUE",
214
+ * BufferingHints: {
215
+ * SizeInMBs: Number("int"),
216
+ * IntervalInSeconds: Number("int"),
217
+ * },
218
+ * CompressionFormat: "UNCOMPRESSED" || "GZIP" || "ZIP" || "Snappy" || "HADOOP_SNAPPY",
219
+ * EncryptionConfiguration: {
220
+ * NoEncryptionConfig: "NoEncryption",
221
+ * KMSEncryptionConfig: {
222
+ * AWSKMSKeyARN: "STRING_VALUE", // required
223
+ * },
224
+ * },
225
+ * CloudWatchLoggingOptions: {
226
+ * Enabled: true || false,
227
+ * LogGroupName: "STRING_VALUE",
228
+ * LogStreamName: "STRING_VALUE",
229
+ * },
230
+ * },
231
+ * ProcessingConfiguration: {
232
+ * Enabled: true || false,
233
+ * Processors: [
234
+ * {
235
+ * Type: "RecordDeAggregation" || "Lambda" || "MetadataExtraction" || "AppendDelimiterToRecord", // required
236
+ * Parameters: [
237
+ * {
238
+ * ParameterName: "LambdaArn" || "NumberOfRetries" || "MetadataExtractionQuery" || "JsonParsingEngine" || "RoleArn" || "BufferSizeInMBs" || "BufferIntervalInSeconds" || "SubRecordType" || "Delimiter", // required
239
+ * ParameterValue: "STRING_VALUE", // required
240
+ * },
241
+ * ],
242
+ * },
243
+ * ],
244
+ * },
245
+ * S3BackupMode: "Disabled" || "Enabled",
246
+ * S3BackupUpdate: {
247
+ * RoleARN: "STRING_VALUE",
248
+ * BucketARN: "STRING_VALUE",
249
+ * Prefix: "STRING_VALUE",
250
+ * ErrorOutputPrefix: "STRING_VALUE",
251
+ * BufferingHints: {
252
+ * SizeInMBs: Number("int"),
253
+ * IntervalInSeconds: Number("int"),
254
+ * },
255
+ * CompressionFormat: "UNCOMPRESSED" || "GZIP" || "ZIP" || "Snappy" || "HADOOP_SNAPPY",
256
+ * EncryptionConfiguration: {
257
+ * NoEncryptionConfig: "NoEncryption",
258
+ * KMSEncryptionConfig: {
259
+ * AWSKMSKeyARN: "STRING_VALUE", // required
260
+ * },
261
+ * },
262
+ * CloudWatchLoggingOptions: {
263
+ * Enabled: true || false,
264
+ * LogGroupName: "STRING_VALUE",
265
+ * LogStreamName: "STRING_VALUE",
266
+ * },
267
+ * },
268
+ * CloudWatchLoggingOptions: {
269
+ * Enabled: true || false,
270
+ * LogGroupName: "STRING_VALUE",
271
+ * LogStreamName: "STRING_VALUE",
272
+ * },
273
+ * },
274
+ * ElasticsearchDestinationUpdate: {
275
+ * RoleARN: "STRING_VALUE",
276
+ * DomainARN: "STRING_VALUE",
277
+ * ClusterEndpoint: "STRING_VALUE",
278
+ * IndexName: "STRING_VALUE",
279
+ * TypeName: "STRING_VALUE",
280
+ * IndexRotationPeriod: "NoRotation" || "OneHour" || "OneDay" || "OneWeek" || "OneMonth",
281
+ * BufferingHints: {
282
+ * IntervalInSeconds: Number("int"),
283
+ * SizeInMBs: Number("int"),
284
+ * },
285
+ * RetryOptions: {
286
+ * DurationInSeconds: Number("int"),
287
+ * },
288
+ * S3Update: {
289
+ * RoleARN: "STRING_VALUE",
290
+ * BucketARN: "STRING_VALUE",
291
+ * Prefix: "STRING_VALUE",
292
+ * ErrorOutputPrefix: "STRING_VALUE",
293
+ * BufferingHints: {
294
+ * SizeInMBs: Number("int"),
295
+ * IntervalInSeconds: Number("int"),
296
+ * },
297
+ * CompressionFormat: "UNCOMPRESSED" || "GZIP" || "ZIP" || "Snappy" || "HADOOP_SNAPPY",
298
+ * EncryptionConfiguration: {
299
+ * NoEncryptionConfig: "NoEncryption",
300
+ * KMSEncryptionConfig: {
301
+ * AWSKMSKeyARN: "STRING_VALUE", // required
302
+ * },
303
+ * },
304
+ * CloudWatchLoggingOptions: {
305
+ * Enabled: true || false,
306
+ * LogGroupName: "STRING_VALUE",
307
+ * LogStreamName: "STRING_VALUE",
308
+ * },
309
+ * },
310
+ * ProcessingConfiguration: {
311
+ * Enabled: true || false,
312
+ * Processors: [
313
+ * {
314
+ * Type: "RecordDeAggregation" || "Lambda" || "MetadataExtraction" || "AppendDelimiterToRecord", // required
315
+ * Parameters: [
316
+ * {
317
+ * ParameterName: "LambdaArn" || "NumberOfRetries" || "MetadataExtractionQuery" || "JsonParsingEngine" || "RoleArn" || "BufferSizeInMBs" || "BufferIntervalInSeconds" || "SubRecordType" || "Delimiter", // required
318
+ * ParameterValue: "STRING_VALUE", // required
319
+ * },
320
+ * ],
321
+ * },
322
+ * ],
323
+ * },
324
+ * CloudWatchLoggingOptions: {
325
+ * Enabled: true || false,
326
+ * LogGroupName: "STRING_VALUE",
327
+ * LogStreamName: "STRING_VALUE",
328
+ * },
329
+ * },
330
+ * AmazonopensearchserviceDestinationUpdate: {
331
+ * RoleARN: "STRING_VALUE",
332
+ * DomainARN: "STRING_VALUE",
333
+ * ClusterEndpoint: "STRING_VALUE",
334
+ * IndexName: "STRING_VALUE",
335
+ * TypeName: "STRING_VALUE",
336
+ * IndexRotationPeriod: "NoRotation" || "OneHour" || "OneDay" || "OneWeek" || "OneMonth",
337
+ * BufferingHints: {
338
+ * IntervalInSeconds: Number("int"),
339
+ * SizeInMBs: Number("int"),
340
+ * },
341
+ * RetryOptions: {
342
+ * DurationInSeconds: Number("int"),
343
+ * },
344
+ * S3Update: {
345
+ * RoleARN: "STRING_VALUE",
346
+ * BucketARN: "STRING_VALUE",
347
+ * Prefix: "STRING_VALUE",
348
+ * ErrorOutputPrefix: "STRING_VALUE",
349
+ * BufferingHints: {
350
+ * SizeInMBs: Number("int"),
351
+ * IntervalInSeconds: Number("int"),
352
+ * },
353
+ * CompressionFormat: "UNCOMPRESSED" || "GZIP" || "ZIP" || "Snappy" || "HADOOP_SNAPPY",
354
+ * EncryptionConfiguration: {
355
+ * NoEncryptionConfig: "NoEncryption",
356
+ * KMSEncryptionConfig: {
357
+ * AWSKMSKeyARN: "STRING_VALUE", // required
358
+ * },
359
+ * },
360
+ * CloudWatchLoggingOptions: {
361
+ * Enabled: true || false,
362
+ * LogGroupName: "STRING_VALUE",
363
+ * LogStreamName: "STRING_VALUE",
364
+ * },
365
+ * },
366
+ * ProcessingConfiguration: {
367
+ * Enabled: true || false,
368
+ * Processors: [
369
+ * {
370
+ * Type: "RecordDeAggregation" || "Lambda" || "MetadataExtraction" || "AppendDelimiterToRecord", // required
371
+ * Parameters: [
372
+ * {
373
+ * ParameterName: "LambdaArn" || "NumberOfRetries" || "MetadataExtractionQuery" || "JsonParsingEngine" || "RoleArn" || "BufferSizeInMBs" || "BufferIntervalInSeconds" || "SubRecordType" || "Delimiter", // required
374
+ * ParameterValue: "STRING_VALUE", // required
375
+ * },
376
+ * ],
377
+ * },
378
+ * ],
379
+ * },
380
+ * CloudWatchLoggingOptions: {
381
+ * Enabled: true || false,
382
+ * LogGroupName: "STRING_VALUE",
383
+ * LogStreamName: "STRING_VALUE",
384
+ * },
385
+ * },
386
+ * SplunkDestinationUpdate: {
387
+ * HECEndpoint: "STRING_VALUE",
388
+ * HECEndpointType: "Raw" || "Event",
389
+ * HECToken: "STRING_VALUE",
390
+ * HECAcknowledgmentTimeoutInSeconds: Number("int"),
391
+ * RetryOptions: {
392
+ * DurationInSeconds: Number("int"),
393
+ * },
394
+ * S3BackupMode: "FailedEventsOnly" || "AllEvents",
395
+ * S3Update: {
396
+ * RoleARN: "STRING_VALUE",
397
+ * BucketARN: "STRING_VALUE",
398
+ * Prefix: "STRING_VALUE",
399
+ * ErrorOutputPrefix: "STRING_VALUE",
400
+ * BufferingHints: {
401
+ * SizeInMBs: Number("int"),
402
+ * IntervalInSeconds: Number("int"),
403
+ * },
404
+ * CompressionFormat: "UNCOMPRESSED" || "GZIP" || "ZIP" || "Snappy" || "HADOOP_SNAPPY",
405
+ * EncryptionConfiguration: {
406
+ * NoEncryptionConfig: "NoEncryption",
407
+ * KMSEncryptionConfig: {
408
+ * AWSKMSKeyARN: "STRING_VALUE", // required
409
+ * },
410
+ * },
411
+ * CloudWatchLoggingOptions: {
412
+ * Enabled: true || false,
413
+ * LogGroupName: "STRING_VALUE",
414
+ * LogStreamName: "STRING_VALUE",
415
+ * },
416
+ * },
417
+ * ProcessingConfiguration: {
418
+ * Enabled: true || false,
419
+ * Processors: [
420
+ * {
421
+ * Type: "RecordDeAggregation" || "Lambda" || "MetadataExtraction" || "AppendDelimiterToRecord", // required
422
+ * Parameters: [
423
+ * {
424
+ * ParameterName: "LambdaArn" || "NumberOfRetries" || "MetadataExtractionQuery" || "JsonParsingEngine" || "RoleArn" || "BufferSizeInMBs" || "BufferIntervalInSeconds" || "SubRecordType" || "Delimiter", // required
425
+ * ParameterValue: "STRING_VALUE", // required
426
+ * },
427
+ * ],
428
+ * },
429
+ * ],
430
+ * },
431
+ * CloudWatchLoggingOptions: {
432
+ * Enabled: true || false,
433
+ * LogGroupName: "STRING_VALUE",
434
+ * LogStreamName: "STRING_VALUE",
435
+ * },
436
+ * },
437
+ * HttpEndpointDestinationUpdate: {
438
+ * EndpointConfiguration: {
439
+ * Url: "STRING_VALUE", // required
440
+ * Name: "STRING_VALUE",
441
+ * AccessKey: "STRING_VALUE",
442
+ * },
443
+ * BufferingHints: {
444
+ * SizeInMBs: Number("int"),
445
+ * IntervalInSeconds: Number("int"),
446
+ * },
447
+ * CloudWatchLoggingOptions: {
448
+ * Enabled: true || false,
449
+ * LogGroupName: "STRING_VALUE",
450
+ * LogStreamName: "STRING_VALUE",
451
+ * },
452
+ * RequestConfiguration: {
453
+ * ContentEncoding: "NONE" || "GZIP",
454
+ * CommonAttributes: [
455
+ * {
456
+ * AttributeName: "STRING_VALUE", // required
457
+ * AttributeValue: "STRING_VALUE", // required
458
+ * },
459
+ * ],
460
+ * },
461
+ * ProcessingConfiguration: {
462
+ * Enabled: true || false,
463
+ * Processors: [
464
+ * {
465
+ * Type: "RecordDeAggregation" || "Lambda" || "MetadataExtraction" || "AppendDelimiterToRecord", // required
466
+ * Parameters: [
467
+ * {
468
+ * ParameterName: "LambdaArn" || "NumberOfRetries" || "MetadataExtractionQuery" || "JsonParsingEngine" || "RoleArn" || "BufferSizeInMBs" || "BufferIntervalInSeconds" || "SubRecordType" || "Delimiter", // required
469
+ * ParameterValue: "STRING_VALUE", // required
470
+ * },
471
+ * ],
472
+ * },
473
+ * ],
474
+ * },
475
+ * RoleARN: "STRING_VALUE",
476
+ * RetryOptions: {
477
+ * DurationInSeconds: Number("int"),
478
+ * },
479
+ * S3BackupMode: "FailedDataOnly" || "AllData",
480
+ * S3Update: {
481
+ * RoleARN: "STRING_VALUE",
482
+ * BucketARN: "STRING_VALUE",
483
+ * Prefix: "STRING_VALUE",
484
+ * ErrorOutputPrefix: "STRING_VALUE",
485
+ * BufferingHints: {
486
+ * SizeInMBs: Number("int"),
487
+ * IntervalInSeconds: Number("int"),
488
+ * },
489
+ * CompressionFormat: "UNCOMPRESSED" || "GZIP" || "ZIP" || "Snappy" || "HADOOP_SNAPPY",
490
+ * EncryptionConfiguration: {
491
+ * NoEncryptionConfig: "NoEncryption",
492
+ * KMSEncryptionConfig: {
493
+ * AWSKMSKeyARN: "STRING_VALUE", // required
494
+ * },
495
+ * },
496
+ * CloudWatchLoggingOptions: {
497
+ * Enabled: true || false,
498
+ * LogGroupName: "STRING_VALUE",
499
+ * LogStreamName: "STRING_VALUE",
500
+ * },
501
+ * },
502
+ * },
503
+ * AmazonOpenSearchServerlessDestinationUpdate: {
504
+ * RoleARN: "STRING_VALUE",
505
+ * CollectionEndpoint: "STRING_VALUE",
506
+ * IndexName: "STRING_VALUE",
507
+ * BufferingHints: {
508
+ * IntervalInSeconds: Number("int"),
509
+ * SizeInMBs: Number("int"),
510
+ * },
511
+ * RetryOptions: {
512
+ * DurationInSeconds: Number("int"),
513
+ * },
514
+ * S3Update: {
515
+ * RoleARN: "STRING_VALUE",
516
+ * BucketARN: "STRING_VALUE",
517
+ * Prefix: "STRING_VALUE",
518
+ * ErrorOutputPrefix: "STRING_VALUE",
519
+ * BufferingHints: {
520
+ * SizeInMBs: Number("int"),
521
+ * IntervalInSeconds: Number("int"),
522
+ * },
523
+ * CompressionFormat: "UNCOMPRESSED" || "GZIP" || "ZIP" || "Snappy" || "HADOOP_SNAPPY",
524
+ * EncryptionConfiguration: {
525
+ * NoEncryptionConfig: "NoEncryption",
526
+ * KMSEncryptionConfig: {
527
+ * AWSKMSKeyARN: "STRING_VALUE", // required
528
+ * },
529
+ * },
530
+ * CloudWatchLoggingOptions: {
531
+ * Enabled: true || false,
532
+ * LogGroupName: "STRING_VALUE",
533
+ * LogStreamName: "STRING_VALUE",
534
+ * },
535
+ * },
536
+ * ProcessingConfiguration: {
537
+ * Enabled: true || false,
538
+ * Processors: [
539
+ * {
540
+ * Type: "RecordDeAggregation" || "Lambda" || "MetadataExtraction" || "AppendDelimiterToRecord", // required
541
+ * Parameters: [
542
+ * {
543
+ * ParameterName: "LambdaArn" || "NumberOfRetries" || "MetadataExtractionQuery" || "JsonParsingEngine" || "RoleArn" || "BufferSizeInMBs" || "BufferIntervalInSeconds" || "SubRecordType" || "Delimiter", // required
544
+ * ParameterValue: "STRING_VALUE", // required
545
+ * },
546
+ * ],
547
+ * },
548
+ * ],
549
+ * },
550
+ * CloudWatchLoggingOptions: {
551
+ * Enabled: true || false,
552
+ * LogGroupName: "STRING_VALUE",
553
+ * LogStreamName: "STRING_VALUE",
554
+ * },
555
+ * },
556
+ * };
52
557
  * const command = new UpdateDestinationCommand(input);
53
558
  * const response = await client.send(command);
54
559
  * ```
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-firehose",
3
3
  "description": "AWS SDK for JavaScript Firehose Client for Node.js, Browser and React Native",
4
- "version": "3.299.0",
4
+ "version": "3.300.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.299.0",
25
- "@aws-sdk/config-resolver": "3.299.0",
26
- "@aws-sdk/credential-provider-node": "3.299.0",
24
+ "@aws-sdk/client-sts": "3.300.0",
25
+ "@aws-sdk/config-resolver": "3.300.0",
26
+ "@aws-sdk/credential-provider-node": "3.300.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.296.0",
28
28
  "@aws-sdk/hash-node": "3.296.0",
29
29
  "@aws-sdk/invalid-dependency": "3.296.0",
@@ -32,12 +32,12 @@
32
32
  "@aws-sdk/middleware-host-header": "3.296.0",
33
33
  "@aws-sdk/middleware-logger": "3.296.0",
34
34
  "@aws-sdk/middleware-recursion-detection": "3.296.0",
35
- "@aws-sdk/middleware-retry": "3.296.0",
35
+ "@aws-sdk/middleware-retry": "3.300.0",
36
36
  "@aws-sdk/middleware-serde": "3.296.0",
37
37
  "@aws-sdk/middleware-signing": "3.299.0",
38
38
  "@aws-sdk/middleware-stack": "3.296.0",
39
39
  "@aws-sdk/middleware-user-agent": "3.299.0",
40
- "@aws-sdk/node-config-provider": "3.296.0",
40
+ "@aws-sdk/node-config-provider": "3.300.0",
41
41
  "@aws-sdk/node-http-handler": "3.296.0",
42
42
  "@aws-sdk/protocol-http": "3.296.0",
43
43
  "@aws-sdk/smithy-client": "3.296.0",
@@ -47,11 +47,11 @@
47
47
  "@aws-sdk/util-body-length-browser": "3.295.0",
48
48
  "@aws-sdk/util-body-length-node": "3.295.0",
49
49
  "@aws-sdk/util-defaults-mode-browser": "3.296.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.299.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.300.0",
51
51
  "@aws-sdk/util-endpoints": "3.296.0",
52
52
  "@aws-sdk/util-retry": "3.296.0",
53
53
  "@aws-sdk/util-user-agent-browser": "3.299.0",
54
- "@aws-sdk/util-user-agent-node": "3.299.0",
54
+ "@aws-sdk/util-user-agent-node": "3.300.0",
55
55
  "@aws-sdk/util-utf8": "3.295.0",
56
56
  "tslib": "^2.5.0"
57
57
  },