@aws-sdk/client-firehose 3.515.0 → 3.516.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.
@@ -13,6 +13,7 @@ export declare const ProcessorParameterName: {
13
13
  readonly BUFFER_INTERVAL_IN_SECONDS: "BufferIntervalInSeconds";
14
14
  readonly BUFFER_SIZE_IN_MB: "BufferSizeInMBs";
15
15
  readonly COMPRESSION_FORMAT: "CompressionFormat";
16
+ readonly DATA_MESSAGE_EXTRACTION: "DataMessageExtraction";
16
17
  readonly Delimiter: "Delimiter";
17
18
  readonly JSON_PARSING_ENGINE: "JsonParsingEngine";
18
19
  readonly LAMBDA_ARN: "LambdaArn";
@@ -29,6 +30,7 @@ export interface ProcessorParameter {
29
30
  }
30
31
  export declare const ProcessorType: {
31
32
  readonly AppendDelimiterToRecord: "AppendDelimiterToRecord";
33
+ readonly CloudWatchLogProcessing: "CloudWatchLogProcessing";
32
34
  readonly Decompression: "Decompression";
33
35
  readonly Lambda: "Lambda";
34
36
  readonly MetadataExtraction: "MetadataExtraction";
@@ -421,6 +423,8 @@ export interface ExtendedS3DestinationConfiguration {
421
423
  S3BackupConfiguration?: S3DestinationConfiguration;
422
424
  DataFormatConversionConfiguration?: DataFormatConversionConfiguration;
423
425
  DynamicPartitioningConfiguration?: DynamicPartitioningConfiguration;
426
+ FileExtension?: string;
427
+ CustomTimeZone?: string;
424
428
  }
425
429
  export interface HttpEndpointBufferingHints {
426
430
  SizeInMBs?: number;
@@ -707,6 +711,8 @@ export interface ExtendedS3DestinationDescription {
707
711
  S3BackupDescription?: S3DestinationDescription;
708
712
  DataFormatConversionConfiguration?: DataFormatConversionConfiguration;
709
713
  DynamicPartitioningConfiguration?: DynamicPartitioningConfiguration;
714
+ FileExtension?: string;
715
+ CustomTimeZone?: string;
710
716
  }
711
717
  export interface HttpEndpointDescription {
712
718
  Url?: string;
@@ -842,6 +848,8 @@ export interface ExtendedS3DestinationUpdate {
842
848
  S3BackupUpdate?: S3DestinationUpdate;
843
849
  DataFormatConversionConfiguration?: DataFormatConversionConfiguration;
844
850
  DynamicPartitioningConfiguration?: DynamicPartitioningConfiguration;
851
+ FileExtension?: string;
852
+ CustomTimeZone?: string;
845
853
  }
846
854
  export interface ListDeliveryStreamsInput {
847
855
  Limit?: number;
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.515.0",
4
+ "version": "3.516.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-firehose",