@aws-sdk/client-firehose 3.301.0 → 3.303.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/models/models_0.js +135 -159
- package/dist-es/models/models_0.js +135 -159
- package/dist-types/models/models_0.d.ts +255 -135
- package/dist-types/ts3.4/models/models_0.d.ts +180 -135
- package/package.json +34 -34
|
@@ -9,27 +9,30 @@ export interface CloudWatchLoggingOptions {
|
|
|
9
9
|
LogGroupName?: string;
|
|
10
10
|
LogStreamName?: string;
|
|
11
11
|
}
|
|
12
|
-
export declare
|
|
13
|
-
BUFFER_INTERVAL_IN_SECONDS
|
|
14
|
-
BUFFER_SIZE_IN_MB
|
|
15
|
-
Delimiter
|
|
16
|
-
JSON_PARSING_ENGINE
|
|
17
|
-
LAMBDA_ARN
|
|
18
|
-
LAMBDA_NUMBER_OF_RETRIES
|
|
19
|
-
METADATA_EXTRACTION_QUERY
|
|
20
|
-
ROLE_ARN
|
|
21
|
-
SUB_RECORD_TYPE
|
|
22
|
-
}
|
|
12
|
+
export declare const ProcessorParameterName: {
|
|
13
|
+
readonly BUFFER_INTERVAL_IN_SECONDS: "BufferIntervalInSeconds";
|
|
14
|
+
readonly BUFFER_SIZE_IN_MB: "BufferSizeInMBs";
|
|
15
|
+
readonly Delimiter: "Delimiter";
|
|
16
|
+
readonly JSON_PARSING_ENGINE: "JsonParsingEngine";
|
|
17
|
+
readonly LAMBDA_ARN: "LambdaArn";
|
|
18
|
+
readonly LAMBDA_NUMBER_OF_RETRIES: "NumberOfRetries";
|
|
19
|
+
readonly METADATA_EXTRACTION_QUERY: "MetadataExtractionQuery";
|
|
20
|
+
readonly ROLE_ARN: "RoleArn";
|
|
21
|
+
readonly SUB_RECORD_TYPE: "SubRecordType";
|
|
22
|
+
};
|
|
23
|
+
export type ProcessorParameterName =
|
|
24
|
+
(typeof ProcessorParameterName)[keyof typeof ProcessorParameterName];
|
|
23
25
|
export interface ProcessorParameter {
|
|
24
26
|
ParameterName: ProcessorParameterName | string | undefined;
|
|
25
27
|
ParameterValue: string | undefined;
|
|
26
28
|
}
|
|
27
|
-
export declare
|
|
28
|
-
AppendDelimiterToRecord
|
|
29
|
-
Lambda
|
|
30
|
-
MetadataExtraction
|
|
31
|
-
RecordDeAggregation
|
|
32
|
-
}
|
|
29
|
+
export declare const ProcessorType: {
|
|
30
|
+
readonly AppendDelimiterToRecord: "AppendDelimiterToRecord";
|
|
31
|
+
readonly Lambda: "Lambda";
|
|
32
|
+
readonly MetadataExtraction: "MetadataExtraction";
|
|
33
|
+
readonly RecordDeAggregation: "RecordDeAggregation";
|
|
34
|
+
};
|
|
35
|
+
export type ProcessorType = (typeof ProcessorType)[keyof typeof ProcessorType];
|
|
33
36
|
export interface Processor {
|
|
34
37
|
Type: ProcessorType | string | undefined;
|
|
35
38
|
Parameters?: ProcessorParameter[];
|
|
@@ -41,27 +44,33 @@ export interface ProcessingConfiguration {
|
|
|
41
44
|
export interface AmazonOpenSearchServerlessRetryOptions {
|
|
42
45
|
DurationInSeconds?: number;
|
|
43
46
|
}
|
|
44
|
-
export declare
|
|
45
|
-
AllDocuments
|
|
46
|
-
FailedDocumentsOnly
|
|
47
|
-
}
|
|
47
|
+
export declare const AmazonOpenSearchServerlessS3BackupMode: {
|
|
48
|
+
readonly AllDocuments: "AllDocuments";
|
|
49
|
+
readonly FailedDocumentsOnly: "FailedDocumentsOnly";
|
|
50
|
+
};
|
|
51
|
+
export type AmazonOpenSearchServerlessS3BackupMode =
|
|
52
|
+
(typeof AmazonOpenSearchServerlessS3BackupMode)[keyof typeof AmazonOpenSearchServerlessS3BackupMode];
|
|
48
53
|
export interface BufferingHints {
|
|
49
54
|
SizeInMBs?: number;
|
|
50
55
|
IntervalInSeconds?: number;
|
|
51
56
|
}
|
|
52
|
-
export declare
|
|
53
|
-
GZIP
|
|
54
|
-
HADOOP_SNAPPY
|
|
55
|
-
SNAPPY
|
|
56
|
-
UNCOMPRESSED
|
|
57
|
-
ZIP
|
|
58
|
-
}
|
|
57
|
+
export declare const CompressionFormat: {
|
|
58
|
+
readonly GZIP: "GZIP";
|
|
59
|
+
readonly HADOOP_SNAPPY: "HADOOP_SNAPPY";
|
|
60
|
+
readonly SNAPPY: "Snappy";
|
|
61
|
+
readonly UNCOMPRESSED: "UNCOMPRESSED";
|
|
62
|
+
readonly ZIP: "ZIP";
|
|
63
|
+
};
|
|
64
|
+
export type CompressionFormat =
|
|
65
|
+
(typeof CompressionFormat)[keyof typeof CompressionFormat];
|
|
59
66
|
export interface KMSEncryptionConfig {
|
|
60
67
|
AWSKMSKeyARN: string | undefined;
|
|
61
68
|
}
|
|
62
|
-
export declare
|
|
63
|
-
NoEncryption
|
|
64
|
-
}
|
|
69
|
+
export declare const NoEncryptionConfig: {
|
|
70
|
+
readonly NoEncryption: "NoEncryption";
|
|
71
|
+
};
|
|
72
|
+
export type NoEncryptionConfig =
|
|
73
|
+
(typeof NoEncryptionConfig)[keyof typeof NoEncryptionConfig];
|
|
65
74
|
export interface EncryptionConfiguration {
|
|
66
75
|
NoEncryptionConfig?: NoEncryptionConfig | string;
|
|
67
76
|
KMSEncryptionConfig?: KMSEncryptionConfig;
|
|
@@ -145,20 +154,24 @@ export interface AmazonopensearchserviceBufferingHints {
|
|
|
145
154
|
IntervalInSeconds?: number;
|
|
146
155
|
SizeInMBs?: number;
|
|
147
156
|
}
|
|
148
|
-
export declare
|
|
149
|
-
NoRotation
|
|
150
|
-
OneDay
|
|
151
|
-
OneHour
|
|
152
|
-
OneMonth
|
|
153
|
-
OneWeek
|
|
154
|
-
}
|
|
157
|
+
export declare const AmazonopensearchserviceIndexRotationPeriod: {
|
|
158
|
+
readonly NoRotation: "NoRotation";
|
|
159
|
+
readonly OneDay: "OneDay";
|
|
160
|
+
readonly OneHour: "OneHour";
|
|
161
|
+
readonly OneMonth: "OneMonth";
|
|
162
|
+
readonly OneWeek: "OneWeek";
|
|
163
|
+
};
|
|
164
|
+
export type AmazonopensearchserviceIndexRotationPeriod =
|
|
165
|
+
(typeof AmazonopensearchserviceIndexRotationPeriod)[keyof typeof AmazonopensearchserviceIndexRotationPeriod];
|
|
155
166
|
export interface AmazonopensearchserviceRetryOptions {
|
|
156
167
|
DurationInSeconds?: number;
|
|
157
168
|
}
|
|
158
|
-
export declare
|
|
159
|
-
AllDocuments
|
|
160
|
-
FailedDocumentsOnly
|
|
161
|
-
}
|
|
169
|
+
export declare const AmazonopensearchserviceS3BackupMode: {
|
|
170
|
+
readonly AllDocuments: "AllDocuments";
|
|
171
|
+
readonly FailedDocumentsOnly: "FailedDocumentsOnly";
|
|
172
|
+
};
|
|
173
|
+
export type AmazonopensearchserviceS3BackupMode =
|
|
174
|
+
(typeof AmazonopensearchserviceS3BackupMode)[keyof typeof AmazonopensearchserviceS3BackupMode];
|
|
162
175
|
export interface AmazonopensearchserviceDestinationConfiguration {
|
|
163
176
|
RoleARN: string | undefined;
|
|
164
177
|
DomainARN?: string;
|
|
@@ -212,45 +225,54 @@ export declare class ConcurrentModificationException extends __BaseException {
|
|
|
212
225
|
>
|
|
213
226
|
);
|
|
214
227
|
}
|
|
215
|
-
export declare
|
|
216
|
-
GZIP
|
|
217
|
-
NONE
|
|
218
|
-
}
|
|
228
|
+
export declare const ContentEncoding: {
|
|
229
|
+
readonly GZIP: "GZIP";
|
|
230
|
+
readonly NONE: "NONE";
|
|
231
|
+
};
|
|
232
|
+
export type ContentEncoding =
|
|
233
|
+
(typeof ContentEncoding)[keyof typeof ContentEncoding];
|
|
219
234
|
export interface CopyCommand {
|
|
220
235
|
DataTableName: string | undefined;
|
|
221
236
|
DataTableColumns?: string;
|
|
222
237
|
CopyOptions?: string;
|
|
223
238
|
}
|
|
224
|
-
export declare
|
|
225
|
-
AWS_OWNED_CMK
|
|
226
|
-
CUSTOMER_MANAGED_CMK
|
|
227
|
-
}
|
|
239
|
+
export declare const KeyType: {
|
|
240
|
+
readonly AWS_OWNED_CMK: "AWS_OWNED_CMK";
|
|
241
|
+
readonly CUSTOMER_MANAGED_CMK: "CUSTOMER_MANAGED_CMK";
|
|
242
|
+
};
|
|
243
|
+
export type KeyType = (typeof KeyType)[keyof typeof KeyType];
|
|
228
244
|
export interface DeliveryStreamEncryptionConfigurationInput {
|
|
229
245
|
KeyARN?: string;
|
|
230
246
|
KeyType: KeyType | string | undefined;
|
|
231
247
|
}
|
|
232
|
-
export declare
|
|
233
|
-
DirectPut
|
|
234
|
-
KinesisStreamAsSource
|
|
235
|
-
}
|
|
248
|
+
export declare const DeliveryStreamType: {
|
|
249
|
+
readonly DirectPut: "DirectPut";
|
|
250
|
+
readonly KinesisStreamAsSource: "KinesisStreamAsSource";
|
|
251
|
+
};
|
|
252
|
+
export type DeliveryStreamType =
|
|
253
|
+
(typeof DeliveryStreamType)[keyof typeof DeliveryStreamType];
|
|
236
254
|
export interface ElasticsearchBufferingHints {
|
|
237
255
|
IntervalInSeconds?: number;
|
|
238
256
|
SizeInMBs?: number;
|
|
239
257
|
}
|
|
240
|
-
export declare
|
|
241
|
-
NoRotation
|
|
242
|
-
OneDay
|
|
243
|
-
OneHour
|
|
244
|
-
OneMonth
|
|
245
|
-
OneWeek
|
|
246
|
-
}
|
|
258
|
+
export declare const ElasticsearchIndexRotationPeriod: {
|
|
259
|
+
readonly NoRotation: "NoRotation";
|
|
260
|
+
readonly OneDay: "OneDay";
|
|
261
|
+
readonly OneHour: "OneHour";
|
|
262
|
+
readonly OneMonth: "OneMonth";
|
|
263
|
+
readonly OneWeek: "OneWeek";
|
|
264
|
+
};
|
|
265
|
+
export type ElasticsearchIndexRotationPeriod =
|
|
266
|
+
(typeof ElasticsearchIndexRotationPeriod)[keyof typeof ElasticsearchIndexRotationPeriod];
|
|
247
267
|
export interface ElasticsearchRetryOptions {
|
|
248
268
|
DurationInSeconds?: number;
|
|
249
269
|
}
|
|
250
|
-
export declare
|
|
251
|
-
AllDocuments
|
|
252
|
-
FailedDocumentsOnly
|
|
253
|
-
}
|
|
270
|
+
export declare const ElasticsearchS3BackupMode: {
|
|
271
|
+
readonly AllDocuments: "AllDocuments";
|
|
272
|
+
readonly FailedDocumentsOnly: "FailedDocumentsOnly";
|
|
273
|
+
};
|
|
274
|
+
export type ElasticsearchS3BackupMode =
|
|
275
|
+
(typeof ElasticsearchS3BackupMode)[keyof typeof ElasticsearchS3BackupMode];
|
|
254
276
|
export interface ElasticsearchDestinationConfiguration {
|
|
255
277
|
RoleARN: string | undefined;
|
|
256
278
|
DomainARN?: string;
|
|
@@ -281,15 +303,19 @@ export interface Deserializer {
|
|
|
281
303
|
export interface InputFormatConfiguration {
|
|
282
304
|
Deserializer?: Deserializer;
|
|
283
305
|
}
|
|
284
|
-
export declare
|
|
285
|
-
NONE
|
|
286
|
-
SNAPPY
|
|
287
|
-
ZLIB
|
|
288
|
-
}
|
|
289
|
-
export
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
306
|
+
export declare const OrcCompression: {
|
|
307
|
+
readonly NONE: "NONE";
|
|
308
|
+
readonly SNAPPY: "SNAPPY";
|
|
309
|
+
readonly ZLIB: "ZLIB";
|
|
310
|
+
};
|
|
311
|
+
export type OrcCompression =
|
|
312
|
+
(typeof OrcCompression)[keyof typeof OrcCompression];
|
|
313
|
+
export declare const OrcFormatVersion: {
|
|
314
|
+
readonly V0_11: "V0_11";
|
|
315
|
+
readonly V0_12: "V0_12";
|
|
316
|
+
};
|
|
317
|
+
export type OrcFormatVersion =
|
|
318
|
+
(typeof OrcFormatVersion)[keyof typeof OrcFormatVersion];
|
|
293
319
|
export interface OrcSerDe {
|
|
294
320
|
StripeSizeBytes?: number;
|
|
295
321
|
BlockSizeBytes?: number;
|
|
@@ -302,15 +328,19 @@ export interface OrcSerDe {
|
|
|
302
328
|
DictionaryKeyThreshold?: number;
|
|
303
329
|
FormatVersion?: OrcFormatVersion | string;
|
|
304
330
|
}
|
|
305
|
-
export declare
|
|
306
|
-
GZIP
|
|
307
|
-
SNAPPY
|
|
308
|
-
UNCOMPRESSED
|
|
309
|
-
}
|
|
310
|
-
export
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
331
|
+
export declare const ParquetCompression: {
|
|
332
|
+
readonly GZIP: "GZIP";
|
|
333
|
+
readonly SNAPPY: "SNAPPY";
|
|
334
|
+
readonly UNCOMPRESSED: "UNCOMPRESSED";
|
|
335
|
+
};
|
|
336
|
+
export type ParquetCompression =
|
|
337
|
+
(typeof ParquetCompression)[keyof typeof ParquetCompression];
|
|
338
|
+
export declare const ParquetWriterVersion: {
|
|
339
|
+
readonly V1: "V1";
|
|
340
|
+
readonly V2: "V2";
|
|
341
|
+
};
|
|
342
|
+
export type ParquetWriterVersion =
|
|
343
|
+
(typeof ParquetWriterVersion)[keyof typeof ParquetWriterVersion];
|
|
314
344
|
export interface ParquetSerDe {
|
|
315
345
|
BlockSizeBytes?: number;
|
|
316
346
|
PageSizeBytes?: number;
|
|
@@ -347,10 +377,11 @@ export interface DynamicPartitioningConfiguration {
|
|
|
347
377
|
RetryOptions?: RetryOptions;
|
|
348
378
|
Enabled?: boolean;
|
|
349
379
|
}
|
|
350
|
-
export declare
|
|
351
|
-
Disabled
|
|
352
|
-
Enabled
|
|
353
|
-
}
|
|
380
|
+
export declare const S3BackupMode: {
|
|
381
|
+
readonly Disabled: "Disabled";
|
|
382
|
+
readonly Enabled: "Enabled";
|
|
383
|
+
};
|
|
384
|
+
export type S3BackupMode = (typeof S3BackupMode)[keyof typeof S3BackupMode];
|
|
354
385
|
export interface ExtendedS3DestinationConfiguration {
|
|
355
386
|
RoleARN: string | undefined;
|
|
356
387
|
BucketARN: string | undefined;
|
|
@@ -386,10 +417,12 @@ export interface HttpEndpointRequestConfiguration {
|
|
|
386
417
|
export interface HttpEndpointRetryOptions {
|
|
387
418
|
DurationInSeconds?: number;
|
|
388
419
|
}
|
|
389
|
-
export declare
|
|
390
|
-
AllData
|
|
391
|
-
FailedDataOnly
|
|
392
|
-
}
|
|
420
|
+
export declare const HttpEndpointS3BackupMode: {
|
|
421
|
+
readonly AllData: "AllData";
|
|
422
|
+
readonly FailedDataOnly: "FailedDataOnly";
|
|
423
|
+
};
|
|
424
|
+
export type HttpEndpointS3BackupMode =
|
|
425
|
+
(typeof HttpEndpointS3BackupMode)[keyof typeof HttpEndpointS3BackupMode];
|
|
393
426
|
export interface HttpEndpointDestinationConfiguration {
|
|
394
427
|
EndpointConfiguration: HttpEndpointConfiguration | undefined;
|
|
395
428
|
BufferingHints?: HttpEndpointBufferingHints;
|
|
@@ -408,10 +441,12 @@ export interface KinesisStreamSourceConfiguration {
|
|
|
408
441
|
export interface RedshiftRetryOptions {
|
|
409
442
|
DurationInSeconds?: number;
|
|
410
443
|
}
|
|
411
|
-
export declare
|
|
412
|
-
Disabled
|
|
413
|
-
Enabled
|
|
414
|
-
}
|
|
444
|
+
export declare const RedshiftS3BackupMode: {
|
|
445
|
+
readonly Disabled: "Disabled";
|
|
446
|
+
readonly Enabled: "Enabled";
|
|
447
|
+
};
|
|
448
|
+
export type RedshiftS3BackupMode =
|
|
449
|
+
(typeof RedshiftS3BackupMode)[keyof typeof RedshiftS3BackupMode];
|
|
415
450
|
export interface RedshiftDestinationConfiguration {
|
|
416
451
|
RoleARN: string | undefined;
|
|
417
452
|
ClusterJDBCURL: string | undefined;
|
|
@@ -425,17 +460,21 @@ export interface RedshiftDestinationConfiguration {
|
|
|
425
460
|
S3BackupConfiguration?: S3DestinationConfiguration;
|
|
426
461
|
CloudWatchLoggingOptions?: CloudWatchLoggingOptions;
|
|
427
462
|
}
|
|
428
|
-
export declare
|
|
429
|
-
Event
|
|
430
|
-
Raw
|
|
431
|
-
}
|
|
463
|
+
export declare const HECEndpointType: {
|
|
464
|
+
readonly Event: "Event";
|
|
465
|
+
readonly Raw: "Raw";
|
|
466
|
+
};
|
|
467
|
+
export type HECEndpointType =
|
|
468
|
+
(typeof HECEndpointType)[keyof typeof HECEndpointType];
|
|
432
469
|
export interface SplunkRetryOptions {
|
|
433
470
|
DurationInSeconds?: number;
|
|
434
471
|
}
|
|
435
|
-
export declare
|
|
436
|
-
AllEvents
|
|
437
|
-
FailedEventsOnly
|
|
438
|
-
}
|
|
472
|
+
export declare const SplunkS3BackupMode: {
|
|
473
|
+
readonly AllEvents: "AllEvents";
|
|
474
|
+
readonly FailedEventsOnly: "FailedEventsOnly";
|
|
475
|
+
};
|
|
476
|
+
export type SplunkS3BackupMode =
|
|
477
|
+
(typeof SplunkS3BackupMode)[keyof typeof SplunkS3BackupMode];
|
|
439
478
|
export interface SplunkDestinationConfiguration {
|
|
440
479
|
HECEndpoint: string | undefined;
|
|
441
480
|
HECEndpointType: HECEndpointType | string | undefined;
|
|
@@ -510,48 +549,54 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
510
549
|
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
511
550
|
);
|
|
512
551
|
}
|
|
513
|
-
export declare
|
|
514
|
-
CREATE_ENI_FAILED
|
|
515
|
-
CREATE_KMS_GRANT_FAILED
|
|
516
|
-
DELETE_ENI_FAILED
|
|
517
|
-
DISABLED_KMS_KEY
|
|
518
|
-
ENI_ACCESS_DENIED
|
|
519
|
-
INVALID_KMS_KEY
|
|
520
|
-
KMS_ACCESS_DENIED
|
|
521
|
-
KMS_KEY_NOT_FOUND
|
|
522
|
-
KMS_OPT_IN_REQUIRED
|
|
523
|
-
RETIRE_KMS_GRANT_FAILED
|
|
524
|
-
SECURITY_GROUP_ACCESS_DENIED
|
|
525
|
-
SECURITY_GROUP_NOT_FOUND
|
|
526
|
-
SUBNET_ACCESS_DENIED
|
|
527
|
-
SUBNET_NOT_FOUND
|
|
528
|
-
UNKNOWN_ERROR
|
|
529
|
-
}
|
|
552
|
+
export declare const DeliveryStreamFailureType: {
|
|
553
|
+
readonly CREATE_ENI_FAILED: "CREATE_ENI_FAILED";
|
|
554
|
+
readonly CREATE_KMS_GRANT_FAILED: "CREATE_KMS_GRANT_FAILED";
|
|
555
|
+
readonly DELETE_ENI_FAILED: "DELETE_ENI_FAILED";
|
|
556
|
+
readonly DISABLED_KMS_KEY: "DISABLED_KMS_KEY";
|
|
557
|
+
readonly ENI_ACCESS_DENIED: "ENI_ACCESS_DENIED";
|
|
558
|
+
readonly INVALID_KMS_KEY: "INVALID_KMS_KEY";
|
|
559
|
+
readonly KMS_ACCESS_DENIED: "KMS_ACCESS_DENIED";
|
|
560
|
+
readonly KMS_KEY_NOT_FOUND: "KMS_KEY_NOT_FOUND";
|
|
561
|
+
readonly KMS_OPT_IN_REQUIRED: "KMS_OPT_IN_REQUIRED";
|
|
562
|
+
readonly RETIRE_KMS_GRANT_FAILED: "RETIRE_KMS_GRANT_FAILED";
|
|
563
|
+
readonly SECURITY_GROUP_ACCESS_DENIED: "SECURITY_GROUP_ACCESS_DENIED";
|
|
564
|
+
readonly SECURITY_GROUP_NOT_FOUND: "SECURITY_GROUP_NOT_FOUND";
|
|
565
|
+
readonly SUBNET_ACCESS_DENIED: "SUBNET_ACCESS_DENIED";
|
|
566
|
+
readonly SUBNET_NOT_FOUND: "SUBNET_NOT_FOUND";
|
|
567
|
+
readonly UNKNOWN_ERROR: "UNKNOWN_ERROR";
|
|
568
|
+
};
|
|
569
|
+
export type DeliveryStreamFailureType =
|
|
570
|
+
(typeof DeliveryStreamFailureType)[keyof typeof DeliveryStreamFailureType];
|
|
530
571
|
export interface FailureDescription {
|
|
531
572
|
Type: DeliveryStreamFailureType | string | undefined;
|
|
532
573
|
Details: string | undefined;
|
|
533
574
|
}
|
|
534
|
-
export declare
|
|
535
|
-
DISABLED
|
|
536
|
-
DISABLING
|
|
537
|
-
DISABLING_FAILED
|
|
538
|
-
ENABLED
|
|
539
|
-
ENABLING
|
|
540
|
-
ENABLING_FAILED
|
|
541
|
-
}
|
|
575
|
+
export declare const DeliveryStreamEncryptionStatus: {
|
|
576
|
+
readonly DISABLED: "DISABLED";
|
|
577
|
+
readonly DISABLING: "DISABLING";
|
|
578
|
+
readonly DISABLING_FAILED: "DISABLING_FAILED";
|
|
579
|
+
readonly ENABLED: "ENABLED";
|
|
580
|
+
readonly ENABLING: "ENABLING";
|
|
581
|
+
readonly ENABLING_FAILED: "ENABLING_FAILED";
|
|
582
|
+
};
|
|
583
|
+
export type DeliveryStreamEncryptionStatus =
|
|
584
|
+
(typeof DeliveryStreamEncryptionStatus)[keyof typeof DeliveryStreamEncryptionStatus];
|
|
542
585
|
export interface DeliveryStreamEncryptionConfiguration {
|
|
543
586
|
KeyARN?: string;
|
|
544
587
|
KeyType?: KeyType | string;
|
|
545
588
|
Status?: DeliveryStreamEncryptionStatus | string;
|
|
546
589
|
FailureDescription?: FailureDescription;
|
|
547
590
|
}
|
|
548
|
-
export declare
|
|
549
|
-
ACTIVE
|
|
550
|
-
CREATING
|
|
551
|
-
CREATING_FAILED
|
|
552
|
-
DELETING
|
|
553
|
-
DELETING_FAILED
|
|
554
|
-
}
|
|
591
|
+
export declare const DeliveryStreamStatus: {
|
|
592
|
+
readonly ACTIVE: "ACTIVE";
|
|
593
|
+
readonly CREATING: "CREATING";
|
|
594
|
+
readonly CREATING_FAILED: "CREATING_FAILED";
|
|
595
|
+
readonly DELETING: "DELETING";
|
|
596
|
+
readonly DELETING_FAILED: "DELETING_FAILED";
|
|
597
|
+
};
|
|
598
|
+
export type DeliveryStreamStatus =
|
|
599
|
+
(typeof DeliveryStreamStatus)[keyof typeof DeliveryStreamStatus];
|
|
555
600
|
export interface ElasticsearchDestinationDescription {
|
|
556
601
|
RoleARN?: string;
|
|
557
602
|
DomainARN?: string;
|
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.303.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,42 +21,42 @@
|
|
|
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.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
28
|
-
"@aws-sdk/hash-node": "3.
|
|
29
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
32
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
33
|
-
"@aws-sdk/middleware-logger": "3.
|
|
34
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
36
|
-
"@aws-sdk/middleware-serde": "3.
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
38
|
-
"@aws-sdk/middleware-stack": "3.
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
41
|
-
"@aws-sdk/node-http-handler": "3.
|
|
42
|
-
"@aws-sdk/protocol-http": "3.
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
44
|
-
"@aws-sdk/types": "3.
|
|
45
|
-
"@aws-sdk/url-parser": "3.
|
|
46
|
-
"@aws-sdk/util-base64": "3.
|
|
47
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
48
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
52
|
-
"@aws-sdk/util-retry": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
54
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
55
|
-
"@aws-sdk/util-utf8": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.303.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.303.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.303.0",
|
|
27
|
+
"@aws-sdk/fetch-http-handler": "3.303.0",
|
|
28
|
+
"@aws-sdk/hash-node": "3.303.0",
|
|
29
|
+
"@aws-sdk/invalid-dependency": "3.303.0",
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.303.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.303.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.303.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.303.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.303.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.303.0",
|
|
36
|
+
"@aws-sdk/middleware-serde": "3.303.0",
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.303.0",
|
|
38
|
+
"@aws-sdk/middleware-stack": "3.303.0",
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.303.0",
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.303.0",
|
|
41
|
+
"@aws-sdk/node-http-handler": "3.303.0",
|
|
42
|
+
"@aws-sdk/protocol-http": "3.303.0",
|
|
43
|
+
"@aws-sdk/smithy-client": "3.303.0",
|
|
44
|
+
"@aws-sdk/types": "3.303.0",
|
|
45
|
+
"@aws-sdk/url-parser": "3.303.0",
|
|
46
|
+
"@aws-sdk/util-base64": "3.303.0",
|
|
47
|
+
"@aws-sdk/util-body-length-browser": "3.303.0",
|
|
48
|
+
"@aws-sdk/util-body-length-node": "3.303.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.303.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.303.0",
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.303.0",
|
|
52
|
+
"@aws-sdk/util-retry": "3.303.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-browser": "3.303.0",
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.303.0",
|
|
55
|
+
"@aws-sdk/util-utf8": "3.303.0",
|
|
56
56
|
"tslib": "^2.5.0"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
59
|
+
"@aws-sdk/service-client-documentation-generator": "3.303.0",
|
|
60
60
|
"@tsconfig/node14": "1.0.3",
|
|
61
61
|
"@types/node": "^14.14.31",
|
|
62
62
|
"concurrently": "7.0.0",
|