@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.
- package/README.md +2 -2
- package/dist-cjs/index.js +8 -0
- package/dist-es/models/models_0.js +2 -0
- package/dist-es/protocols/Aws_json1_1.js +6 -0
- package/dist-types/Firehose.d.ts +2 -2
- package/dist-types/FirehoseClient.d.ts +2 -2
- package/dist-types/commands/CreateDeliveryStreamCommand.d.ts +21 -21
- package/dist-types/commands/DeleteDeliveryStreamCommand.d.ts +7 -4
- package/dist-types/commands/DescribeDeliveryStreamCommand.d.ts +12 -10
- package/dist-types/commands/PutRecordBatchCommand.d.ts +7 -7
- package/dist-types/commands/PutRecordCommand.d.ts +7 -7
- package/dist-types/commands/StartDeliveryStreamEncryptionCommand.d.ts +6 -7
- package/dist-types/commands/StopDeliveryStreamEncryptionCommand.d.ts +2 -3
- package/dist-types/commands/UpdateDestinationCommand.d.ts +15 -13
- package/dist-types/index.d.ts +2 -2
- package/dist-types/models/models_0.d.ts +216 -196
- package/dist-types/ts3.4/models/models_0.d.ts +8 -0
- package/package.json +1 -1
|
@@ -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.
|
|
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",
|