@aws-sdk/client-firehose 3.301.0 → 3.306.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
|
@@ -1,54 +1,47 @@
|
|
|
1
1
|
import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { FirehoseServiceException as __BaseException } from "./FirehoseServiceException";
|
|
3
|
-
export
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
AmazonopensearchserviceIndexRotationPeriod["OneWeek"] = "OneWeek";
|
|
46
|
-
})(AmazonopensearchserviceIndexRotationPeriod || (AmazonopensearchserviceIndexRotationPeriod = {}));
|
|
47
|
-
export var AmazonopensearchserviceS3BackupMode;
|
|
48
|
-
(function (AmazonopensearchserviceS3BackupMode) {
|
|
49
|
-
AmazonopensearchserviceS3BackupMode["AllDocuments"] = "AllDocuments";
|
|
50
|
-
AmazonopensearchserviceS3BackupMode["FailedDocumentsOnly"] = "FailedDocumentsOnly";
|
|
51
|
-
})(AmazonopensearchserviceS3BackupMode || (AmazonopensearchserviceS3BackupMode = {}));
|
|
3
|
+
export const ProcessorParameterName = {
|
|
4
|
+
BUFFER_INTERVAL_IN_SECONDS: "BufferIntervalInSeconds",
|
|
5
|
+
BUFFER_SIZE_IN_MB: "BufferSizeInMBs",
|
|
6
|
+
Delimiter: "Delimiter",
|
|
7
|
+
JSON_PARSING_ENGINE: "JsonParsingEngine",
|
|
8
|
+
LAMBDA_ARN: "LambdaArn",
|
|
9
|
+
LAMBDA_NUMBER_OF_RETRIES: "NumberOfRetries",
|
|
10
|
+
METADATA_EXTRACTION_QUERY: "MetadataExtractionQuery",
|
|
11
|
+
ROLE_ARN: "RoleArn",
|
|
12
|
+
SUB_RECORD_TYPE: "SubRecordType",
|
|
13
|
+
};
|
|
14
|
+
export const ProcessorType = {
|
|
15
|
+
AppendDelimiterToRecord: "AppendDelimiterToRecord",
|
|
16
|
+
Lambda: "Lambda",
|
|
17
|
+
MetadataExtraction: "MetadataExtraction",
|
|
18
|
+
RecordDeAggregation: "RecordDeAggregation",
|
|
19
|
+
};
|
|
20
|
+
export const AmazonOpenSearchServerlessS3BackupMode = {
|
|
21
|
+
AllDocuments: "AllDocuments",
|
|
22
|
+
FailedDocumentsOnly: "FailedDocumentsOnly",
|
|
23
|
+
};
|
|
24
|
+
export const CompressionFormat = {
|
|
25
|
+
GZIP: "GZIP",
|
|
26
|
+
HADOOP_SNAPPY: "HADOOP_SNAPPY",
|
|
27
|
+
SNAPPY: "Snappy",
|
|
28
|
+
UNCOMPRESSED: "UNCOMPRESSED",
|
|
29
|
+
ZIP: "ZIP",
|
|
30
|
+
};
|
|
31
|
+
export const NoEncryptionConfig = {
|
|
32
|
+
NoEncryption: "NoEncryption",
|
|
33
|
+
};
|
|
34
|
+
export const AmazonopensearchserviceIndexRotationPeriod = {
|
|
35
|
+
NoRotation: "NoRotation",
|
|
36
|
+
OneDay: "OneDay",
|
|
37
|
+
OneHour: "OneHour",
|
|
38
|
+
OneMonth: "OneMonth",
|
|
39
|
+
OneWeek: "OneWeek",
|
|
40
|
+
};
|
|
41
|
+
export const AmazonopensearchserviceS3BackupMode = {
|
|
42
|
+
AllDocuments: "AllDocuments",
|
|
43
|
+
FailedDocumentsOnly: "FailedDocumentsOnly",
|
|
44
|
+
};
|
|
52
45
|
export class ConcurrentModificationException extends __BaseException {
|
|
53
46
|
constructor(opts) {
|
|
54
47
|
super({
|
|
@@ -61,81 +54,67 @@ export class ConcurrentModificationException extends __BaseException {
|
|
|
61
54
|
Object.setPrototypeOf(this, ConcurrentModificationException.prototype);
|
|
62
55
|
}
|
|
63
56
|
}
|
|
64
|
-
export
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
}
|
|
87
|
-
export
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
}
|
|
92
|
-
export
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
}
|
|
109
|
-
export
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
(function (RedshiftS3BackupMode) {
|
|
126
|
-
RedshiftS3BackupMode["Disabled"] = "Disabled";
|
|
127
|
-
RedshiftS3BackupMode["Enabled"] = "Enabled";
|
|
128
|
-
})(RedshiftS3BackupMode || (RedshiftS3BackupMode = {}));
|
|
129
|
-
export var HECEndpointType;
|
|
130
|
-
(function (HECEndpointType) {
|
|
131
|
-
HECEndpointType["Event"] = "Event";
|
|
132
|
-
HECEndpointType["Raw"] = "Raw";
|
|
133
|
-
})(HECEndpointType || (HECEndpointType = {}));
|
|
134
|
-
export var SplunkS3BackupMode;
|
|
135
|
-
(function (SplunkS3BackupMode) {
|
|
136
|
-
SplunkS3BackupMode["AllEvents"] = "AllEvents";
|
|
137
|
-
SplunkS3BackupMode["FailedEventsOnly"] = "FailedEventsOnly";
|
|
138
|
-
})(SplunkS3BackupMode || (SplunkS3BackupMode = {}));
|
|
57
|
+
export const ContentEncoding = {
|
|
58
|
+
GZIP: "GZIP",
|
|
59
|
+
NONE: "NONE",
|
|
60
|
+
};
|
|
61
|
+
export const KeyType = {
|
|
62
|
+
AWS_OWNED_CMK: "AWS_OWNED_CMK",
|
|
63
|
+
CUSTOMER_MANAGED_CMK: "CUSTOMER_MANAGED_CMK",
|
|
64
|
+
};
|
|
65
|
+
export const DeliveryStreamType = {
|
|
66
|
+
DirectPut: "DirectPut",
|
|
67
|
+
KinesisStreamAsSource: "KinesisStreamAsSource",
|
|
68
|
+
};
|
|
69
|
+
export const ElasticsearchIndexRotationPeriod = {
|
|
70
|
+
NoRotation: "NoRotation",
|
|
71
|
+
OneDay: "OneDay",
|
|
72
|
+
OneHour: "OneHour",
|
|
73
|
+
OneMonth: "OneMonth",
|
|
74
|
+
OneWeek: "OneWeek",
|
|
75
|
+
};
|
|
76
|
+
export const ElasticsearchS3BackupMode = {
|
|
77
|
+
AllDocuments: "AllDocuments",
|
|
78
|
+
FailedDocumentsOnly: "FailedDocumentsOnly",
|
|
79
|
+
};
|
|
80
|
+
export const OrcCompression = {
|
|
81
|
+
NONE: "NONE",
|
|
82
|
+
SNAPPY: "SNAPPY",
|
|
83
|
+
ZLIB: "ZLIB",
|
|
84
|
+
};
|
|
85
|
+
export const OrcFormatVersion = {
|
|
86
|
+
V0_11: "V0_11",
|
|
87
|
+
V0_12: "V0_12",
|
|
88
|
+
};
|
|
89
|
+
export const ParquetCompression = {
|
|
90
|
+
GZIP: "GZIP",
|
|
91
|
+
SNAPPY: "SNAPPY",
|
|
92
|
+
UNCOMPRESSED: "UNCOMPRESSED",
|
|
93
|
+
};
|
|
94
|
+
export const ParquetWriterVersion = {
|
|
95
|
+
V1: "V1",
|
|
96
|
+
V2: "V2",
|
|
97
|
+
};
|
|
98
|
+
export const S3BackupMode = {
|
|
99
|
+
Disabled: "Disabled",
|
|
100
|
+
Enabled: "Enabled",
|
|
101
|
+
};
|
|
102
|
+
export const HttpEndpointS3BackupMode = {
|
|
103
|
+
AllData: "AllData",
|
|
104
|
+
FailedDataOnly: "FailedDataOnly",
|
|
105
|
+
};
|
|
106
|
+
export const RedshiftS3BackupMode = {
|
|
107
|
+
Disabled: "Disabled",
|
|
108
|
+
Enabled: "Enabled",
|
|
109
|
+
};
|
|
110
|
+
export const HECEndpointType = {
|
|
111
|
+
Event: "Event",
|
|
112
|
+
Raw: "Raw",
|
|
113
|
+
};
|
|
114
|
+
export const SplunkS3BackupMode = {
|
|
115
|
+
AllEvents: "AllEvents",
|
|
116
|
+
FailedEventsOnly: "FailedEventsOnly",
|
|
117
|
+
};
|
|
139
118
|
export class InvalidArgumentException extends __BaseException {
|
|
140
119
|
constructor(opts) {
|
|
141
120
|
super({
|
|
@@ -197,41 +176,38 @@ export class ResourceNotFoundException extends __BaseException {
|
|
|
197
176
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
198
177
|
}
|
|
199
178
|
}
|
|
200
|
-
export
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
DeliveryStreamStatus["DELETING"] = "DELETING";
|
|
233
|
-
DeliveryStreamStatus["DELETING_FAILED"] = "DELETING_FAILED";
|
|
234
|
-
})(DeliveryStreamStatus || (DeliveryStreamStatus = {}));
|
|
179
|
+
export const DeliveryStreamFailureType = {
|
|
180
|
+
CREATE_ENI_FAILED: "CREATE_ENI_FAILED",
|
|
181
|
+
CREATE_KMS_GRANT_FAILED: "CREATE_KMS_GRANT_FAILED",
|
|
182
|
+
DELETE_ENI_FAILED: "DELETE_ENI_FAILED",
|
|
183
|
+
DISABLED_KMS_KEY: "DISABLED_KMS_KEY",
|
|
184
|
+
ENI_ACCESS_DENIED: "ENI_ACCESS_DENIED",
|
|
185
|
+
INVALID_KMS_KEY: "INVALID_KMS_KEY",
|
|
186
|
+
KMS_ACCESS_DENIED: "KMS_ACCESS_DENIED",
|
|
187
|
+
KMS_KEY_NOT_FOUND: "KMS_KEY_NOT_FOUND",
|
|
188
|
+
KMS_OPT_IN_REQUIRED: "KMS_OPT_IN_REQUIRED",
|
|
189
|
+
RETIRE_KMS_GRANT_FAILED: "RETIRE_KMS_GRANT_FAILED",
|
|
190
|
+
SECURITY_GROUP_ACCESS_DENIED: "SECURITY_GROUP_ACCESS_DENIED",
|
|
191
|
+
SECURITY_GROUP_NOT_FOUND: "SECURITY_GROUP_NOT_FOUND",
|
|
192
|
+
SUBNET_ACCESS_DENIED: "SUBNET_ACCESS_DENIED",
|
|
193
|
+
SUBNET_NOT_FOUND: "SUBNET_NOT_FOUND",
|
|
194
|
+
UNKNOWN_ERROR: "UNKNOWN_ERROR",
|
|
195
|
+
};
|
|
196
|
+
export const DeliveryStreamEncryptionStatus = {
|
|
197
|
+
DISABLED: "DISABLED",
|
|
198
|
+
DISABLING: "DISABLING",
|
|
199
|
+
DISABLING_FAILED: "DISABLING_FAILED",
|
|
200
|
+
ENABLED: "ENABLED",
|
|
201
|
+
ENABLING: "ENABLING",
|
|
202
|
+
ENABLING_FAILED: "ENABLING_FAILED",
|
|
203
|
+
};
|
|
204
|
+
export const DeliveryStreamStatus = {
|
|
205
|
+
ACTIVE: "ACTIVE",
|
|
206
|
+
CREATING: "CREATING",
|
|
207
|
+
CREATING_FAILED: "CREATING_FAILED",
|
|
208
|
+
DELETING: "DELETING",
|
|
209
|
+
DELETING_FAILED: "DELETING_FAILED",
|
|
210
|
+
};
|
|
235
211
|
export class ServiceUnavailableException extends __BaseException {
|
|
236
212
|
constructor(opts) {
|
|
237
213
|
super({
|