@aws-sdk/client-firehose 3.489.0 → 3.495.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/Firehose.js +1 -35
- package/dist-cjs/FirehoseClient.js +1 -43
- package/dist-cjs/commands/CreateDeliveryStreamCommand.js +1 -29
- package/dist-cjs/commands/DeleteDeliveryStreamCommand.js +1 -28
- package/dist-cjs/commands/DescribeDeliveryStreamCommand.js +1 -29
- package/dist-cjs/commands/ListDeliveryStreamsCommand.js +1 -28
- package/dist-cjs/commands/ListTagsForDeliveryStreamCommand.js +1 -28
- package/dist-cjs/commands/PutRecordBatchCommand.js +1 -28
- package/dist-cjs/commands/PutRecordCommand.js +1 -28
- package/dist-cjs/commands/StartDeliveryStreamEncryptionCommand.js +1 -28
- package/dist-cjs/commands/StopDeliveryStreamEncryptionCommand.js +1 -28
- package/dist-cjs/commands/TagDeliveryStreamCommand.js +1 -28
- package/dist-cjs/commands/UntagDeliveryStreamCommand.js +1 -28
- package/dist-cjs/commands/UpdateDestinationCommand.js +1 -29
- package/dist-cjs/commands/index.js +1 -15
- package/dist-cjs/endpoint/EndpointParameters.js +1 -18
- package/dist-cjs/extensionConfiguration.js +1 -2
- package/dist-cjs/index.js +1904 -10
- package/dist-cjs/models/FirehoseServiceException.js +1 -12
- package/dist-cjs/models/index.js +1 -4
- package/dist-cjs/models/models_0.js +1 -372
- package/dist-cjs/protocols/Aws_json1_1.js +1 -952
- package/dist-cjs/runtimeExtensions.js +1 -22
- package/dist-es/models/models_0.js +75 -0
- package/dist-es/protocols/Aws_json1_1.js +3 -0
- package/dist-types/commands/CreateDeliveryStreamCommand.d.ts +27 -0
- package/dist-types/commands/DescribeDeliveryStreamCommand.d.ts +25 -0
- package/dist-types/commands/UpdateDestinationCommand.d.ts +24 -0
- package/dist-types/models/models_0.d.ts +396 -0
- package/dist-types/ts3.4/models/models_0.d.ts +98 -0
- package/package.json +39 -39
|
@@ -1,12 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.FirehoseServiceException = exports.__ServiceException = void 0;
|
|
4
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
5
|
-
Object.defineProperty(exports, "__ServiceException", { enumerable: true, get: function () { return smithy_client_1.ServiceException; } });
|
|
6
|
-
class FirehoseServiceException extends smithy_client_1.ServiceException {
|
|
7
|
-
constructor(options) {
|
|
8
|
-
super(options);
|
|
9
|
-
Object.setPrototypeOf(this, FirehoseServiceException.prototype);
|
|
10
|
-
}
|
|
11
|
-
}
|
|
12
|
-
exports.FirehoseServiceException = FirehoseServiceException;
|
|
1
|
+
module.exports = require("../index.js");
|
package/dist-cjs/models/index.js
CHANGED
|
@@ -1,372 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.UpdateDestinationInputFilterSensitiveLog = exports.RedshiftDestinationUpdateFilterSensitiveLog = exports.HttpEndpointDestinationUpdateFilterSensitiveLog = exports.DescribeDeliveryStreamOutputFilterSensitiveLog = exports.DeliveryStreamDescriptionFilterSensitiveLog = exports.DestinationDescriptionFilterSensitiveLog = exports.RedshiftDestinationDescriptionFilterSensitiveLog = exports.HttpEndpointDestinationDescriptionFilterSensitiveLog = exports.HttpEndpointDescriptionFilterSensitiveLog = exports.CreateDeliveryStreamInputFilterSensitiveLog = exports.RedshiftDestinationConfigurationFilterSensitiveLog = exports.HttpEndpointDestinationConfigurationFilterSensitiveLog = exports.HttpEndpointRequestConfigurationFilterSensitiveLog = exports.HttpEndpointCommonAttributeFilterSensitiveLog = exports.HttpEndpointConfigurationFilterSensitiveLog = exports.ServiceUnavailableException = exports.InvalidSourceException = exports.DeliveryStreamStatus = exports.DeliveryStreamEncryptionStatus = exports.DeliveryStreamFailureType = exports.ResourceNotFoundException = exports.ResourceInUseException = exports.LimitExceededException = exports.InvalidKMSResourceException = exports.InvalidArgumentException = exports.SplunkS3BackupMode = exports.HECEndpointType = exports.RedshiftS3BackupMode = exports.HttpEndpointS3BackupMode = exports.S3BackupMode = exports.ParquetWriterVersion = exports.ParquetCompression = exports.OrcFormatVersion = exports.OrcCompression = exports.ElasticsearchS3BackupMode = exports.ElasticsearchIndexRotationPeriod = exports.DeliveryStreamType = exports.KeyType = exports.ContentEncoding = exports.ConcurrentModificationException = exports.Connectivity = exports.AmazonopensearchserviceS3BackupMode = exports.AmazonopensearchserviceIndexRotationPeriod = exports.DefaultDocumentIdFormat = exports.NoEncryptionConfig = exports.CompressionFormat = exports.AmazonOpenSearchServerlessS3BackupMode = exports.ProcessorType = exports.ProcessorParameterName = void 0;
|
|
4
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
5
|
-
const FirehoseServiceException_1 = require("./FirehoseServiceException");
|
|
6
|
-
exports.ProcessorParameterName = {
|
|
7
|
-
BUFFER_INTERVAL_IN_SECONDS: "BufferIntervalInSeconds",
|
|
8
|
-
BUFFER_SIZE_IN_MB: "BufferSizeInMBs",
|
|
9
|
-
COMPRESSION_FORMAT: "CompressionFormat",
|
|
10
|
-
Delimiter: "Delimiter",
|
|
11
|
-
JSON_PARSING_ENGINE: "JsonParsingEngine",
|
|
12
|
-
LAMBDA_ARN: "LambdaArn",
|
|
13
|
-
LAMBDA_NUMBER_OF_RETRIES: "NumberOfRetries",
|
|
14
|
-
METADATA_EXTRACTION_QUERY: "MetadataExtractionQuery",
|
|
15
|
-
ROLE_ARN: "RoleArn",
|
|
16
|
-
SUB_RECORD_TYPE: "SubRecordType",
|
|
17
|
-
};
|
|
18
|
-
exports.ProcessorType = {
|
|
19
|
-
AppendDelimiterToRecord: "AppendDelimiterToRecord",
|
|
20
|
-
Decompression: "Decompression",
|
|
21
|
-
Lambda: "Lambda",
|
|
22
|
-
MetadataExtraction: "MetadataExtraction",
|
|
23
|
-
RecordDeAggregation: "RecordDeAggregation",
|
|
24
|
-
};
|
|
25
|
-
exports.AmazonOpenSearchServerlessS3BackupMode = {
|
|
26
|
-
AllDocuments: "AllDocuments",
|
|
27
|
-
FailedDocumentsOnly: "FailedDocumentsOnly",
|
|
28
|
-
};
|
|
29
|
-
exports.CompressionFormat = {
|
|
30
|
-
GZIP: "GZIP",
|
|
31
|
-
HADOOP_SNAPPY: "HADOOP_SNAPPY",
|
|
32
|
-
SNAPPY: "Snappy",
|
|
33
|
-
UNCOMPRESSED: "UNCOMPRESSED",
|
|
34
|
-
ZIP: "ZIP",
|
|
35
|
-
};
|
|
36
|
-
exports.NoEncryptionConfig = {
|
|
37
|
-
NoEncryption: "NoEncryption",
|
|
38
|
-
};
|
|
39
|
-
exports.DefaultDocumentIdFormat = {
|
|
40
|
-
FIREHOSE_DEFAULT: "FIREHOSE_DEFAULT",
|
|
41
|
-
NO_DOCUMENT_ID: "NO_DOCUMENT_ID",
|
|
42
|
-
};
|
|
43
|
-
exports.AmazonopensearchserviceIndexRotationPeriod = {
|
|
44
|
-
NoRotation: "NoRotation",
|
|
45
|
-
OneDay: "OneDay",
|
|
46
|
-
OneHour: "OneHour",
|
|
47
|
-
OneMonth: "OneMonth",
|
|
48
|
-
OneWeek: "OneWeek",
|
|
49
|
-
};
|
|
50
|
-
exports.AmazonopensearchserviceS3BackupMode = {
|
|
51
|
-
AllDocuments: "AllDocuments",
|
|
52
|
-
FailedDocumentsOnly: "FailedDocumentsOnly",
|
|
53
|
-
};
|
|
54
|
-
exports.Connectivity = {
|
|
55
|
-
PRIVATE: "PRIVATE",
|
|
56
|
-
PUBLIC: "PUBLIC",
|
|
57
|
-
};
|
|
58
|
-
class ConcurrentModificationException extends FirehoseServiceException_1.FirehoseServiceException {
|
|
59
|
-
constructor(opts) {
|
|
60
|
-
super({
|
|
61
|
-
name: "ConcurrentModificationException",
|
|
62
|
-
$fault: "client",
|
|
63
|
-
...opts,
|
|
64
|
-
});
|
|
65
|
-
this.name = "ConcurrentModificationException";
|
|
66
|
-
this.$fault = "client";
|
|
67
|
-
Object.setPrototypeOf(this, ConcurrentModificationException.prototype);
|
|
68
|
-
}
|
|
69
|
-
}
|
|
70
|
-
exports.ConcurrentModificationException = ConcurrentModificationException;
|
|
71
|
-
exports.ContentEncoding = {
|
|
72
|
-
GZIP: "GZIP",
|
|
73
|
-
NONE: "NONE",
|
|
74
|
-
};
|
|
75
|
-
exports.KeyType = {
|
|
76
|
-
AWS_OWNED_CMK: "AWS_OWNED_CMK",
|
|
77
|
-
CUSTOMER_MANAGED_CMK: "CUSTOMER_MANAGED_CMK",
|
|
78
|
-
};
|
|
79
|
-
exports.DeliveryStreamType = {
|
|
80
|
-
DirectPut: "DirectPut",
|
|
81
|
-
KinesisStreamAsSource: "KinesisStreamAsSource",
|
|
82
|
-
MSKAsSource: "MSKAsSource",
|
|
83
|
-
};
|
|
84
|
-
exports.ElasticsearchIndexRotationPeriod = {
|
|
85
|
-
NoRotation: "NoRotation",
|
|
86
|
-
OneDay: "OneDay",
|
|
87
|
-
OneHour: "OneHour",
|
|
88
|
-
OneMonth: "OneMonth",
|
|
89
|
-
OneWeek: "OneWeek",
|
|
90
|
-
};
|
|
91
|
-
exports.ElasticsearchS3BackupMode = {
|
|
92
|
-
AllDocuments: "AllDocuments",
|
|
93
|
-
FailedDocumentsOnly: "FailedDocumentsOnly",
|
|
94
|
-
};
|
|
95
|
-
exports.OrcCompression = {
|
|
96
|
-
NONE: "NONE",
|
|
97
|
-
SNAPPY: "SNAPPY",
|
|
98
|
-
ZLIB: "ZLIB",
|
|
99
|
-
};
|
|
100
|
-
exports.OrcFormatVersion = {
|
|
101
|
-
V0_11: "V0_11",
|
|
102
|
-
V0_12: "V0_12",
|
|
103
|
-
};
|
|
104
|
-
exports.ParquetCompression = {
|
|
105
|
-
GZIP: "GZIP",
|
|
106
|
-
SNAPPY: "SNAPPY",
|
|
107
|
-
UNCOMPRESSED: "UNCOMPRESSED",
|
|
108
|
-
};
|
|
109
|
-
exports.ParquetWriterVersion = {
|
|
110
|
-
V1: "V1",
|
|
111
|
-
V2: "V2",
|
|
112
|
-
};
|
|
113
|
-
exports.S3BackupMode = {
|
|
114
|
-
Disabled: "Disabled",
|
|
115
|
-
Enabled: "Enabled",
|
|
116
|
-
};
|
|
117
|
-
exports.HttpEndpointS3BackupMode = {
|
|
118
|
-
AllData: "AllData",
|
|
119
|
-
FailedDataOnly: "FailedDataOnly",
|
|
120
|
-
};
|
|
121
|
-
exports.RedshiftS3BackupMode = {
|
|
122
|
-
Disabled: "Disabled",
|
|
123
|
-
Enabled: "Enabled",
|
|
124
|
-
};
|
|
125
|
-
exports.HECEndpointType = {
|
|
126
|
-
Event: "Event",
|
|
127
|
-
Raw: "Raw",
|
|
128
|
-
};
|
|
129
|
-
exports.SplunkS3BackupMode = {
|
|
130
|
-
AllEvents: "AllEvents",
|
|
131
|
-
FailedEventsOnly: "FailedEventsOnly",
|
|
132
|
-
};
|
|
133
|
-
class InvalidArgumentException extends FirehoseServiceException_1.FirehoseServiceException {
|
|
134
|
-
constructor(opts) {
|
|
135
|
-
super({
|
|
136
|
-
name: "InvalidArgumentException",
|
|
137
|
-
$fault: "client",
|
|
138
|
-
...opts,
|
|
139
|
-
});
|
|
140
|
-
this.name = "InvalidArgumentException";
|
|
141
|
-
this.$fault = "client";
|
|
142
|
-
Object.setPrototypeOf(this, InvalidArgumentException.prototype);
|
|
143
|
-
}
|
|
144
|
-
}
|
|
145
|
-
exports.InvalidArgumentException = InvalidArgumentException;
|
|
146
|
-
class InvalidKMSResourceException extends FirehoseServiceException_1.FirehoseServiceException {
|
|
147
|
-
constructor(opts) {
|
|
148
|
-
super({
|
|
149
|
-
name: "InvalidKMSResourceException",
|
|
150
|
-
$fault: "client",
|
|
151
|
-
...opts,
|
|
152
|
-
});
|
|
153
|
-
this.name = "InvalidKMSResourceException";
|
|
154
|
-
this.$fault = "client";
|
|
155
|
-
Object.setPrototypeOf(this, InvalidKMSResourceException.prototype);
|
|
156
|
-
this.code = opts.code;
|
|
157
|
-
}
|
|
158
|
-
}
|
|
159
|
-
exports.InvalidKMSResourceException = InvalidKMSResourceException;
|
|
160
|
-
class LimitExceededException extends FirehoseServiceException_1.FirehoseServiceException {
|
|
161
|
-
constructor(opts) {
|
|
162
|
-
super({
|
|
163
|
-
name: "LimitExceededException",
|
|
164
|
-
$fault: "client",
|
|
165
|
-
...opts,
|
|
166
|
-
});
|
|
167
|
-
this.name = "LimitExceededException";
|
|
168
|
-
this.$fault = "client";
|
|
169
|
-
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
170
|
-
}
|
|
171
|
-
}
|
|
172
|
-
exports.LimitExceededException = LimitExceededException;
|
|
173
|
-
class ResourceInUseException extends FirehoseServiceException_1.FirehoseServiceException {
|
|
174
|
-
constructor(opts) {
|
|
175
|
-
super({
|
|
176
|
-
name: "ResourceInUseException",
|
|
177
|
-
$fault: "client",
|
|
178
|
-
...opts,
|
|
179
|
-
});
|
|
180
|
-
this.name = "ResourceInUseException";
|
|
181
|
-
this.$fault = "client";
|
|
182
|
-
Object.setPrototypeOf(this, ResourceInUseException.prototype);
|
|
183
|
-
}
|
|
184
|
-
}
|
|
185
|
-
exports.ResourceInUseException = ResourceInUseException;
|
|
186
|
-
class ResourceNotFoundException extends FirehoseServiceException_1.FirehoseServiceException {
|
|
187
|
-
constructor(opts) {
|
|
188
|
-
super({
|
|
189
|
-
name: "ResourceNotFoundException",
|
|
190
|
-
$fault: "client",
|
|
191
|
-
...opts,
|
|
192
|
-
});
|
|
193
|
-
this.name = "ResourceNotFoundException";
|
|
194
|
-
this.$fault = "client";
|
|
195
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
196
|
-
}
|
|
197
|
-
}
|
|
198
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
199
|
-
exports.DeliveryStreamFailureType = {
|
|
200
|
-
CREATE_ENI_FAILED: "CREATE_ENI_FAILED",
|
|
201
|
-
CREATE_KMS_GRANT_FAILED: "CREATE_KMS_GRANT_FAILED",
|
|
202
|
-
DELETE_ENI_FAILED: "DELETE_ENI_FAILED",
|
|
203
|
-
DISABLED_KMS_KEY: "DISABLED_KMS_KEY",
|
|
204
|
-
ENI_ACCESS_DENIED: "ENI_ACCESS_DENIED",
|
|
205
|
-
INVALID_KMS_KEY: "INVALID_KMS_KEY",
|
|
206
|
-
KMS_ACCESS_DENIED: "KMS_ACCESS_DENIED",
|
|
207
|
-
KMS_KEY_NOT_FOUND: "KMS_KEY_NOT_FOUND",
|
|
208
|
-
KMS_OPT_IN_REQUIRED: "KMS_OPT_IN_REQUIRED",
|
|
209
|
-
RETIRE_KMS_GRANT_FAILED: "RETIRE_KMS_GRANT_FAILED",
|
|
210
|
-
SECURITY_GROUP_ACCESS_DENIED: "SECURITY_GROUP_ACCESS_DENIED",
|
|
211
|
-
SECURITY_GROUP_NOT_FOUND: "SECURITY_GROUP_NOT_FOUND",
|
|
212
|
-
SUBNET_ACCESS_DENIED: "SUBNET_ACCESS_DENIED",
|
|
213
|
-
SUBNET_NOT_FOUND: "SUBNET_NOT_FOUND",
|
|
214
|
-
UNKNOWN_ERROR: "UNKNOWN_ERROR",
|
|
215
|
-
};
|
|
216
|
-
exports.DeliveryStreamEncryptionStatus = {
|
|
217
|
-
DISABLED: "DISABLED",
|
|
218
|
-
DISABLING: "DISABLING",
|
|
219
|
-
DISABLING_FAILED: "DISABLING_FAILED",
|
|
220
|
-
ENABLED: "ENABLED",
|
|
221
|
-
ENABLING: "ENABLING",
|
|
222
|
-
ENABLING_FAILED: "ENABLING_FAILED",
|
|
223
|
-
};
|
|
224
|
-
exports.DeliveryStreamStatus = {
|
|
225
|
-
ACTIVE: "ACTIVE",
|
|
226
|
-
CREATING: "CREATING",
|
|
227
|
-
CREATING_FAILED: "CREATING_FAILED",
|
|
228
|
-
DELETING: "DELETING",
|
|
229
|
-
DELETING_FAILED: "DELETING_FAILED",
|
|
230
|
-
};
|
|
231
|
-
class InvalidSourceException extends FirehoseServiceException_1.FirehoseServiceException {
|
|
232
|
-
constructor(opts) {
|
|
233
|
-
super({
|
|
234
|
-
name: "InvalidSourceException",
|
|
235
|
-
$fault: "client",
|
|
236
|
-
...opts,
|
|
237
|
-
});
|
|
238
|
-
this.name = "InvalidSourceException";
|
|
239
|
-
this.$fault = "client";
|
|
240
|
-
Object.setPrototypeOf(this, InvalidSourceException.prototype);
|
|
241
|
-
this.code = opts.code;
|
|
242
|
-
}
|
|
243
|
-
}
|
|
244
|
-
exports.InvalidSourceException = InvalidSourceException;
|
|
245
|
-
class ServiceUnavailableException extends FirehoseServiceException_1.FirehoseServiceException {
|
|
246
|
-
constructor(opts) {
|
|
247
|
-
super({
|
|
248
|
-
name: "ServiceUnavailableException",
|
|
249
|
-
$fault: "server",
|
|
250
|
-
...opts,
|
|
251
|
-
});
|
|
252
|
-
this.name = "ServiceUnavailableException";
|
|
253
|
-
this.$fault = "server";
|
|
254
|
-
Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
|
|
255
|
-
}
|
|
256
|
-
}
|
|
257
|
-
exports.ServiceUnavailableException = ServiceUnavailableException;
|
|
258
|
-
const HttpEndpointConfigurationFilterSensitiveLog = (obj) => ({
|
|
259
|
-
...obj,
|
|
260
|
-
...(obj.Url && { Url: smithy_client_1.SENSITIVE_STRING }),
|
|
261
|
-
...(obj.AccessKey && { AccessKey: smithy_client_1.SENSITIVE_STRING }),
|
|
262
|
-
});
|
|
263
|
-
exports.HttpEndpointConfigurationFilterSensitiveLog = HttpEndpointConfigurationFilterSensitiveLog;
|
|
264
|
-
const HttpEndpointCommonAttributeFilterSensitiveLog = (obj) => ({
|
|
265
|
-
...obj,
|
|
266
|
-
...(obj.AttributeName && { AttributeName: smithy_client_1.SENSITIVE_STRING }),
|
|
267
|
-
...(obj.AttributeValue && { AttributeValue: smithy_client_1.SENSITIVE_STRING }),
|
|
268
|
-
});
|
|
269
|
-
exports.HttpEndpointCommonAttributeFilterSensitiveLog = HttpEndpointCommonAttributeFilterSensitiveLog;
|
|
270
|
-
const HttpEndpointRequestConfigurationFilterSensitiveLog = (obj) => ({
|
|
271
|
-
...obj,
|
|
272
|
-
...(obj.CommonAttributes && {
|
|
273
|
-
CommonAttributes: obj.CommonAttributes.map((item) => (0, exports.HttpEndpointCommonAttributeFilterSensitiveLog)(item)),
|
|
274
|
-
}),
|
|
275
|
-
});
|
|
276
|
-
exports.HttpEndpointRequestConfigurationFilterSensitiveLog = HttpEndpointRequestConfigurationFilterSensitiveLog;
|
|
277
|
-
const HttpEndpointDestinationConfigurationFilterSensitiveLog = (obj) => ({
|
|
278
|
-
...obj,
|
|
279
|
-
...(obj.EndpointConfiguration && {
|
|
280
|
-
EndpointConfiguration: (0, exports.HttpEndpointConfigurationFilterSensitiveLog)(obj.EndpointConfiguration),
|
|
281
|
-
}),
|
|
282
|
-
...(obj.RequestConfiguration && {
|
|
283
|
-
RequestConfiguration: (0, exports.HttpEndpointRequestConfigurationFilterSensitiveLog)(obj.RequestConfiguration),
|
|
284
|
-
}),
|
|
285
|
-
});
|
|
286
|
-
exports.HttpEndpointDestinationConfigurationFilterSensitiveLog = HttpEndpointDestinationConfigurationFilterSensitiveLog;
|
|
287
|
-
const RedshiftDestinationConfigurationFilterSensitiveLog = (obj) => ({
|
|
288
|
-
...obj,
|
|
289
|
-
...(obj.Username && { Username: smithy_client_1.SENSITIVE_STRING }),
|
|
290
|
-
...(obj.Password && { Password: smithy_client_1.SENSITIVE_STRING }),
|
|
291
|
-
});
|
|
292
|
-
exports.RedshiftDestinationConfigurationFilterSensitiveLog = RedshiftDestinationConfigurationFilterSensitiveLog;
|
|
293
|
-
const CreateDeliveryStreamInputFilterSensitiveLog = (obj) => ({
|
|
294
|
-
...obj,
|
|
295
|
-
...(obj.RedshiftDestinationConfiguration && {
|
|
296
|
-
RedshiftDestinationConfiguration: (0, exports.RedshiftDestinationConfigurationFilterSensitiveLog)(obj.RedshiftDestinationConfiguration),
|
|
297
|
-
}),
|
|
298
|
-
...(obj.HttpEndpointDestinationConfiguration && {
|
|
299
|
-
HttpEndpointDestinationConfiguration: (0, exports.HttpEndpointDestinationConfigurationFilterSensitiveLog)(obj.HttpEndpointDestinationConfiguration),
|
|
300
|
-
}),
|
|
301
|
-
});
|
|
302
|
-
exports.CreateDeliveryStreamInputFilterSensitiveLog = CreateDeliveryStreamInputFilterSensitiveLog;
|
|
303
|
-
const HttpEndpointDescriptionFilterSensitiveLog = (obj) => ({
|
|
304
|
-
...obj,
|
|
305
|
-
...(obj.Url && { Url: smithy_client_1.SENSITIVE_STRING }),
|
|
306
|
-
});
|
|
307
|
-
exports.HttpEndpointDescriptionFilterSensitiveLog = HttpEndpointDescriptionFilterSensitiveLog;
|
|
308
|
-
const HttpEndpointDestinationDescriptionFilterSensitiveLog = (obj) => ({
|
|
309
|
-
...obj,
|
|
310
|
-
...(obj.EndpointConfiguration && {
|
|
311
|
-
EndpointConfiguration: (0, exports.HttpEndpointDescriptionFilterSensitiveLog)(obj.EndpointConfiguration),
|
|
312
|
-
}),
|
|
313
|
-
...(obj.RequestConfiguration && {
|
|
314
|
-
RequestConfiguration: (0, exports.HttpEndpointRequestConfigurationFilterSensitiveLog)(obj.RequestConfiguration),
|
|
315
|
-
}),
|
|
316
|
-
});
|
|
317
|
-
exports.HttpEndpointDestinationDescriptionFilterSensitiveLog = HttpEndpointDestinationDescriptionFilterSensitiveLog;
|
|
318
|
-
const RedshiftDestinationDescriptionFilterSensitiveLog = (obj) => ({
|
|
319
|
-
...obj,
|
|
320
|
-
...(obj.Username && { Username: smithy_client_1.SENSITIVE_STRING }),
|
|
321
|
-
});
|
|
322
|
-
exports.RedshiftDestinationDescriptionFilterSensitiveLog = RedshiftDestinationDescriptionFilterSensitiveLog;
|
|
323
|
-
const DestinationDescriptionFilterSensitiveLog = (obj) => ({
|
|
324
|
-
...obj,
|
|
325
|
-
...(obj.RedshiftDestinationDescription && {
|
|
326
|
-
RedshiftDestinationDescription: (0, exports.RedshiftDestinationDescriptionFilterSensitiveLog)(obj.RedshiftDestinationDescription),
|
|
327
|
-
}),
|
|
328
|
-
...(obj.HttpEndpointDestinationDescription && {
|
|
329
|
-
HttpEndpointDestinationDescription: (0, exports.HttpEndpointDestinationDescriptionFilterSensitiveLog)(obj.HttpEndpointDestinationDescription),
|
|
330
|
-
}),
|
|
331
|
-
});
|
|
332
|
-
exports.DestinationDescriptionFilterSensitiveLog = DestinationDescriptionFilterSensitiveLog;
|
|
333
|
-
const DeliveryStreamDescriptionFilterSensitiveLog = (obj) => ({
|
|
334
|
-
...obj,
|
|
335
|
-
...(obj.Destinations && {
|
|
336
|
-
Destinations: obj.Destinations.map((item) => (0, exports.DestinationDescriptionFilterSensitiveLog)(item)),
|
|
337
|
-
}),
|
|
338
|
-
});
|
|
339
|
-
exports.DeliveryStreamDescriptionFilterSensitiveLog = DeliveryStreamDescriptionFilterSensitiveLog;
|
|
340
|
-
const DescribeDeliveryStreamOutputFilterSensitiveLog = (obj) => ({
|
|
341
|
-
...obj,
|
|
342
|
-
...(obj.DeliveryStreamDescription && {
|
|
343
|
-
DeliveryStreamDescription: (0, exports.DeliveryStreamDescriptionFilterSensitiveLog)(obj.DeliveryStreamDescription),
|
|
344
|
-
}),
|
|
345
|
-
});
|
|
346
|
-
exports.DescribeDeliveryStreamOutputFilterSensitiveLog = DescribeDeliveryStreamOutputFilterSensitiveLog;
|
|
347
|
-
const HttpEndpointDestinationUpdateFilterSensitiveLog = (obj) => ({
|
|
348
|
-
...obj,
|
|
349
|
-
...(obj.EndpointConfiguration && {
|
|
350
|
-
EndpointConfiguration: (0, exports.HttpEndpointConfigurationFilterSensitiveLog)(obj.EndpointConfiguration),
|
|
351
|
-
}),
|
|
352
|
-
...(obj.RequestConfiguration && {
|
|
353
|
-
RequestConfiguration: (0, exports.HttpEndpointRequestConfigurationFilterSensitiveLog)(obj.RequestConfiguration),
|
|
354
|
-
}),
|
|
355
|
-
});
|
|
356
|
-
exports.HttpEndpointDestinationUpdateFilterSensitiveLog = HttpEndpointDestinationUpdateFilterSensitiveLog;
|
|
357
|
-
const RedshiftDestinationUpdateFilterSensitiveLog = (obj) => ({
|
|
358
|
-
...obj,
|
|
359
|
-
...(obj.Username && { Username: smithy_client_1.SENSITIVE_STRING }),
|
|
360
|
-
...(obj.Password && { Password: smithy_client_1.SENSITIVE_STRING }),
|
|
361
|
-
});
|
|
362
|
-
exports.RedshiftDestinationUpdateFilterSensitiveLog = RedshiftDestinationUpdateFilterSensitiveLog;
|
|
363
|
-
const UpdateDestinationInputFilterSensitiveLog = (obj) => ({
|
|
364
|
-
...obj,
|
|
365
|
-
...(obj.RedshiftDestinationUpdate && {
|
|
366
|
-
RedshiftDestinationUpdate: (0, exports.RedshiftDestinationUpdateFilterSensitiveLog)(obj.RedshiftDestinationUpdate),
|
|
367
|
-
}),
|
|
368
|
-
...(obj.HttpEndpointDestinationUpdate && {
|
|
369
|
-
HttpEndpointDestinationUpdate: (0, exports.HttpEndpointDestinationUpdateFilterSensitiveLog)(obj.HttpEndpointDestinationUpdate),
|
|
370
|
-
}),
|
|
371
|
-
});
|
|
372
|
-
exports.UpdateDestinationInputFilterSensitiveLog = UpdateDestinationInputFilterSensitiveLog;
|
|
1
|
+
module.exports = require("../index.js");
|