@aws-sdk/client-firehose 3.934.0 → 3.935.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.
@@ -1,5 +1,38 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
- import { FirehoseServiceException as __BaseException } from "./FirehoseServiceException";
1
+ import {
2
+ AmazonOpenSearchServerlessS3BackupMode,
3
+ AmazonopensearchserviceIndexRotationPeriod,
4
+ AmazonopensearchserviceS3BackupMode,
5
+ CompressionFormat,
6
+ Connectivity,
7
+ ContentEncoding,
8
+ DatabaseType,
9
+ DefaultDocumentIdFormat,
10
+ DeliveryStreamEncryptionStatus,
11
+ DeliveryStreamFailureType,
12
+ DeliveryStreamStatus,
13
+ DeliveryStreamType,
14
+ ElasticsearchIndexRotationPeriod,
15
+ ElasticsearchS3BackupMode,
16
+ HECEndpointType,
17
+ HttpEndpointS3BackupMode,
18
+ IcebergS3BackupMode,
19
+ KeyType,
20
+ NoEncryptionConfig,
21
+ OrcCompression,
22
+ OrcFormatVersion,
23
+ ParquetCompression,
24
+ ParquetWriterVersion,
25
+ ProcessorParameterName,
26
+ ProcessorType,
27
+ RedshiftS3BackupMode,
28
+ S3BackupMode,
29
+ SnapshotRequestedBy,
30
+ SnapshotStatus,
31
+ SnowflakeDataLoadingOption,
32
+ SnowflakeS3BackupMode,
33
+ SplunkS3BackupMode,
34
+ SSLMode,
35
+ } from "./enums";
3
36
  export interface AmazonOpenSearchServerlessBufferingHints {
4
37
  IntervalInSeconds?: number | undefined;
5
38
  SizeInMBs?: number | undefined;
@@ -9,34 +42,10 @@ export interface CloudWatchLoggingOptions {
9
42
  LogGroupName?: string | undefined;
10
43
  LogStreamName?: string | undefined;
11
44
  }
12
- export declare const ProcessorParameterName: {
13
- readonly BUFFER_INTERVAL_IN_SECONDS: "BufferIntervalInSeconds";
14
- readonly BUFFER_SIZE_IN_MB: "BufferSizeInMBs";
15
- readonly COMPRESSION_FORMAT: "CompressionFormat";
16
- readonly DATA_MESSAGE_EXTRACTION: "DataMessageExtraction";
17
- readonly Delimiter: "Delimiter";
18
- readonly JSON_PARSING_ENGINE: "JsonParsingEngine";
19
- readonly LAMBDA_ARN: "LambdaArn";
20
- readonly LAMBDA_NUMBER_OF_RETRIES: "NumberOfRetries";
21
- readonly METADATA_EXTRACTION_QUERY: "MetadataExtractionQuery";
22
- readonly ROLE_ARN: "RoleArn";
23
- readonly SUB_RECORD_TYPE: "SubRecordType";
24
- };
25
- export type ProcessorParameterName =
26
- (typeof ProcessorParameterName)[keyof typeof ProcessorParameterName];
27
45
  export interface ProcessorParameter {
28
46
  ParameterName: ProcessorParameterName | undefined;
29
47
  ParameterValue: string | undefined;
30
48
  }
31
- export declare const ProcessorType: {
32
- readonly AppendDelimiterToRecord: "AppendDelimiterToRecord";
33
- readonly CloudWatchLogProcessing: "CloudWatchLogProcessing";
34
- readonly Decompression: "Decompression";
35
- readonly Lambda: "Lambda";
36
- readonly MetadataExtraction: "MetadataExtraction";
37
- readonly RecordDeAggregation: "RecordDeAggregation";
38
- };
39
- export type ProcessorType = (typeof ProcessorType)[keyof typeof ProcessorType];
40
49
  export interface Processor {
41
50
  Type: ProcessorType | undefined;
42
51
  Parameters?: ProcessorParameter[] | undefined;
@@ -48,33 +57,13 @@ export interface ProcessingConfiguration {
48
57
  export interface AmazonOpenSearchServerlessRetryOptions {
49
58
  DurationInSeconds?: number | undefined;
50
59
  }
51
- export declare const AmazonOpenSearchServerlessS3BackupMode: {
52
- readonly AllDocuments: "AllDocuments";
53
- readonly FailedDocumentsOnly: "FailedDocumentsOnly";
54
- };
55
- export type AmazonOpenSearchServerlessS3BackupMode =
56
- (typeof AmazonOpenSearchServerlessS3BackupMode)[keyof typeof AmazonOpenSearchServerlessS3BackupMode];
57
60
  export interface BufferingHints {
58
61
  SizeInMBs?: number | undefined;
59
62
  IntervalInSeconds?: number | undefined;
60
63
  }
61
- export declare const CompressionFormat: {
62
- readonly GZIP: "GZIP";
63
- readonly HADOOP_SNAPPY: "HADOOP_SNAPPY";
64
- readonly SNAPPY: "Snappy";
65
- readonly UNCOMPRESSED: "UNCOMPRESSED";
66
- readonly ZIP: "ZIP";
67
- };
68
- export type CompressionFormat =
69
- (typeof CompressionFormat)[keyof typeof CompressionFormat];
70
64
  export interface KMSEncryptionConfig {
71
65
  AWSKMSKeyARN: string | undefined;
72
66
  }
73
- export declare const NoEncryptionConfig: {
74
- readonly NoEncryption: "NoEncryption";
75
- };
76
- export type NoEncryptionConfig =
77
- (typeof NoEncryptionConfig)[keyof typeof NoEncryptionConfig];
78
67
  export interface EncryptionConfiguration {
79
68
  NoEncryptionConfig?: NoEncryptionConfig | undefined;
80
69
  KMSEncryptionConfig?: KMSEncryptionConfig | undefined;
@@ -158,33 +147,12 @@ export interface AmazonopensearchserviceBufferingHints {
158
147
  IntervalInSeconds?: number | undefined;
159
148
  SizeInMBs?: number | undefined;
160
149
  }
161
- export declare const DefaultDocumentIdFormat: {
162
- readonly FIREHOSE_DEFAULT: "FIREHOSE_DEFAULT";
163
- readonly NO_DOCUMENT_ID: "NO_DOCUMENT_ID";
164
- };
165
- export type DefaultDocumentIdFormat =
166
- (typeof DefaultDocumentIdFormat)[keyof typeof DefaultDocumentIdFormat];
167
150
  export interface DocumentIdOptions {
168
151
  DefaultDocumentIdFormat: DefaultDocumentIdFormat | undefined;
169
152
  }
170
- export declare const AmazonopensearchserviceIndexRotationPeriod: {
171
- readonly NoRotation: "NoRotation";
172
- readonly OneDay: "OneDay";
173
- readonly OneHour: "OneHour";
174
- readonly OneMonth: "OneMonth";
175
- readonly OneWeek: "OneWeek";
176
- };
177
- export type AmazonopensearchserviceIndexRotationPeriod =
178
- (typeof AmazonopensearchserviceIndexRotationPeriod)[keyof typeof AmazonopensearchserviceIndexRotationPeriod];
179
153
  export interface AmazonopensearchserviceRetryOptions {
180
154
  DurationInSeconds?: number | undefined;
181
155
  }
182
- export declare const AmazonopensearchserviceS3BackupMode: {
183
- readonly AllDocuments: "AllDocuments";
184
- readonly FailedDocumentsOnly: "FailedDocumentsOnly";
185
- };
186
- export type AmazonopensearchserviceS3BackupMode =
187
- (typeof AmazonopensearchserviceS3BackupMode)[keyof typeof AmazonopensearchserviceS3BackupMode];
188
156
  export interface AmazonopensearchserviceDestinationConfiguration {
189
157
  RoleARN: string | undefined;
190
158
  DomainARN?: string | undefined;
@@ -231,11 +199,6 @@ export interface AmazonopensearchserviceDestinationUpdate {
231
199
  CloudWatchLoggingOptions?: CloudWatchLoggingOptions | undefined;
232
200
  DocumentIdOptions?: DocumentIdOptions | undefined;
233
201
  }
234
- export declare const Connectivity: {
235
- readonly PRIVATE: "PRIVATE";
236
- readonly PUBLIC: "PUBLIC";
237
- };
238
- export type Connectivity = (typeof Connectivity)[keyof typeof Connectivity];
239
202
  export interface AuthenticationConfiguration {
240
203
  RoleARN: string | undefined;
241
204
  Connectivity: Connectivity | undefined;
@@ -244,22 +207,6 @@ export interface CatalogConfiguration {
244
207
  CatalogARN?: string | undefined;
245
208
  WarehouseLocation?: string | undefined;
246
209
  }
247
- export declare class ConcurrentModificationException extends __BaseException {
248
- readonly name: "ConcurrentModificationException";
249
- readonly $fault: "client";
250
- constructor(
251
- opts: __ExceptionOptionType<
252
- ConcurrentModificationException,
253
- __BaseException
254
- >
255
- );
256
- }
257
- export declare const ContentEncoding: {
258
- readonly GZIP: "GZIP";
259
- readonly NONE: "NONE";
260
- };
261
- export type ContentEncoding =
262
- (typeof ContentEncoding)[keyof typeof ContentEncoding];
263
210
  export interface CopyCommand {
264
211
  DataTableName: string | undefined;
265
212
  DataTableColumns?: string | undefined;
@@ -284,20 +231,10 @@ export interface DatabaseSourceAuthenticationConfiguration {
284
231
  export interface DatabaseSourceVPCConfiguration {
285
232
  VpcEndpointServiceName: string | undefined;
286
233
  }
287
- export declare const SSLMode: {
288
- readonly Disabled: "Disabled";
289
- readonly Enabled: "Enabled";
290
- };
291
- export type SSLMode = (typeof SSLMode)[keyof typeof SSLMode];
292
234
  export interface DatabaseTableList {
293
235
  Include?: string[] | undefined;
294
236
  Exclude?: string[] | undefined;
295
237
  }
296
- export declare const DatabaseType: {
297
- readonly MySQL: "MySQL";
298
- readonly PostgreSQL: "PostgreSQL";
299
- };
300
- export type DatabaseType = (typeof DatabaseType)[keyof typeof DatabaseType];
301
238
  export interface DatabaseSourceConfiguration {
302
239
  Type: DatabaseType | undefined;
303
240
  Endpoint: string | undefined;
@@ -313,23 +250,10 @@ export interface DatabaseSourceConfiguration {
313
250
  | undefined;
314
251
  DatabaseSourceVPCConfiguration: DatabaseSourceVPCConfiguration | undefined;
315
252
  }
316
- export declare const KeyType: {
317
- readonly AWS_OWNED_CMK: "AWS_OWNED_CMK";
318
- readonly CUSTOMER_MANAGED_CMK: "CUSTOMER_MANAGED_CMK";
319
- };
320
- export type KeyType = (typeof KeyType)[keyof typeof KeyType];
321
253
  export interface DeliveryStreamEncryptionConfigurationInput {
322
254
  KeyARN?: string | undefined;
323
255
  KeyType: KeyType | undefined;
324
256
  }
325
- export declare const DeliveryStreamType: {
326
- readonly DatabaseAsSource: "DatabaseAsSource";
327
- readonly DirectPut: "DirectPut";
328
- readonly KinesisStreamAsSource: "KinesisStreamAsSource";
329
- readonly MSKAsSource: "MSKAsSource";
330
- };
331
- export type DeliveryStreamType =
332
- (typeof DeliveryStreamType)[keyof typeof DeliveryStreamType];
333
257
  export interface DirectPutSourceConfiguration {
334
258
  ThroughputHintInMBs: number | undefined;
335
259
  }
@@ -337,24 +261,9 @@ export interface ElasticsearchBufferingHints {
337
261
  IntervalInSeconds?: number | undefined;
338
262
  SizeInMBs?: number | undefined;
339
263
  }
340
- export declare const ElasticsearchIndexRotationPeriod: {
341
- readonly NoRotation: "NoRotation";
342
- readonly OneDay: "OneDay";
343
- readonly OneHour: "OneHour";
344
- readonly OneMonth: "OneMonth";
345
- readonly OneWeek: "OneWeek";
346
- };
347
- export type ElasticsearchIndexRotationPeriod =
348
- (typeof ElasticsearchIndexRotationPeriod)[keyof typeof ElasticsearchIndexRotationPeriod];
349
264
  export interface ElasticsearchRetryOptions {
350
265
  DurationInSeconds?: number | undefined;
351
266
  }
352
- export declare const ElasticsearchS3BackupMode: {
353
- readonly AllDocuments: "AllDocuments";
354
- readonly FailedDocumentsOnly: "FailedDocumentsOnly";
355
- };
356
- export type ElasticsearchS3BackupMode =
357
- (typeof ElasticsearchS3BackupMode)[keyof typeof ElasticsearchS3BackupMode];
358
267
  export interface ElasticsearchDestinationConfiguration {
359
268
  RoleARN: string | undefined;
360
269
  DomainARN?: string | undefined;
@@ -386,19 +295,6 @@ export interface Deserializer {
386
295
  export interface InputFormatConfiguration {
387
296
  Deserializer?: Deserializer | undefined;
388
297
  }
389
- export declare const OrcCompression: {
390
- readonly NONE: "NONE";
391
- readonly SNAPPY: "SNAPPY";
392
- readonly ZLIB: "ZLIB";
393
- };
394
- export type OrcCompression =
395
- (typeof OrcCompression)[keyof typeof OrcCompression];
396
- export declare const OrcFormatVersion: {
397
- readonly V0_11: "V0_11";
398
- readonly V0_12: "V0_12";
399
- };
400
- export type OrcFormatVersion =
401
- (typeof OrcFormatVersion)[keyof typeof OrcFormatVersion];
402
298
  export interface OrcSerDe {
403
299
  StripeSizeBytes?: number | undefined;
404
300
  BlockSizeBytes?: number | undefined;
@@ -411,19 +307,6 @@ export interface OrcSerDe {
411
307
  DictionaryKeyThreshold?: number | undefined;
412
308
  FormatVersion?: OrcFormatVersion | undefined;
413
309
  }
414
- export declare const ParquetCompression: {
415
- readonly GZIP: "GZIP";
416
- readonly SNAPPY: "SNAPPY";
417
- readonly UNCOMPRESSED: "UNCOMPRESSED";
418
- };
419
- export type ParquetCompression =
420
- (typeof ParquetCompression)[keyof typeof ParquetCompression];
421
- export declare const ParquetWriterVersion: {
422
- readonly V1: "V1";
423
- readonly V2: "V2";
424
- };
425
- export type ParquetWriterVersion =
426
- (typeof ParquetWriterVersion)[keyof typeof ParquetWriterVersion];
427
310
  export interface ParquetSerDe {
428
311
  BlockSizeBytes?: number | undefined;
429
312
  PageSizeBytes?: number | undefined;
@@ -460,11 +343,6 @@ export interface DynamicPartitioningConfiguration {
460
343
  RetryOptions?: RetryOptions | undefined;
461
344
  Enabled?: boolean | undefined;
462
345
  }
463
- export declare const S3BackupMode: {
464
- readonly Disabled: "Disabled";
465
- readonly Enabled: "Enabled";
466
- };
467
- export type S3BackupMode = (typeof S3BackupMode)[keyof typeof S3BackupMode];
468
346
  export interface ExtendedS3DestinationConfiguration {
469
347
  RoleARN: string | undefined;
470
348
  BucketARN: string | undefined;
@@ -506,12 +384,6 @@ export interface HttpEndpointRequestConfiguration {
506
384
  export interface HttpEndpointRetryOptions {
507
385
  DurationInSeconds?: number | undefined;
508
386
  }
509
- export declare const HttpEndpointS3BackupMode: {
510
- readonly AllData: "AllData";
511
- readonly FailedDataOnly: "FailedDataOnly";
512
- };
513
- export type HttpEndpointS3BackupMode =
514
- (typeof HttpEndpointS3BackupMode)[keyof typeof HttpEndpointS3BackupMode];
515
387
  export interface HttpEndpointDestinationConfiguration {
516
388
  EndpointConfiguration: HttpEndpointConfiguration | undefined;
517
389
  BufferingHints?: HttpEndpointBufferingHints | undefined;
@@ -537,12 +409,6 @@ export interface DestinationTableConfiguration {
537
409
  PartitionSpec?: PartitionSpec | undefined;
538
410
  S3ErrorOutputPrefix?: string | undefined;
539
411
  }
540
- export declare const IcebergS3BackupMode: {
541
- readonly AllData: "AllData";
542
- readonly FailedDataOnly: "FailedDataOnly";
543
- };
544
- export type IcebergS3BackupMode =
545
- (typeof IcebergS3BackupMode)[keyof typeof IcebergS3BackupMode];
546
412
  export interface SchemaEvolutionConfiguration {
547
413
  Enabled: boolean | undefined;
548
414
  }
@@ -578,12 +444,6 @@ export interface MSKSourceConfiguration {
578
444
  export interface RedshiftRetryOptions {
579
445
  DurationInSeconds?: number | undefined;
580
446
  }
581
- export declare const RedshiftS3BackupMode: {
582
- readonly Disabled: "Disabled";
583
- readonly Enabled: "Enabled";
584
- };
585
- export type RedshiftS3BackupMode =
586
- (typeof RedshiftS3BackupMode)[keyof typeof RedshiftS3BackupMode];
587
447
  export interface RedshiftDestinationConfiguration {
588
448
  RoleARN: string | undefined;
589
449
  ClusterJDBCURL: string | undefined;
@@ -602,22 +462,9 @@ export interface SnowflakeBufferingHints {
602
462
  SizeInMBs?: number | undefined;
603
463
  IntervalInSeconds?: number | undefined;
604
464
  }
605
- export declare const SnowflakeDataLoadingOption: {
606
- readonly JSON_MAPPING: "JSON_MAPPING";
607
- readonly VARIANT_CONTENT_AND_METADATA_MAPPING: "VARIANT_CONTENT_AND_METADATA_MAPPING";
608
- readonly VARIANT_CONTENT_MAPPING: "VARIANT_CONTENT_MAPPING";
609
- };
610
- export type SnowflakeDataLoadingOption =
611
- (typeof SnowflakeDataLoadingOption)[keyof typeof SnowflakeDataLoadingOption];
612
465
  export interface SnowflakeRetryOptions {
613
466
  DurationInSeconds?: number | undefined;
614
467
  }
615
- export declare const SnowflakeS3BackupMode: {
616
- readonly AllData: "AllData";
617
- readonly FailedDataOnly: "FailedDataOnly";
618
- };
619
- export type SnowflakeS3BackupMode =
620
- (typeof SnowflakeS3BackupMode)[keyof typeof SnowflakeS3BackupMode];
621
468
  export interface SnowflakeRoleConfiguration {
622
469
  Enabled?: boolean | undefined;
623
470
  SnowflakeRole?: string | undefined;
@@ -651,21 +498,9 @@ export interface SplunkBufferingHints {
651
498
  IntervalInSeconds?: number | undefined;
652
499
  SizeInMBs?: number | undefined;
653
500
  }
654
- export declare const HECEndpointType: {
655
- readonly Event: "Event";
656
- readonly Raw: "Raw";
657
- };
658
- export type HECEndpointType =
659
- (typeof HECEndpointType)[keyof typeof HECEndpointType];
660
501
  export interface SplunkRetryOptions {
661
502
  DurationInSeconds?: number | undefined;
662
503
  }
663
- export declare const SplunkS3BackupMode: {
664
- readonly AllEvents: "AllEvents";
665
- readonly FailedEventsOnly: "FailedEventsOnly";
666
- };
667
- export type SplunkS3BackupMode =
668
- (typeof SplunkS3BackupMode)[keyof typeof SplunkS3BackupMode];
669
504
  export interface SplunkDestinationConfiguration {
670
505
  HECEndpoint: string | undefined;
671
506
  HECEndpointType: HECEndpointType | undefined;
@@ -724,73 +559,10 @@ export interface CreateDeliveryStreamInput {
724
559
  export interface CreateDeliveryStreamOutput {
725
560
  DeliveryStreamARN?: string | undefined;
726
561
  }
727
- export declare class InvalidArgumentException extends __BaseException {
728
- readonly name: "InvalidArgumentException";
729
- readonly $fault: "client";
730
- constructor(
731
- opts: __ExceptionOptionType<InvalidArgumentException, __BaseException>
732
- );
733
- }
734
- export declare class InvalidKMSResourceException extends __BaseException {
735
- readonly name: "InvalidKMSResourceException";
736
- readonly $fault: "client";
737
- code?: string | undefined;
738
- constructor(
739
- opts: __ExceptionOptionType<InvalidKMSResourceException, __BaseException>
740
- );
741
- }
742
- export declare class LimitExceededException extends __BaseException {
743
- readonly name: "LimitExceededException";
744
- readonly $fault: "client";
745
- constructor(
746
- opts: __ExceptionOptionType<LimitExceededException, __BaseException>
747
- );
748
- }
749
- export declare class ResourceInUseException extends __BaseException {
750
- readonly name: "ResourceInUseException";
751
- readonly $fault: "client";
752
- constructor(
753
- opts: __ExceptionOptionType<ResourceInUseException, __BaseException>
754
- );
755
- }
756
- export declare const DeliveryStreamFailureType: {
757
- readonly CREATE_ENI_FAILED: "CREATE_ENI_FAILED";
758
- readonly CREATE_KMS_GRANT_FAILED: "CREATE_KMS_GRANT_FAILED";
759
- readonly DELETE_ENI_FAILED: "DELETE_ENI_FAILED";
760
- readonly DISABLED_KMS_KEY: "DISABLED_KMS_KEY";
761
- readonly ENI_ACCESS_DENIED: "ENI_ACCESS_DENIED";
762
- readonly INVALID_KMS_KEY: "INVALID_KMS_KEY";
763
- readonly KMS_ACCESS_DENIED: "KMS_ACCESS_DENIED";
764
- readonly KMS_KEY_NOT_FOUND: "KMS_KEY_NOT_FOUND";
765
- readonly KMS_OPT_IN_REQUIRED: "KMS_OPT_IN_REQUIRED";
766
- readonly RETIRE_KMS_GRANT_FAILED: "RETIRE_KMS_GRANT_FAILED";
767
- readonly SECURITY_GROUP_ACCESS_DENIED: "SECURITY_GROUP_ACCESS_DENIED";
768
- readonly SECURITY_GROUP_NOT_FOUND: "SECURITY_GROUP_NOT_FOUND";
769
- readonly SUBNET_ACCESS_DENIED: "SUBNET_ACCESS_DENIED";
770
- readonly SUBNET_NOT_FOUND: "SUBNET_NOT_FOUND";
771
- readonly UNKNOWN_ERROR: "UNKNOWN_ERROR";
772
- readonly VPC_ENDPOINT_SERVICE_NAME_NOT_FOUND: "VPC_ENDPOINT_SERVICE_NAME_NOT_FOUND";
773
- readonly VPC_INTERFACE_ENDPOINT_SERVICE_ACCESS_DENIED: "VPC_INTERFACE_ENDPOINT_SERVICE_ACCESS_DENIED";
774
- };
775
- export type DeliveryStreamFailureType =
776
- (typeof DeliveryStreamFailureType)[keyof typeof DeliveryStreamFailureType];
777
562
  export interface FailureDescription {
778
563
  Type: DeliveryStreamFailureType | undefined;
779
564
  Details: string | undefined;
780
565
  }
781
- export declare const SnapshotRequestedBy: {
782
- readonly FIREHOSE: "FIREHOSE";
783
- readonly USER: "USER";
784
- };
785
- export type SnapshotRequestedBy =
786
- (typeof SnapshotRequestedBy)[keyof typeof SnapshotRequestedBy];
787
- export declare const SnapshotStatus: {
788
- readonly COMPLETE: "COMPLETE";
789
- readonly IN_PROGRESS: "IN_PROGRESS";
790
- readonly SUSPENDED: "SUSPENDED";
791
- };
792
- export type SnapshotStatus =
793
- (typeof SnapshotStatus)[keyof typeof SnapshotStatus];
794
566
  export interface DatabaseSnapshotInfo {
795
567
  Id: string | undefined;
796
568
  Table: string | undefined;
@@ -820,38 +592,12 @@ export interface DeleteDeliveryStreamInput {
820
592
  AllowForceDelete?: boolean | undefined;
821
593
  }
822
594
  export interface DeleteDeliveryStreamOutput {}
823
- export declare class ResourceNotFoundException extends __BaseException {
824
- readonly name: "ResourceNotFoundException";
825
- readonly $fault: "client";
826
- constructor(
827
- opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
828
- );
829
- }
830
- export declare const DeliveryStreamEncryptionStatus: {
831
- readonly DISABLED: "DISABLED";
832
- readonly DISABLING: "DISABLING";
833
- readonly DISABLING_FAILED: "DISABLING_FAILED";
834
- readonly ENABLED: "ENABLED";
835
- readonly ENABLING: "ENABLING";
836
- readonly ENABLING_FAILED: "ENABLING_FAILED";
837
- };
838
- export type DeliveryStreamEncryptionStatus =
839
- (typeof DeliveryStreamEncryptionStatus)[keyof typeof DeliveryStreamEncryptionStatus];
840
595
  export interface DeliveryStreamEncryptionConfiguration {
841
596
  KeyARN?: string | undefined;
842
597
  KeyType?: KeyType | undefined;
843
598
  Status?: DeliveryStreamEncryptionStatus | undefined;
844
599
  FailureDescription?: FailureDescription | undefined;
845
600
  }
846
- export declare const DeliveryStreamStatus: {
847
- readonly ACTIVE: "ACTIVE";
848
- readonly CREATING: "CREATING";
849
- readonly CREATING_FAILED: "CREATING_FAILED";
850
- readonly DELETING: "DELETING";
851
- readonly DELETING_FAILED: "DELETING_FAILED";
852
- };
853
- export type DeliveryStreamStatus =
854
- (typeof DeliveryStreamStatus)[keyof typeof DeliveryStreamStatus];
855
601
  export interface ElasticsearchDestinationDescription {
856
602
  RoleARN?: string | undefined;
857
603
  DomainARN?: string | undefined;
@@ -1088,14 +834,6 @@ export interface ListTagsForDeliveryStreamOutput {
1088
834
  Tags: Tag[] | undefined;
1089
835
  HasMoreTags: boolean | undefined;
1090
836
  }
1091
- export declare class InvalidSourceException extends __BaseException {
1092
- readonly name: "InvalidSourceException";
1093
- readonly $fault: "client";
1094
- code?: string | undefined;
1095
- constructor(
1096
- opts: __ExceptionOptionType<InvalidSourceException, __BaseException>
1097
- );
1098
- }
1099
837
  export interface _Record {
1100
838
  Data: Uint8Array | undefined;
1101
839
  }
@@ -1107,13 +845,6 @@ export interface PutRecordOutput {
1107
845
  RecordId: string | undefined;
1108
846
  Encrypted?: boolean | undefined;
1109
847
  }
1110
- export declare class ServiceUnavailableException extends __BaseException {
1111
- readonly name: "ServiceUnavailableException";
1112
- readonly $fault: "server";
1113
- constructor(
1114
- opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>
1115
- );
1116
- }
1117
848
  export interface PutRecordBatchInput {
1118
849
  DeliveryStreamName: string | undefined;
1119
850
  Records: _Record[] | undefined;
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.934.0",
4
+ "version": "3.935.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",
@@ -20,38 +20,38 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.934.0",
24
- "@aws-sdk/credential-provider-node": "3.934.0",
23
+ "@aws-sdk/core": "3.935.0",
24
+ "@aws-sdk/credential-provider-node": "3.935.0",
25
25
  "@aws-sdk/middleware-host-header": "3.930.0",
26
26
  "@aws-sdk/middleware-logger": "3.930.0",
27
27
  "@aws-sdk/middleware-recursion-detection": "3.933.0",
28
- "@aws-sdk/middleware-user-agent": "3.934.0",
28
+ "@aws-sdk/middleware-user-agent": "3.935.0",
29
29
  "@aws-sdk/region-config-resolver": "3.930.0",
30
30
  "@aws-sdk/types": "3.930.0",
31
31
  "@aws-sdk/util-endpoints": "3.930.0",
32
32
  "@aws-sdk/util-user-agent-browser": "3.930.0",
33
- "@aws-sdk/util-user-agent-node": "3.934.0",
33
+ "@aws-sdk/util-user-agent-node": "3.935.0",
34
34
  "@smithy/config-resolver": "^4.4.3",
35
- "@smithy/core": "^3.18.2",
35
+ "@smithy/core": "^3.18.5",
36
36
  "@smithy/fetch-http-handler": "^5.3.6",
37
37
  "@smithy/hash-node": "^4.2.5",
38
38
  "@smithy/invalid-dependency": "^4.2.5",
39
39
  "@smithy/middleware-content-length": "^4.2.5",
40
- "@smithy/middleware-endpoint": "^4.3.9",
41
- "@smithy/middleware-retry": "^4.4.9",
42
- "@smithy/middleware-serde": "^4.2.5",
40
+ "@smithy/middleware-endpoint": "^4.3.12",
41
+ "@smithy/middleware-retry": "^4.4.12",
42
+ "@smithy/middleware-serde": "^4.2.6",
43
43
  "@smithy/middleware-stack": "^4.2.5",
44
44
  "@smithy/node-config-provider": "^4.3.5",
45
45
  "@smithy/node-http-handler": "^4.4.5",
46
46
  "@smithy/protocol-http": "^5.3.5",
47
- "@smithy/smithy-client": "^4.9.5",
47
+ "@smithy/smithy-client": "^4.9.8",
48
48
  "@smithy/types": "^4.9.0",
49
49
  "@smithy/url-parser": "^4.2.5",
50
50
  "@smithy/util-base64": "^4.3.0",
51
51
  "@smithy/util-body-length-browser": "^4.2.0",
52
52
  "@smithy/util-body-length-node": "^4.2.1",
53
- "@smithy/util-defaults-mode-browser": "^4.3.8",
54
- "@smithy/util-defaults-mode-node": "^4.2.11",
53
+ "@smithy/util-defaults-mode-browser": "^4.3.11",
54
+ "@smithy/util-defaults-mode-node": "^4.2.14",
55
55
  "@smithy/util-endpoints": "^3.2.5",
56
56
  "@smithy/util-middleware": "^4.2.5",
57
57
  "@smithy/util-retry": "^4.2.5",
@@ -1 +0,0 @@
1
- export * from "./models_0";
@@ -1 +0,0 @@
1
- export * from "./models_0";
@@ -1 +0,0 @@
1
- export * from "./models_0";