@aws-sdk/client-firehose 3.686.0 → 3.688.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/index.js +81 -22
- package/dist-es/models/models_0.js +32 -15
- package/dist-es/protocols/Aws_json1_1.js +36 -0
- package/dist-types/commands/CreateDeliveryStreamCommand.d.ts +70 -12
- package/dist-types/commands/DeleteDeliveryStreamCommand.d.ts +8 -8
- package/dist-types/commands/DescribeDeliveryStreamCommand.d.ts +76 -8
- package/dist-types/commands/ListDeliveryStreamsCommand.d.ts +6 -6
- package/dist-types/commands/ListTagsForDeliveryStreamCommand.d.ts +1 -1
- package/dist-types/commands/PutRecordBatchCommand.d.ts +13 -8
- package/dist-types/commands/PutRecordCommand.d.ts +15 -10
- package/dist-types/commands/StartDeliveryStreamEncryptionCommand.d.ts +12 -12
- package/dist-types/commands/StopDeliveryStreamEncryptionCommand.d.ts +5 -5
- package/dist-types/commands/TagDeliveryStreamCommand.d.ts +3 -3
- package/dist-types/commands/UntagDeliveryStreamCommand.d.ts +1 -1
- package/dist-types/commands/UpdateDestinationCommand.d.ts +17 -3
- package/dist-types/models/models_0.d.ts +818 -344
- package/dist-types/ts3.4/models/models_0.d.ts +120 -17
- package/package.json +6 -6
package/dist-cjs/index.js
CHANGED
|
@@ -30,6 +30,7 @@ __export(src_exports, {
|
|
|
30
30
|
ContentEncoding: () => ContentEncoding,
|
|
31
31
|
CreateDeliveryStreamCommand: () => CreateDeliveryStreamCommand,
|
|
32
32
|
CreateDeliveryStreamInputFilterSensitiveLog: () => CreateDeliveryStreamInputFilterSensitiveLog,
|
|
33
|
+
DatabaseType: () => DatabaseType,
|
|
33
34
|
DefaultDocumentIdFormat: () => DefaultDocumentIdFormat,
|
|
34
35
|
DeleteDeliveryStreamCommand: () => DeleteDeliveryStreamCommand,
|
|
35
36
|
DeliveryStreamDescriptionFilterSensitiveLog: () => DeliveryStreamDescriptionFilterSensitiveLog,
|
|
@@ -78,7 +79,10 @@ __export(src_exports, {
|
|
|
78
79
|
ResourceInUseException: () => ResourceInUseException,
|
|
79
80
|
ResourceNotFoundException: () => ResourceNotFoundException,
|
|
80
81
|
S3BackupMode: () => S3BackupMode,
|
|
82
|
+
SSLMode: () => SSLMode,
|
|
81
83
|
ServiceUnavailableException: () => ServiceUnavailableException,
|
|
84
|
+
SnapshotRequestedBy: () => SnapshotRequestedBy,
|
|
85
|
+
SnapshotStatus: () => SnapshotStatus,
|
|
82
86
|
SnowflakeDataLoadingOption: () => SnowflakeDataLoadingOption,
|
|
83
87
|
SnowflakeDestinationConfigurationFilterSensitiveLog: () => SnowflakeDestinationConfigurationFilterSensitiveLog,
|
|
84
88
|
SnowflakeDestinationDescriptionFilterSensitiveLog: () => SnowflakeDestinationDescriptionFilterSensitiveLog,
|
|
@@ -335,11 +339,20 @@ var ContentEncoding = {
|
|
|
335
339
|
GZIP: "GZIP",
|
|
336
340
|
NONE: "NONE"
|
|
337
341
|
};
|
|
342
|
+
var SSLMode = {
|
|
343
|
+
Disabled: "Disabled",
|
|
344
|
+
Enabled: "Enabled"
|
|
345
|
+
};
|
|
346
|
+
var DatabaseType = {
|
|
347
|
+
MySQL: "MySQL",
|
|
348
|
+
PostgreSQL: "PostgreSQL"
|
|
349
|
+
};
|
|
338
350
|
var KeyType = {
|
|
339
351
|
AWS_OWNED_CMK: "AWS_OWNED_CMK",
|
|
340
352
|
CUSTOMER_MANAGED_CMK: "CUSTOMER_MANAGED_CMK"
|
|
341
353
|
};
|
|
342
354
|
var DeliveryStreamType = {
|
|
355
|
+
DatabaseAsSource: "DatabaseAsSource",
|
|
343
356
|
DirectPut: "DirectPut",
|
|
344
357
|
KinesisStreamAsSource: "KinesisStreamAsSource",
|
|
345
358
|
MSKAsSource: "MSKAsSource"
|
|
@@ -475,6 +488,34 @@ var _ResourceInUseException = class _ResourceInUseException extends FirehoseServ
|
|
|
475
488
|
};
|
|
476
489
|
__name(_ResourceInUseException, "ResourceInUseException");
|
|
477
490
|
var ResourceInUseException = _ResourceInUseException;
|
|
491
|
+
var DeliveryStreamFailureType = {
|
|
492
|
+
CREATE_ENI_FAILED: "CREATE_ENI_FAILED",
|
|
493
|
+
CREATE_KMS_GRANT_FAILED: "CREATE_KMS_GRANT_FAILED",
|
|
494
|
+
DELETE_ENI_FAILED: "DELETE_ENI_FAILED",
|
|
495
|
+
DISABLED_KMS_KEY: "DISABLED_KMS_KEY",
|
|
496
|
+
ENI_ACCESS_DENIED: "ENI_ACCESS_DENIED",
|
|
497
|
+
INVALID_KMS_KEY: "INVALID_KMS_KEY",
|
|
498
|
+
KMS_ACCESS_DENIED: "KMS_ACCESS_DENIED",
|
|
499
|
+
KMS_KEY_NOT_FOUND: "KMS_KEY_NOT_FOUND",
|
|
500
|
+
KMS_OPT_IN_REQUIRED: "KMS_OPT_IN_REQUIRED",
|
|
501
|
+
RETIRE_KMS_GRANT_FAILED: "RETIRE_KMS_GRANT_FAILED",
|
|
502
|
+
SECURITY_GROUP_ACCESS_DENIED: "SECURITY_GROUP_ACCESS_DENIED",
|
|
503
|
+
SECURITY_GROUP_NOT_FOUND: "SECURITY_GROUP_NOT_FOUND",
|
|
504
|
+
SUBNET_ACCESS_DENIED: "SUBNET_ACCESS_DENIED",
|
|
505
|
+
SUBNET_NOT_FOUND: "SUBNET_NOT_FOUND",
|
|
506
|
+
UNKNOWN_ERROR: "UNKNOWN_ERROR",
|
|
507
|
+
VPC_ENDPOINT_SERVICE_NAME_NOT_FOUND: "VPC_ENDPOINT_SERVICE_NAME_NOT_FOUND",
|
|
508
|
+
VPC_INTERFACE_ENDPOINT_SERVICE_ACCESS_DENIED: "VPC_INTERFACE_ENDPOINT_SERVICE_ACCESS_DENIED"
|
|
509
|
+
};
|
|
510
|
+
var SnapshotRequestedBy = {
|
|
511
|
+
FIREHOSE: "FIREHOSE",
|
|
512
|
+
USER: "USER"
|
|
513
|
+
};
|
|
514
|
+
var SnapshotStatus = {
|
|
515
|
+
COMPLETE: "COMPLETE",
|
|
516
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
517
|
+
SUSPENDED: "SUSPENDED"
|
|
518
|
+
};
|
|
478
519
|
var _ResourceNotFoundException = class _ResourceNotFoundException extends FirehoseServiceException {
|
|
479
520
|
/**
|
|
480
521
|
* @internal
|
|
@@ -492,23 +533,6 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends Fireho
|
|
|
492
533
|
};
|
|
493
534
|
__name(_ResourceNotFoundException, "ResourceNotFoundException");
|
|
494
535
|
var ResourceNotFoundException = _ResourceNotFoundException;
|
|
495
|
-
var DeliveryStreamFailureType = {
|
|
496
|
-
CREATE_ENI_FAILED: "CREATE_ENI_FAILED",
|
|
497
|
-
CREATE_KMS_GRANT_FAILED: "CREATE_KMS_GRANT_FAILED",
|
|
498
|
-
DELETE_ENI_FAILED: "DELETE_ENI_FAILED",
|
|
499
|
-
DISABLED_KMS_KEY: "DISABLED_KMS_KEY",
|
|
500
|
-
ENI_ACCESS_DENIED: "ENI_ACCESS_DENIED",
|
|
501
|
-
INVALID_KMS_KEY: "INVALID_KMS_KEY",
|
|
502
|
-
KMS_ACCESS_DENIED: "KMS_ACCESS_DENIED",
|
|
503
|
-
KMS_KEY_NOT_FOUND: "KMS_KEY_NOT_FOUND",
|
|
504
|
-
KMS_OPT_IN_REQUIRED: "KMS_OPT_IN_REQUIRED",
|
|
505
|
-
RETIRE_KMS_GRANT_FAILED: "RETIRE_KMS_GRANT_FAILED",
|
|
506
|
-
SECURITY_GROUP_ACCESS_DENIED: "SECURITY_GROUP_ACCESS_DENIED",
|
|
507
|
-
SECURITY_GROUP_NOT_FOUND: "SECURITY_GROUP_NOT_FOUND",
|
|
508
|
-
SUBNET_ACCESS_DENIED: "SUBNET_ACCESS_DENIED",
|
|
509
|
-
SUBNET_NOT_FOUND: "SUBNET_NOT_FOUND",
|
|
510
|
-
UNKNOWN_ERROR: "UNKNOWN_ERROR"
|
|
511
|
-
};
|
|
512
536
|
var DeliveryStreamEncryptionStatus = {
|
|
513
537
|
DISABLED: "DISABLED",
|
|
514
538
|
DISABLING: "DISABLING",
|
|
@@ -691,10 +715,7 @@ var DeliveryStreamDescriptionFilterSensitiveLog = /* @__PURE__ */ __name((obj) =
|
|
|
691
715
|
}
|
|
692
716
|
}), "DeliveryStreamDescriptionFilterSensitiveLog");
|
|
693
717
|
var DescribeDeliveryStreamOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
694
|
-
...obj
|
|
695
|
-
...obj.DeliveryStreamDescription && {
|
|
696
|
-
DeliveryStreamDescription: DeliveryStreamDescriptionFilterSensitiveLog(obj.DeliveryStreamDescription)
|
|
697
|
-
}
|
|
718
|
+
...obj
|
|
698
719
|
}), "DescribeDeliveryStreamOutputFilterSensitiveLog");
|
|
699
720
|
var HttpEndpointDestinationUpdateFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
700
721
|
...obj,
|
|
@@ -1086,6 +1107,7 @@ var se_CreateDeliveryStreamInput = /* @__PURE__ */ __name((input, context) => {
|
|
|
1086
1107
|
return (0, import_smithy_client.take)(input, {
|
|
1087
1108
|
AmazonOpenSearchServerlessDestinationConfiguration: import_smithy_client._json,
|
|
1088
1109
|
AmazonopensearchserviceDestinationConfiguration: import_smithy_client._json,
|
|
1110
|
+
DatabaseSourceConfiguration: import_smithy_client._json,
|
|
1089
1111
|
DeliveryStreamEncryptionConfigurationInput: import_smithy_client._json,
|
|
1090
1112
|
DeliveryStreamName: [],
|
|
1091
1113
|
DeliveryStreamType: [],
|
|
@@ -1220,6 +1242,38 @@ var se_UpdateDestinationInput = /* @__PURE__ */ __name((input, context) => {
|
|
|
1220
1242
|
SplunkDestinationUpdate: import_smithy_client._json
|
|
1221
1243
|
});
|
|
1222
1244
|
}, "se_UpdateDestinationInput");
|
|
1245
|
+
var de_DatabaseSnapshotInfo = /* @__PURE__ */ __name((output, context) => {
|
|
1246
|
+
return (0, import_smithy_client.take)(output, {
|
|
1247
|
+
FailureDescription: import_smithy_client._json,
|
|
1248
|
+
Id: import_smithy_client.expectString,
|
|
1249
|
+
RequestTimestamp: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
1250
|
+
RequestedBy: import_smithy_client.expectString,
|
|
1251
|
+
Status: import_smithy_client.expectString,
|
|
1252
|
+
Table: import_smithy_client.expectString
|
|
1253
|
+
});
|
|
1254
|
+
}, "de_DatabaseSnapshotInfo");
|
|
1255
|
+
var de_DatabaseSnapshotInfoList = /* @__PURE__ */ __name((output, context) => {
|
|
1256
|
+
const retVal = (output || []).filter((e) => e != null).map((entry) => {
|
|
1257
|
+
return de_DatabaseSnapshotInfo(entry, context);
|
|
1258
|
+
});
|
|
1259
|
+
return retVal;
|
|
1260
|
+
}, "de_DatabaseSnapshotInfoList");
|
|
1261
|
+
var de_DatabaseSourceDescription = /* @__PURE__ */ __name((output, context) => {
|
|
1262
|
+
return (0, import_smithy_client.take)(output, {
|
|
1263
|
+
Columns: import_smithy_client._json,
|
|
1264
|
+
DatabaseSourceAuthenticationConfiguration: import_smithy_client._json,
|
|
1265
|
+
DatabaseSourceVPCConfiguration: import_smithy_client._json,
|
|
1266
|
+
Databases: import_smithy_client._json,
|
|
1267
|
+
Endpoint: import_smithy_client.expectString,
|
|
1268
|
+
Port: import_smithy_client.expectInt32,
|
|
1269
|
+
SSLMode: import_smithy_client.expectString,
|
|
1270
|
+
SnapshotInfo: (_) => de_DatabaseSnapshotInfoList(_, context),
|
|
1271
|
+
SnapshotWatermarkTable: import_smithy_client.expectString,
|
|
1272
|
+
SurrogateKeys: import_smithy_client._json,
|
|
1273
|
+
Tables: import_smithy_client._json,
|
|
1274
|
+
Type: import_smithy_client.expectString
|
|
1275
|
+
});
|
|
1276
|
+
}, "de_DatabaseSourceDescription");
|
|
1223
1277
|
var de_DataFormatConversionConfiguration = /* @__PURE__ */ __name((output, context) => {
|
|
1224
1278
|
return (0, import_smithy_client.take)(output, {
|
|
1225
1279
|
Enabled: import_smithy_client.expectBoolean,
|
|
@@ -1332,6 +1386,7 @@ var de_Serializer = /* @__PURE__ */ __name((output, context) => {
|
|
|
1332
1386
|
}, "de_Serializer");
|
|
1333
1387
|
var de_SourceDescription = /* @__PURE__ */ __name((output, context) => {
|
|
1334
1388
|
return (0, import_smithy_client.take)(output, {
|
|
1389
|
+
DatabaseSourceDescription: (_) => de_DatabaseSourceDescription(_, context),
|
|
1335
1390
|
KinesisStreamSourceDescription: (_) => de_KinesisStreamSourceDescription(_, context),
|
|
1336
1391
|
MSKSourceDescription: (_) => de_MSKSourceDescription(_, context)
|
|
1337
1392
|
});
|
|
@@ -1585,6 +1640,8 @@ var Firehose = _Firehose;
|
|
|
1585
1640
|
Connectivity,
|
|
1586
1641
|
ConcurrentModificationException,
|
|
1587
1642
|
ContentEncoding,
|
|
1643
|
+
SSLMode,
|
|
1644
|
+
DatabaseType,
|
|
1588
1645
|
KeyType,
|
|
1589
1646
|
DeliveryStreamType,
|
|
1590
1647
|
ElasticsearchIndexRotationPeriod,
|
|
@@ -1605,8 +1662,10 @@ var Firehose = _Firehose;
|
|
|
1605
1662
|
InvalidKMSResourceException,
|
|
1606
1663
|
LimitExceededException,
|
|
1607
1664
|
ResourceInUseException,
|
|
1608
|
-
ResourceNotFoundException,
|
|
1609
1665
|
DeliveryStreamFailureType,
|
|
1666
|
+
SnapshotRequestedBy,
|
|
1667
|
+
SnapshotStatus,
|
|
1668
|
+
ResourceNotFoundException,
|
|
1610
1669
|
DeliveryStreamEncryptionStatus,
|
|
1611
1670
|
DeliveryStreamStatus,
|
|
1612
1671
|
InvalidSourceException,
|
|
@@ -70,11 +70,20 @@ export const ContentEncoding = {
|
|
|
70
70
|
GZIP: "GZIP",
|
|
71
71
|
NONE: "NONE",
|
|
72
72
|
};
|
|
73
|
+
export const SSLMode = {
|
|
74
|
+
Disabled: "Disabled",
|
|
75
|
+
Enabled: "Enabled",
|
|
76
|
+
};
|
|
77
|
+
export const DatabaseType = {
|
|
78
|
+
MySQL: "MySQL",
|
|
79
|
+
PostgreSQL: "PostgreSQL",
|
|
80
|
+
};
|
|
73
81
|
export const KeyType = {
|
|
74
82
|
AWS_OWNED_CMK: "AWS_OWNED_CMK",
|
|
75
83
|
CUSTOMER_MANAGED_CMK: "CUSTOMER_MANAGED_CMK",
|
|
76
84
|
};
|
|
77
85
|
export const DeliveryStreamType = {
|
|
86
|
+
DatabaseAsSource: "DatabaseAsSource",
|
|
78
87
|
DirectPut: "DirectPut",
|
|
79
88
|
KinesisStreamAsSource: "KinesisStreamAsSource",
|
|
80
89
|
MSKAsSource: "MSKAsSource",
|
|
@@ -190,18 +199,6 @@ export class ResourceInUseException extends __BaseException {
|
|
|
190
199
|
Object.setPrototypeOf(this, ResourceInUseException.prototype);
|
|
191
200
|
}
|
|
192
201
|
}
|
|
193
|
-
export class ResourceNotFoundException extends __BaseException {
|
|
194
|
-
constructor(opts) {
|
|
195
|
-
super({
|
|
196
|
-
name: "ResourceNotFoundException",
|
|
197
|
-
$fault: "client",
|
|
198
|
-
...opts,
|
|
199
|
-
});
|
|
200
|
-
this.name = "ResourceNotFoundException";
|
|
201
|
-
this.$fault = "client";
|
|
202
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
203
|
-
}
|
|
204
|
-
}
|
|
205
202
|
export const DeliveryStreamFailureType = {
|
|
206
203
|
CREATE_ENI_FAILED: "CREATE_ENI_FAILED",
|
|
207
204
|
CREATE_KMS_GRANT_FAILED: "CREATE_KMS_GRANT_FAILED",
|
|
@@ -218,7 +215,30 @@ export const DeliveryStreamFailureType = {
|
|
|
218
215
|
SUBNET_ACCESS_DENIED: "SUBNET_ACCESS_DENIED",
|
|
219
216
|
SUBNET_NOT_FOUND: "SUBNET_NOT_FOUND",
|
|
220
217
|
UNKNOWN_ERROR: "UNKNOWN_ERROR",
|
|
218
|
+
VPC_ENDPOINT_SERVICE_NAME_NOT_FOUND: "VPC_ENDPOINT_SERVICE_NAME_NOT_FOUND",
|
|
219
|
+
VPC_INTERFACE_ENDPOINT_SERVICE_ACCESS_DENIED: "VPC_INTERFACE_ENDPOINT_SERVICE_ACCESS_DENIED",
|
|
221
220
|
};
|
|
221
|
+
export const SnapshotRequestedBy = {
|
|
222
|
+
FIREHOSE: "FIREHOSE",
|
|
223
|
+
USER: "USER",
|
|
224
|
+
};
|
|
225
|
+
export const SnapshotStatus = {
|
|
226
|
+
COMPLETE: "COMPLETE",
|
|
227
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
228
|
+
SUSPENDED: "SUSPENDED",
|
|
229
|
+
};
|
|
230
|
+
export class ResourceNotFoundException extends __BaseException {
|
|
231
|
+
constructor(opts) {
|
|
232
|
+
super({
|
|
233
|
+
name: "ResourceNotFoundException",
|
|
234
|
+
$fault: "client",
|
|
235
|
+
...opts,
|
|
236
|
+
});
|
|
237
|
+
this.name = "ResourceNotFoundException";
|
|
238
|
+
this.$fault = "client";
|
|
239
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
240
|
+
}
|
|
241
|
+
}
|
|
222
242
|
export const DeliveryStreamEncryptionStatus = {
|
|
223
243
|
DISABLED: "DISABLED",
|
|
224
244
|
DISABLING: "DISABLING",
|
|
@@ -380,9 +400,6 @@ export const DeliveryStreamDescriptionFilterSensitiveLog = (obj) => ({
|
|
|
380
400
|
});
|
|
381
401
|
export const DescribeDeliveryStreamOutputFilterSensitiveLog = (obj) => ({
|
|
382
402
|
...obj,
|
|
383
|
-
...(obj.DeliveryStreamDescription && {
|
|
384
|
-
DeliveryStreamDescription: DeliveryStreamDescriptionFilterSensitiveLog(obj.DeliveryStreamDescription),
|
|
385
|
-
}),
|
|
386
403
|
});
|
|
387
404
|
export const HttpEndpointDestinationUpdateFilterSensitiveLog = (obj) => ({
|
|
388
405
|
...obj,
|
|
@@ -347,6 +347,7 @@ const se_CreateDeliveryStreamInput = (input, context) => {
|
|
|
347
347
|
return take(input, {
|
|
348
348
|
AmazonOpenSearchServerlessDestinationConfiguration: _json,
|
|
349
349
|
AmazonopensearchserviceDestinationConfiguration: _json,
|
|
350
|
+
DatabaseSourceConfiguration: _json,
|
|
350
351
|
DeliveryStreamEncryptionConfigurationInput: _json,
|
|
351
352
|
DeliveryStreamName: [],
|
|
352
353
|
DeliveryStreamType: [],
|
|
@@ -483,6 +484,40 @@ const se_UpdateDestinationInput = (input, context) => {
|
|
|
483
484
|
SplunkDestinationUpdate: _json,
|
|
484
485
|
});
|
|
485
486
|
};
|
|
487
|
+
const de_DatabaseSnapshotInfo = (output, context) => {
|
|
488
|
+
return take(output, {
|
|
489
|
+
FailureDescription: _json,
|
|
490
|
+
Id: __expectString,
|
|
491
|
+
RequestTimestamp: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
492
|
+
RequestedBy: __expectString,
|
|
493
|
+
Status: __expectString,
|
|
494
|
+
Table: __expectString,
|
|
495
|
+
});
|
|
496
|
+
};
|
|
497
|
+
const de_DatabaseSnapshotInfoList = (output, context) => {
|
|
498
|
+
const retVal = (output || [])
|
|
499
|
+
.filter((e) => e != null)
|
|
500
|
+
.map((entry) => {
|
|
501
|
+
return de_DatabaseSnapshotInfo(entry, context);
|
|
502
|
+
});
|
|
503
|
+
return retVal;
|
|
504
|
+
};
|
|
505
|
+
const de_DatabaseSourceDescription = (output, context) => {
|
|
506
|
+
return take(output, {
|
|
507
|
+
Columns: _json,
|
|
508
|
+
DatabaseSourceAuthenticationConfiguration: _json,
|
|
509
|
+
DatabaseSourceVPCConfiguration: _json,
|
|
510
|
+
Databases: _json,
|
|
511
|
+
Endpoint: __expectString,
|
|
512
|
+
Port: __expectInt32,
|
|
513
|
+
SSLMode: __expectString,
|
|
514
|
+
SnapshotInfo: (_) => de_DatabaseSnapshotInfoList(_, context),
|
|
515
|
+
SnapshotWatermarkTable: __expectString,
|
|
516
|
+
SurrogateKeys: _json,
|
|
517
|
+
Tables: _json,
|
|
518
|
+
Type: __expectString,
|
|
519
|
+
});
|
|
520
|
+
};
|
|
486
521
|
const de_DataFormatConversionConfiguration = (output, context) => {
|
|
487
522
|
return take(output, {
|
|
488
523
|
Enabled: __expectBoolean,
|
|
@@ -597,6 +632,7 @@ const de_Serializer = (output, context) => {
|
|
|
597
632
|
};
|
|
598
633
|
const de_SourceDescription = (output, context) => {
|
|
599
634
|
return take(output, {
|
|
635
|
+
DatabaseSourceDescription: (_) => de_DatabaseSourceDescription(_, context),
|
|
600
636
|
KinesisStreamSourceDescription: (_) => de_KinesisStreamSourceDescription(_, context),
|
|
601
637
|
MSKSourceDescription: (_) => de_MSKSourceDescription(_, context),
|
|
602
638
|
});
|
|
@@ -27,30 +27,30 @@ declare const CreateDeliveryStreamCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Creates a Firehose
|
|
31
|
-
* <p>By default, you can create up to 50
|
|
30
|
+
* <p>Creates a Firehose stream.</p>
|
|
31
|
+
* <p>By default, you can create up to 50 Firehose streams per Amazon Web Services
|
|
32
32
|
* Region.</p>
|
|
33
33
|
* <p>This is an asynchronous operation that immediately returns. The initial status of the
|
|
34
|
-
*
|
|
35
|
-
* is <code>ACTIVE</code> and it now accepts data. If the
|
|
34
|
+
* Firehose stream is <code>CREATING</code>. After the Firehose stream is created, its status
|
|
35
|
+
* is <code>ACTIVE</code> and it now accepts data. If the Firehose stream creation fails, the
|
|
36
36
|
* status transitions to <code>CREATING_FAILED</code>. Attempts to send data to a delivery
|
|
37
37
|
* stream that is not in the <code>ACTIVE</code> state cause an exception. To check the state
|
|
38
|
-
* of a
|
|
39
|
-
* <p>If the status of a
|
|
38
|
+
* of a Firehose stream, use <a>DescribeDeliveryStream</a>.</p>
|
|
39
|
+
* <p>If the status of a Firehose stream is <code>CREATING_FAILED</code>, this status
|
|
40
40
|
* doesn't change, and you can't invoke <code>CreateDeliveryStream</code> again on it.
|
|
41
41
|
* However, you can invoke the <a>DeleteDeliveryStream</a> operation to delete
|
|
42
42
|
* it.</p>
|
|
43
|
-
* <p>A Firehose
|
|
43
|
+
* <p>A Firehose stream can be configured to receive records directly
|
|
44
44
|
* from providers using <a>PutRecord</a> or <a>PutRecordBatch</a>, or it
|
|
45
45
|
* can be configured to use an existing Kinesis stream as its source. To specify a Kinesis
|
|
46
46
|
* data stream as input, set the <code>DeliveryStreamType</code> parameter to
|
|
47
47
|
* <code>KinesisStreamAsSource</code>, and provide the Kinesis stream Amazon Resource Name
|
|
48
48
|
* (ARN) and role ARN in the <code>KinesisStreamSourceConfiguration</code>
|
|
49
49
|
* parameter.</p>
|
|
50
|
-
* <p>To create a
|
|
50
|
+
* <p>To create a Firehose stream with server-side encryption (SSE) enabled, include <a>DeliveryStreamEncryptionConfigurationInput</a> in your request. This is
|
|
51
51
|
* optional. You can also invoke <a>StartDeliveryStreamEncryption</a> to turn on
|
|
52
|
-
* SSE for an existing
|
|
53
|
-
* <p>A
|
|
52
|
+
* SSE for an existing Firehose stream that doesn't have SSE enabled.</p>
|
|
53
|
+
* <p>A Firehose stream is configured with a single destination, such as Amazon Simple
|
|
54
54
|
* Storage Service (Amazon S3), Amazon Redshift, Amazon OpenSearch Service, Amazon OpenSearch
|
|
55
55
|
* Serverless, Splunk, and any custom HTTP endpoint or HTTP endpoints owned by or supported by
|
|
56
56
|
* third-party service providers, including Datadog, Dynatrace, LogicMonitor, MongoDB, New
|
|
@@ -102,7 +102,7 @@ declare const CreateDeliveryStreamCommand_base: {
|
|
|
102
102
|
* const client = new FirehoseClient(config);
|
|
103
103
|
* const input = { // CreateDeliveryStreamInput
|
|
104
104
|
* DeliveryStreamName: "STRING_VALUE", // required
|
|
105
|
-
* DeliveryStreamType: "DirectPut" || "KinesisStreamAsSource" || "MSKAsSource",
|
|
105
|
+
* DeliveryStreamType: "DirectPut" || "KinesisStreamAsSource" || "MSKAsSource" || "DatabaseAsSource",
|
|
106
106
|
* KinesisStreamSourceConfiguration: { // KinesisStreamSourceConfiguration
|
|
107
107
|
* KinesisStreamARN: "STRING_VALUE", // required
|
|
108
108
|
* RoleARN: "STRING_VALUE", // required
|
|
@@ -581,9 +581,22 @@ declare const CreateDeliveryStreamCommand_base: {
|
|
|
581
581
|
* UniqueKeys: [
|
|
582
582
|
* "STRING_VALUE",
|
|
583
583
|
* ],
|
|
584
|
+
* PartitionSpec: { // PartitionSpec
|
|
585
|
+
* Identity: [ // PartitionFields
|
|
586
|
+
* { // PartitionField
|
|
587
|
+
* SourceName: "STRING_VALUE", // required
|
|
588
|
+
* },
|
|
589
|
+
* ],
|
|
590
|
+
* },
|
|
584
591
|
* S3ErrorOutputPrefix: "STRING_VALUE",
|
|
585
592
|
* },
|
|
586
593
|
* ],
|
|
594
|
+
* SchemaEvolutionConfiguration: { // SchemaEvolutionConfiguration
|
|
595
|
+
* Enabled: true || false, // required
|
|
596
|
+
* },
|
|
597
|
+
* TableCreationConfiguration: { // TableCreationConfiguration
|
|
598
|
+
* Enabled: true || false, // required
|
|
599
|
+
* },
|
|
587
600
|
* BufferingHints: "<BufferingHints>",
|
|
588
601
|
* CloudWatchLoggingOptions: "<CloudWatchLoggingOptions>",
|
|
589
602
|
* ProcessingConfiguration: "<ProcessingConfiguration>",
|
|
@@ -594,9 +607,54 @@ declare const CreateDeliveryStreamCommand_base: {
|
|
|
594
607
|
* RoleARN: "STRING_VALUE", // required
|
|
595
608
|
* CatalogConfiguration: { // CatalogConfiguration
|
|
596
609
|
* CatalogARN: "STRING_VALUE",
|
|
610
|
+
* WarehouseLocation: "STRING_VALUE",
|
|
597
611
|
* },
|
|
598
612
|
* S3Configuration: "<S3DestinationConfiguration>", // required
|
|
599
613
|
* },
|
|
614
|
+
* DatabaseSourceConfiguration: { // DatabaseSourceConfiguration
|
|
615
|
+
* Type: "MySQL" || "PostgreSQL", // required
|
|
616
|
+
* Endpoint: "STRING_VALUE", // required
|
|
617
|
+
* Port: Number("int"), // required
|
|
618
|
+
* SSLMode: "Disabled" || "Enabled",
|
|
619
|
+
* Databases: { // DatabaseList
|
|
620
|
+
* Include: [ // DatabaseIncludeOrExcludeList
|
|
621
|
+
* "STRING_VALUE",
|
|
622
|
+
* ],
|
|
623
|
+
* Exclude: [
|
|
624
|
+
* "STRING_VALUE",
|
|
625
|
+
* ],
|
|
626
|
+
* },
|
|
627
|
+
* Tables: { // DatabaseTableList
|
|
628
|
+
* Include: [ // DatabaseTableIncludeOrExcludeList
|
|
629
|
+
* "STRING_VALUE",
|
|
630
|
+
* ],
|
|
631
|
+
* Exclude: [
|
|
632
|
+
* "STRING_VALUE",
|
|
633
|
+
* ],
|
|
634
|
+
* },
|
|
635
|
+
* Columns: { // DatabaseColumnList
|
|
636
|
+
* Include: [ // DatabaseColumnIncludeOrExcludeList
|
|
637
|
+
* "STRING_VALUE",
|
|
638
|
+
* ],
|
|
639
|
+
* Exclude: [
|
|
640
|
+
* "STRING_VALUE",
|
|
641
|
+
* ],
|
|
642
|
+
* },
|
|
643
|
+
* SurrogateKeys: [ // DatabaseSurrogateKeyList
|
|
644
|
+
* "STRING_VALUE",
|
|
645
|
+
* ],
|
|
646
|
+
* SnapshotWatermarkTable: "STRING_VALUE", // required
|
|
647
|
+
* DatabaseSourceAuthenticationConfiguration: { // DatabaseSourceAuthenticationConfiguration
|
|
648
|
+
* SecretsManagerConfiguration: {
|
|
649
|
+
* SecretARN: "STRING_VALUE",
|
|
650
|
+
* RoleARN: "STRING_VALUE",
|
|
651
|
+
* Enabled: true || false, // required
|
|
652
|
+
* },
|
|
653
|
+
* },
|
|
654
|
+
* DatabaseSourceVPCConfiguration: { // DatabaseSourceVPCConfiguration
|
|
655
|
+
* VpcEndpointServiceName: "STRING_VALUE", // required
|
|
656
|
+
* },
|
|
657
|
+
* },
|
|
600
658
|
* };
|
|
601
659
|
* const command = new CreateDeliveryStreamCommand(input);
|
|
602
660
|
* const response = await client.send(command);
|
|
@@ -617,7 +675,7 @@ declare const CreateDeliveryStreamCommand_base: {
|
|
|
617
675
|
*
|
|
618
676
|
* @throws {@link InvalidKMSResourceException} (client fault)
|
|
619
677
|
* <p>Firehose throws this exception when an attempt to put records or to start
|
|
620
|
-
* or stop
|
|
678
|
+
* or stop Firehose stream encryption fails. This happens when the KMS service throws one of
|
|
621
679
|
* the following exception types: <code>AccessDeniedException</code>,
|
|
622
680
|
* <code>InvalidStateException</code>, <code>DisabledException</code>, or
|
|
623
681
|
* <code>NotFoundException</code>.</p>
|
|
@@ -27,17 +27,17 @@ declare const DeleteDeliveryStreamCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Deletes a
|
|
31
|
-
* <p>You can delete a
|
|
30
|
+
* <p>Deletes a Firehose stream and its data.</p>
|
|
31
|
+
* <p>You can delete a Firehose stream only if it is in one of the following states:
|
|
32
32
|
* <code>ACTIVE</code>, <code>DELETING</code>, <code>CREATING_FAILED</code>, or
|
|
33
|
-
* <code>DELETING_FAILED</code>. You can't delete a
|
|
34
|
-
* <code>CREATING</code> state. To check the state of a
|
|
35
|
-
* <p>DeleteDeliveryStream is an asynchronous API. When an API request to DeleteDeliveryStream succeeds, the
|
|
36
|
-
* <code>DELETING</code> state.While the
|
|
33
|
+
* <code>DELETING_FAILED</code>. You can't delete a Firehose stream that is in the
|
|
34
|
+
* <code>CREATING</code> state. To check the state of a Firehose stream, use <a>DescribeDeliveryStream</a>. </p>
|
|
35
|
+
* <p>DeleteDeliveryStream is an asynchronous API. When an API request to DeleteDeliveryStream succeeds, the Firehose stream is marked for deletion, and it goes into the
|
|
36
|
+
* <code>DELETING</code> state.While the Firehose stream is in the <code>DELETING</code> state, the service might
|
|
37
37
|
* continue to accept records, but it doesn't make any guarantees with respect to delivering
|
|
38
38
|
* the data. Therefore, as a best practice, first stop any applications that are sending
|
|
39
|
-
* records before you delete a
|
|
40
|
-
* <p>Removal of a
|
|
39
|
+
* records before you delete a Firehose stream.</p>
|
|
40
|
+
* <p>Removal of a Firehose stream that is in the <code>DELETING</code> state is a low priority operation for the service. A stream may remain in the
|
|
41
41
|
* <code>DELETING</code> state for several minutes. Therefore, as a best practice, applications should not wait for streams in the <code>DELETING</code> state
|
|
42
42
|
* to be removed. </p>
|
|
43
43
|
* @example
|
|
@@ -27,10 +27,10 @@ declare const DescribeDeliveryStreamCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Describes the specified
|
|
31
|
-
*
|
|
32
|
-
*
|
|
33
|
-
* <p>If the status of a
|
|
30
|
+
* <p>Describes the specified Firehose stream and its status. For example, after your
|
|
31
|
+
* Firehose stream is created, call <code>DescribeDeliveryStream</code> to see whether the
|
|
32
|
+
* Firehose stream is <code>ACTIVE</code> and therefore ready for data to be sent to it. </p>
|
|
33
|
+
* <p>If the status of a Firehose stream is <code>CREATING_FAILED</code>, this status
|
|
34
34
|
* doesn't change, and you can't invoke <a>CreateDeliveryStream</a> again on it.
|
|
35
35
|
* However, you can invoke the <a>DeleteDeliveryStream</a> operation to delete it.
|
|
36
36
|
* If the status is <code>DELETING_FAILED</code>, you can force deletion by invoking <a>DeleteDeliveryStream</a> again but with <a>DeleteDeliveryStreamInput$AllowForceDelete</a> set to true.</p>
|
|
@@ -53,7 +53,7 @@ declare const DescribeDeliveryStreamCommand_base: {
|
|
|
53
53
|
* // DeliveryStreamARN: "STRING_VALUE", // required
|
|
54
54
|
* // DeliveryStreamStatus: "CREATING" || "CREATING_FAILED" || "DELETING" || "DELETING_FAILED" || "ACTIVE", // required
|
|
55
55
|
* // FailureDescription: { // FailureDescription
|
|
56
|
-
* // Type: "RETIRE_KMS_GRANT_FAILED" || "CREATE_KMS_GRANT_FAILED" || "KMS_ACCESS_DENIED" || "DISABLED_KMS_KEY" || "INVALID_KMS_KEY" || "KMS_KEY_NOT_FOUND" || "KMS_OPT_IN_REQUIRED" || "CREATE_ENI_FAILED" || "DELETE_ENI_FAILED" || "SUBNET_NOT_FOUND" || "SECURITY_GROUP_NOT_FOUND" || "ENI_ACCESS_DENIED" || "SUBNET_ACCESS_DENIED" || "SECURITY_GROUP_ACCESS_DENIED" || "UNKNOWN_ERROR", // required
|
|
56
|
+
* // Type: "VPC_ENDPOINT_SERVICE_NAME_NOT_FOUND" || "VPC_INTERFACE_ENDPOINT_SERVICE_ACCESS_DENIED" || "RETIRE_KMS_GRANT_FAILED" || "CREATE_KMS_GRANT_FAILED" || "KMS_ACCESS_DENIED" || "DISABLED_KMS_KEY" || "INVALID_KMS_KEY" || "KMS_KEY_NOT_FOUND" || "KMS_OPT_IN_REQUIRED" || "CREATE_ENI_FAILED" || "DELETE_ENI_FAILED" || "SUBNET_NOT_FOUND" || "SECURITY_GROUP_NOT_FOUND" || "ENI_ACCESS_DENIED" || "SUBNET_ACCESS_DENIED" || "SECURITY_GROUP_ACCESS_DENIED" || "UNKNOWN_ERROR", // required
|
|
57
57
|
* // Details: "STRING_VALUE", // required
|
|
58
58
|
* // },
|
|
59
59
|
* // DeliveryStreamEncryptionConfiguration: { // DeliveryStreamEncryptionConfiguration
|
|
@@ -61,11 +61,11 @@ declare const DescribeDeliveryStreamCommand_base: {
|
|
|
61
61
|
* // KeyType: "AWS_OWNED_CMK" || "CUSTOMER_MANAGED_CMK",
|
|
62
62
|
* // Status: "ENABLED" || "ENABLING" || "ENABLING_FAILED" || "DISABLED" || "DISABLING" || "DISABLING_FAILED",
|
|
63
63
|
* // FailureDescription: {
|
|
64
|
-
* // Type: "RETIRE_KMS_GRANT_FAILED" || "CREATE_KMS_GRANT_FAILED" || "KMS_ACCESS_DENIED" || "DISABLED_KMS_KEY" || "INVALID_KMS_KEY" || "KMS_KEY_NOT_FOUND" || "KMS_OPT_IN_REQUIRED" || "CREATE_ENI_FAILED" || "DELETE_ENI_FAILED" || "SUBNET_NOT_FOUND" || "SECURITY_GROUP_NOT_FOUND" || "ENI_ACCESS_DENIED" || "SUBNET_ACCESS_DENIED" || "SECURITY_GROUP_ACCESS_DENIED" || "UNKNOWN_ERROR", // required
|
|
64
|
+
* // Type: "VPC_ENDPOINT_SERVICE_NAME_NOT_FOUND" || "VPC_INTERFACE_ENDPOINT_SERVICE_ACCESS_DENIED" || "RETIRE_KMS_GRANT_FAILED" || "CREATE_KMS_GRANT_FAILED" || "KMS_ACCESS_DENIED" || "DISABLED_KMS_KEY" || "INVALID_KMS_KEY" || "KMS_KEY_NOT_FOUND" || "KMS_OPT_IN_REQUIRED" || "CREATE_ENI_FAILED" || "DELETE_ENI_FAILED" || "SUBNET_NOT_FOUND" || "SECURITY_GROUP_NOT_FOUND" || "ENI_ACCESS_DENIED" || "SUBNET_ACCESS_DENIED" || "SECURITY_GROUP_ACCESS_DENIED" || "UNKNOWN_ERROR", // required
|
|
65
65
|
* // Details: "STRING_VALUE", // required
|
|
66
66
|
* // },
|
|
67
67
|
* // },
|
|
68
|
-
* // DeliveryStreamType: "DirectPut" || "KinesisStreamAsSource" || "MSKAsSource", // required
|
|
68
|
+
* // DeliveryStreamType: "DirectPut" || "KinesisStreamAsSource" || "MSKAsSource" || "DatabaseAsSource", // required
|
|
69
69
|
* // VersionId: "STRING_VALUE", // required
|
|
70
70
|
* // CreateTimestamp: new Date("TIMESTAMP"),
|
|
71
71
|
* // LastUpdateTimestamp: new Date("TIMESTAMP"),
|
|
@@ -85,6 +85,60 @@ declare const DescribeDeliveryStreamCommand_base: {
|
|
|
85
85
|
* // DeliveryStartTimestamp: new Date("TIMESTAMP"),
|
|
86
86
|
* // ReadFromTimestamp: new Date("TIMESTAMP"),
|
|
87
87
|
* // },
|
|
88
|
+
* // DatabaseSourceDescription: { // DatabaseSourceDescription
|
|
89
|
+
* // Type: "MySQL" || "PostgreSQL",
|
|
90
|
+
* // Endpoint: "STRING_VALUE",
|
|
91
|
+
* // Port: Number("int"),
|
|
92
|
+
* // SSLMode: "Disabled" || "Enabled",
|
|
93
|
+
* // Databases: { // DatabaseList
|
|
94
|
+
* // Include: [ // DatabaseIncludeOrExcludeList
|
|
95
|
+
* // "STRING_VALUE",
|
|
96
|
+
* // ],
|
|
97
|
+
* // Exclude: [
|
|
98
|
+
* // "STRING_VALUE",
|
|
99
|
+
* // ],
|
|
100
|
+
* // },
|
|
101
|
+
* // Tables: { // DatabaseTableList
|
|
102
|
+
* // Include: [ // DatabaseTableIncludeOrExcludeList
|
|
103
|
+
* // "STRING_VALUE",
|
|
104
|
+
* // ],
|
|
105
|
+
* // Exclude: [
|
|
106
|
+
* // "STRING_VALUE",
|
|
107
|
+
* // ],
|
|
108
|
+
* // },
|
|
109
|
+
* // Columns: { // DatabaseColumnList
|
|
110
|
+
* // Include: [ // DatabaseColumnIncludeOrExcludeList
|
|
111
|
+
* // "STRING_VALUE",
|
|
112
|
+
* // ],
|
|
113
|
+
* // Exclude: [
|
|
114
|
+
* // "STRING_VALUE",
|
|
115
|
+
* // ],
|
|
116
|
+
* // },
|
|
117
|
+
* // SurrogateKeys: [
|
|
118
|
+
* // "STRING_VALUE",
|
|
119
|
+
* // ],
|
|
120
|
+
* // SnapshotWatermarkTable: "STRING_VALUE",
|
|
121
|
+
* // SnapshotInfo: [ // DatabaseSnapshotInfoList
|
|
122
|
+
* // { // DatabaseSnapshotInfo
|
|
123
|
+
* // Id: "STRING_VALUE", // required
|
|
124
|
+
* // Table: "STRING_VALUE", // required
|
|
125
|
+
* // RequestTimestamp: new Date("TIMESTAMP"), // required
|
|
126
|
+
* // RequestedBy: "USER" || "FIREHOSE", // required
|
|
127
|
+
* // Status: "IN_PROGRESS" || "COMPLETE" || "SUSPENDED", // required
|
|
128
|
+
* // FailureDescription: "<FailureDescription>",
|
|
129
|
+
* // },
|
|
130
|
+
* // ],
|
|
131
|
+
* // DatabaseSourceAuthenticationConfiguration: { // DatabaseSourceAuthenticationConfiguration
|
|
132
|
+
* // SecretsManagerConfiguration: { // SecretsManagerConfiguration
|
|
133
|
+
* // SecretARN: "STRING_VALUE",
|
|
134
|
+
* // RoleARN: "STRING_VALUE",
|
|
135
|
+
* // Enabled: true || false, // required
|
|
136
|
+
* // },
|
|
137
|
+
* // },
|
|
138
|
+
* // DatabaseSourceVPCConfiguration: { // DatabaseSourceVPCConfiguration
|
|
139
|
+
* // VpcEndpointServiceName: "STRING_VALUE", // required
|
|
140
|
+
* // },
|
|
141
|
+
* // },
|
|
88
142
|
* // },
|
|
89
143
|
* // Destinations: [ // DestinationDescriptionList // required
|
|
90
144
|
* // { // DestinationDescription
|
|
@@ -303,7 +357,7 @@ declare const DescribeDeliveryStreamCommand_base: {
|
|
|
303
357
|
* // },
|
|
304
358
|
* // },
|
|
305
359
|
* // CloudWatchLoggingOptions: "<CloudWatchLoggingOptions>",
|
|
306
|
-
* // SecretsManagerConfiguration: {
|
|
360
|
+
* // SecretsManagerConfiguration: {
|
|
307
361
|
* // SecretARN: "STRING_VALUE",
|
|
308
362
|
* // RoleARN: "STRING_VALUE",
|
|
309
363
|
* // Enabled: true || false, // required
|
|
@@ -543,9 +597,22 @@ declare const DescribeDeliveryStreamCommand_base: {
|
|
|
543
597
|
* // UniqueKeys: [
|
|
544
598
|
* // "STRING_VALUE",
|
|
545
599
|
* // ],
|
|
600
|
+
* // PartitionSpec: { // PartitionSpec
|
|
601
|
+
* // Identity: [ // PartitionFields
|
|
602
|
+
* // { // PartitionField
|
|
603
|
+
* // SourceName: "STRING_VALUE", // required
|
|
604
|
+
* // },
|
|
605
|
+
* // ],
|
|
606
|
+
* // },
|
|
546
607
|
* // S3ErrorOutputPrefix: "STRING_VALUE",
|
|
547
608
|
* // },
|
|
548
609
|
* // ],
|
|
610
|
+
* // SchemaEvolutionConfiguration: { // SchemaEvolutionConfiguration
|
|
611
|
+
* // Enabled: true || false, // required
|
|
612
|
+
* // },
|
|
613
|
+
* // TableCreationConfiguration: { // TableCreationConfiguration
|
|
614
|
+
* // Enabled: true || false, // required
|
|
615
|
+
* // },
|
|
549
616
|
* // BufferingHints: "<BufferingHints>",
|
|
550
617
|
* // CloudWatchLoggingOptions: "<CloudWatchLoggingOptions>",
|
|
551
618
|
* // ProcessingConfiguration: "<ProcessingConfiguration>",
|
|
@@ -556,6 +623,7 @@ declare const DescribeDeliveryStreamCommand_base: {
|
|
|
556
623
|
* // RoleARN: "STRING_VALUE",
|
|
557
624
|
* // CatalogConfiguration: { // CatalogConfiguration
|
|
558
625
|
* // CatalogARN: "STRING_VALUE",
|
|
626
|
+
* // WarehouseLocation: "STRING_VALUE",
|
|
559
627
|
* // },
|
|
560
628
|
* // S3DestinationDescription: "<S3DestinationDescription>",
|
|
561
629
|
* // },
|
|
@@ -27,14 +27,14 @@ declare const ListDeliveryStreamsCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Lists your
|
|
31
|
-
* <p>The number of
|
|
32
|
-
* <code>ListDeliveryStreams</code>. You can limit the number of
|
|
30
|
+
* <p>Lists your Firehose streams in alphabetical order of their names.</p>
|
|
31
|
+
* <p>The number of Firehose streams might be too large to return using a single call to
|
|
32
|
+
* <code>ListDeliveryStreams</code>. You can limit the number of Firehose streams returned,
|
|
33
33
|
* using the <code>Limit</code> parameter. To determine whether there are more delivery
|
|
34
34
|
* streams to list, check the value of <code>HasMoreDeliveryStreams</code> in the output. If
|
|
35
|
-
* there are more
|
|
35
|
+
* there are more Firehose streams to list, you can request them by calling this operation
|
|
36
36
|
* again and setting the <code>ExclusiveStartDeliveryStreamName</code> parameter to the name
|
|
37
|
-
* of the last
|
|
37
|
+
* of the last Firehose stream returned in the last call.</p>
|
|
38
38
|
* @example
|
|
39
39
|
* Use a bare-bones client and the command you need to make an API call.
|
|
40
40
|
* ```javascript
|
|
@@ -43,7 +43,7 @@ declare const ListDeliveryStreamsCommand_base: {
|
|
|
43
43
|
* const client = new FirehoseClient(config);
|
|
44
44
|
* const input = { // ListDeliveryStreamsInput
|
|
45
45
|
* Limit: Number("int"),
|
|
46
|
-
* DeliveryStreamType: "DirectPut" || "KinesisStreamAsSource" || "MSKAsSource",
|
|
46
|
+
* DeliveryStreamType: "DirectPut" || "KinesisStreamAsSource" || "MSKAsSource" || "DatabaseAsSource",
|
|
47
47
|
* ExclusiveStartDeliveryStreamName: "STRING_VALUE",
|
|
48
48
|
* };
|
|
49
49
|
* const command = new ListDeliveryStreamsCommand(input);
|