Skip to content

Commit

Permalink
feat(client-firehose): For AppendOnly streams, Firehose will automati…
Browse files Browse the repository at this point in the history
…cally scale to match your throughput.
  • Loading branch information
awstools committed Jan 28, 2025
1 parent e6f9df1 commit 446f685
Show file tree
Hide file tree
Showing 6 changed files with 433 additions and 193 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,9 @@ export interface CreateDeliveryStreamCommandOutput extends CreateDeliveryStreamO
* const input = { // CreateDeliveryStreamInput
* DeliveryStreamName: "STRING_VALUE", // required
* DeliveryStreamType: "DirectPut" || "KinesisStreamAsSource" || "MSKAsSource" || "DatabaseAsSource",
* DirectPutSourceConfiguration: { // DirectPutSourceConfiguration
* ThroughputHintInMBs: Number("int"), // required
* },
* KinesisStreamSourceConfiguration: { // KinesisStreamSourceConfiguration
* KinesisStreamARN: "STRING_VALUE", // required
* RoleARN: "STRING_VALUE", // required
Expand Down Expand Up @@ -610,6 +613,7 @@ export interface CreateDeliveryStreamCommandOutput extends CreateDeliveryStreamO
* DurationInSeconds: Number("int"),
* },
* RoleARN: "STRING_VALUE", // required
* AppendOnly: true || false,
* CatalogConfiguration: { // CatalogConfiguration
* CatalogARN: "STRING_VALUE",
* WarehouseLocation: "STRING_VALUE",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,9 @@ export interface DescribeDeliveryStreamCommandOutput extends DescribeDeliveryStr
* // CreateTimestamp: new Date("TIMESTAMP"),
* // LastUpdateTimestamp: new Date("TIMESTAMP"),
* // Source: { // SourceDescription
* // DirectPutSourceDescription: { // DirectPutSourceDescription
* // ThroughputHintInMBs: Number("int"),
* // },
* // KinesisStreamSourceDescription: { // KinesisStreamSourceDescription
* // KinesisStreamARN: "STRING_VALUE",
* // RoleARN: "STRING_VALUE",
Expand Down Expand Up @@ -626,6 +629,7 @@ export interface DescribeDeliveryStreamCommandOutput extends DescribeDeliveryStr
* // DurationInSeconds: Number("int"),
* // },
* // RoleARN: "STRING_VALUE",
* // AppendOnly: true || false,
* // CatalogConfiguration: { // CatalogConfiguration
* // CatalogARN: "STRING_VALUE",
* // WarehouseLocation: "STRING_VALUE",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -511,6 +511,7 @@ export interface UpdateDestinationCommandOutput extends UpdateDestinationOutput,
* DurationInSeconds: Number("int"),
* },
* RoleARN: "STRING_VALUE",
* AppendOnly: true || false,
* CatalogConfiguration: { // CatalogConfiguration
* CatalogARN: "STRING_VALUE",
* WarehouseLocation: "STRING_VALUE",
Expand Down
Loading

0 comments on commit 446f685

Please sign in to comment.