@aws-sdk/client-firehose 3.533.0 → 3.535.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.
Files changed (29) hide show
  1. package/dist-types/Firehose.d.ts +2 -1
  2. package/dist-types/FirehoseClient.d.ts +1 -1
  3. package/dist-types/commands/CreateDeliveryStreamCommand.d.ts +2 -1
  4. package/dist-types/commands/DeleteDeliveryStreamCommand.d.ts +2 -1
  5. package/dist-types/commands/DescribeDeliveryStreamCommand.d.ts +2 -1
  6. package/dist-types/commands/ListDeliveryStreamsCommand.d.ts +2 -1
  7. package/dist-types/commands/ListTagsForDeliveryStreamCommand.d.ts +2 -1
  8. package/dist-types/commands/PutRecordBatchCommand.d.ts +2 -1
  9. package/dist-types/commands/PutRecordCommand.d.ts +2 -1
  10. package/dist-types/commands/StartDeliveryStreamEncryptionCommand.d.ts +2 -1
  11. package/dist-types/commands/StopDeliveryStreamEncryptionCommand.d.ts +2 -1
  12. package/dist-types/commands/TagDeliveryStreamCommand.d.ts +2 -1
  13. package/dist-types/commands/UntagDeliveryStreamCommand.d.ts +2 -1
  14. package/dist-types/commands/UpdateDestinationCommand.d.ts +2 -1
  15. package/dist-types/models/models_0.d.ts +612 -612
  16. package/dist-types/ts3.4/Firehose.d.ts +1 -0
  17. package/dist-types/ts3.4/commands/CreateDeliveryStreamCommand.d.ts +9 -0
  18. package/dist-types/ts3.4/commands/DeleteDeliveryStreamCommand.d.ts +9 -0
  19. package/dist-types/ts3.4/commands/DescribeDeliveryStreamCommand.d.ts +9 -0
  20. package/dist-types/ts3.4/commands/ListDeliveryStreamsCommand.d.ts +9 -0
  21. package/dist-types/ts3.4/commands/ListTagsForDeliveryStreamCommand.d.ts +9 -0
  22. package/dist-types/ts3.4/commands/PutRecordBatchCommand.d.ts +9 -0
  23. package/dist-types/ts3.4/commands/PutRecordCommand.d.ts +9 -0
  24. package/dist-types/ts3.4/commands/StartDeliveryStreamEncryptionCommand.d.ts +9 -0
  25. package/dist-types/ts3.4/commands/StopDeliveryStreamEncryptionCommand.d.ts +9 -0
  26. package/dist-types/ts3.4/commands/TagDeliveryStreamCommand.d.ts +9 -0
  27. package/dist-types/ts3.4/commands/UntagDeliveryStreamCommand.d.ts +9 -0
  28. package/dist-types/ts3.4/commands/UpdateDestinationCommand.d.ts +9 -0
  29. package/package.json +40 -40
@@ -34,6 +34,7 @@ export interface Firehose {
34
34
  /**
35
35
  * @see {@link ListDeliveryStreamsCommand}
36
36
  */
37
+ listDeliveryStreams(): Promise<ListDeliveryStreamsCommandOutput>;
37
38
  listDeliveryStreams(args: ListDeliveryStreamsCommandInput, options?: __HttpHandlerOptions): Promise<ListDeliveryStreamsCommandOutput>;
38
39
  listDeliveryStreams(args: ListDeliveryStreamsCommandInput, cb: (err: any, data?: ListDeliveryStreamsCommandOutput) => void): void;
39
40
  listDeliveryStreams(args: ListDeliveryStreamsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDeliveryStreamsCommandOutput) => void): void;
@@ -87,12 +88,12 @@ export interface Firehose {
87
88
  updateDestination(args: UpdateDestinationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateDestinationCommandOutput) => void): void;
88
89
  }
89
90
  /**
90
- * @public
91
91
  * <fullname>Amazon Data Firehose</fullname>
92
92
  * <p>Amazon Data Firehose is a fully managed service that delivers real-time
93
93
  * streaming data to destinations such as Amazon Simple Storage Service (Amazon S3), Amazon
94
94
  * OpenSearch Service, Amazon Redshift, Splunk, and various other supportd
95
95
  * destinations.</p>
96
+ * @public
96
97
  */
97
98
  export declare class Firehose extends FirehoseClient implements Firehose {
98
99
  }
@@ -163,12 +163,12 @@ export type FirehoseClientResolvedConfigType = __SmithyResolvedConfiguration<__H
163
163
  export interface FirehoseClientResolvedConfig extends FirehoseClientResolvedConfigType {
164
164
  }
165
165
  /**
166
- * @public
167
166
  * <fullname>Amazon Data Firehose</fullname>
168
167
  * <p>Amazon Data Firehose is a fully managed service that delivers real-time
169
168
  * streaming data to destinations such as Amazon Simple Storage Service (Amazon S3), Amazon
170
169
  * OpenSearch Service, Amazon Redshift, Splunk, and various other supportd
171
170
  * destinations.</p>
171
+ * @public
172
172
  */
173
173
  export declare class FirehoseClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, FirehoseClientResolvedConfig> {
174
174
  /**
@@ -22,10 +22,10 @@ export interface CreateDeliveryStreamCommandOutput extends CreateDeliveryStreamO
22
22
  }
23
23
  declare const CreateDeliveryStreamCommand_base: {
24
24
  new (input: CreateDeliveryStreamCommandInput): import("@smithy/smithy-client").CommandImpl<CreateDeliveryStreamCommandInput, CreateDeliveryStreamCommandOutput, FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: CreateDeliveryStreamCommandInput): import("@smithy/smithy-client").CommandImpl<CreateDeliveryStreamCommandInput, CreateDeliveryStreamCommandOutput, FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Creates a Firehose delivery stream.</p>
30
30
  * <p>By default, you can create up to 50 delivery streams per Amazon Web Services
31
31
  * Region.</p>
@@ -581,6 +581,7 @@ declare const CreateDeliveryStreamCommand_base: {
581
581
  * @throws {@link FirehoseServiceException}
582
582
  * <p>Base exception class for all service exceptions from Firehose service.</p>
583
583
  *
584
+ * @public
584
585
  */
585
586
  export declare class CreateDeliveryStreamCommand extends CreateDeliveryStreamCommand_base {
586
587
  }
@@ -22,10 +22,10 @@ export interface DeleteDeliveryStreamCommandOutput extends DeleteDeliveryStreamO
22
22
  }
23
23
  declare const DeleteDeliveryStreamCommand_base: {
24
24
  new (input: DeleteDeliveryStreamCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteDeliveryStreamCommandInput, DeleteDeliveryStreamCommandOutput, FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: DeleteDeliveryStreamCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteDeliveryStreamCommandInput, DeleteDeliveryStreamCommandOutput, FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Deletes a delivery stream and its data.</p>
30
30
  * <p>You can delete a delivery stream only if it is in one of the following states:
31
31
  * <code>ACTIVE</code>, <code>DELETING</code>, <code>CREATING_FAILED</code>, or
@@ -70,6 +70,7 @@ declare const DeleteDeliveryStreamCommand_base: {
70
70
  * @throws {@link FirehoseServiceException}
71
71
  * <p>Base exception class for all service exceptions from Firehose service.</p>
72
72
  *
73
+ * @public
73
74
  */
74
75
  export declare class DeleteDeliveryStreamCommand extends DeleteDeliveryStreamCommand_base {
75
76
  }
@@ -22,10 +22,10 @@ export interface DescribeDeliveryStreamCommandOutput extends DescribeDeliveryStr
22
22
  }
23
23
  declare const DescribeDeliveryStreamCommand_base: {
24
24
  new (input: DescribeDeliveryStreamCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeDeliveryStreamCommandInput, DescribeDeliveryStreamCommandOutput, FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: DescribeDeliveryStreamCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeDeliveryStreamCommandInput, DescribeDeliveryStreamCommandOutput, FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Describes the specified delivery stream and its status. For example, after your
30
30
  * delivery stream is created, call <code>DescribeDeliveryStream</code> to see whether the
31
31
  * delivery stream is <code>ACTIVE</code> and therefore ready for data to be sent to it. </p>
@@ -529,6 +529,7 @@ declare const DescribeDeliveryStreamCommand_base: {
529
529
  * @throws {@link FirehoseServiceException}
530
530
  * <p>Base exception class for all service exceptions from Firehose service.</p>
531
531
  *
532
+ * @public
532
533
  */
533
534
  export declare class DescribeDeliveryStreamCommand extends DescribeDeliveryStreamCommand_base {
534
535
  }
@@ -22,10 +22,10 @@ export interface ListDeliveryStreamsCommandOutput extends ListDeliveryStreamsOut
22
22
  }
23
23
  declare const ListDeliveryStreamsCommand_base: {
24
24
  new (input: ListDeliveryStreamsCommandInput): import("@smithy/smithy-client").CommandImpl<ListDeliveryStreamsCommandInput, ListDeliveryStreamsCommandOutput, FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (...[input]: [] | [ListDeliveryStreamsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListDeliveryStreamsCommandInput, ListDeliveryStreamsCommandOutput, FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Lists your delivery streams in alphabetical order of their names.</p>
30
30
  * <p>The number of delivery streams might be too large to return using a single call to
31
31
  * <code>ListDeliveryStreams</code>. You can limit the number of delivery streams returned,
@@ -65,6 +65,7 @@ declare const ListDeliveryStreamsCommand_base: {
65
65
  * @throws {@link FirehoseServiceException}
66
66
  * <p>Base exception class for all service exceptions from Firehose service.</p>
67
67
  *
68
+ * @public
68
69
  */
69
70
  export declare class ListDeliveryStreamsCommand extends ListDeliveryStreamsCommand_base {
70
71
  }
@@ -22,10 +22,10 @@ export interface ListTagsForDeliveryStreamCommandOutput extends ListTagsForDeliv
22
22
  }
23
23
  declare const ListTagsForDeliveryStreamCommand_base: {
24
24
  new (input: ListTagsForDeliveryStreamCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForDeliveryStreamCommandInput, ListTagsForDeliveryStreamCommandOutput, FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: ListTagsForDeliveryStreamCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForDeliveryStreamCommandInput, ListTagsForDeliveryStreamCommandOutput, FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Lists the tags for the specified delivery stream. This operation has a limit of five
30
30
  * transactions per second per account. </p>
31
31
  * @example
@@ -71,6 +71,7 @@ declare const ListTagsForDeliveryStreamCommand_base: {
71
71
  * @throws {@link FirehoseServiceException}
72
72
  * <p>Base exception class for all service exceptions from Firehose service.</p>
73
73
  *
74
+ * @public
74
75
  */
75
76
  export declare class ListTagsForDeliveryStreamCommand extends ListTagsForDeliveryStreamCommand_base {
76
77
  }
@@ -22,10 +22,10 @@ export interface PutRecordBatchCommandOutput extends PutRecordBatchOutput, __Met
22
22
  }
23
23
  declare const PutRecordBatchCommand_base: {
24
24
  new (input: PutRecordBatchCommandInput): import("@smithy/smithy-client").CommandImpl<PutRecordBatchCommandInput, PutRecordBatchCommandOutput, FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: PutRecordBatchCommandInput): import("@smithy/smithy-client").CommandImpl<PutRecordBatchCommandInput, PutRecordBatchCommandOutput, FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Writes multiple data records into a delivery stream in a single call, which can
30
30
  * achieve higher throughput per producer than when writing single records. To write single
31
31
  * data records into a delivery stream, use <a>PutRecord</a>. Applications using
@@ -141,6 +141,7 @@ declare const PutRecordBatchCommand_base: {
141
141
  * @throws {@link FirehoseServiceException}
142
142
  * <p>Base exception class for all service exceptions from Firehose service.</p>
143
143
  *
144
+ * @public
144
145
  */
145
146
  export declare class PutRecordBatchCommand extends PutRecordBatchCommand_base {
146
147
  }
@@ -22,10 +22,10 @@ export interface PutRecordCommandOutput extends PutRecordOutput, __MetadataBeare
22
22
  }
23
23
  declare const PutRecordCommand_base: {
24
24
  new (input: PutRecordCommandInput): import("@smithy/smithy-client").CommandImpl<PutRecordCommandInput, PutRecordCommandOutput, FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: PutRecordCommandInput): import("@smithy/smithy-client").CommandImpl<PutRecordCommandInput, PutRecordCommandOutput, FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Writes a single data record into an Amazon Firehose delivery stream. To
30
30
  * write multiple data records into a delivery stream, use <a>PutRecordBatch</a>.
31
31
  * Applications using these operations are referred to as producers.</p>
@@ -114,6 +114,7 @@ declare const PutRecordCommand_base: {
114
114
  * @throws {@link FirehoseServiceException}
115
115
  * <p>Base exception class for all service exceptions from Firehose service.</p>
116
116
  *
117
+ * @public
117
118
  */
118
119
  export declare class PutRecordCommand extends PutRecordCommand_base {
119
120
  }
@@ -22,10 +22,10 @@ export interface StartDeliveryStreamEncryptionCommandOutput extends StartDeliver
22
22
  }
23
23
  declare const StartDeliveryStreamEncryptionCommand_base: {
24
24
  new (input: StartDeliveryStreamEncryptionCommandInput): import("@smithy/smithy-client").CommandImpl<StartDeliveryStreamEncryptionCommandInput, StartDeliveryStreamEncryptionCommandOutput, FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: StartDeliveryStreamEncryptionCommandInput): import("@smithy/smithy-client").CommandImpl<StartDeliveryStreamEncryptionCommandInput, StartDeliveryStreamEncryptionCommandOutput, FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Enables server-side encryption (SSE) for the delivery stream. </p>
30
30
  * <p>This operation is asynchronous. It returns immediately. When you invoke it, Firehose first sets the encryption status of the stream to <code>ENABLING</code>, and then
31
31
  * to <code>ENABLED</code>. The encryption status of a delivery stream is the
@@ -109,6 +109,7 @@ declare const StartDeliveryStreamEncryptionCommand_base: {
109
109
  * @throws {@link FirehoseServiceException}
110
110
  * <p>Base exception class for all service exceptions from Firehose service.</p>
111
111
  *
112
+ * @public
112
113
  */
113
114
  export declare class StartDeliveryStreamEncryptionCommand extends StartDeliveryStreamEncryptionCommand_base {
114
115
  }
@@ -22,10 +22,10 @@ export interface StopDeliveryStreamEncryptionCommandOutput extends StopDeliveryS
22
22
  }
23
23
  declare const StopDeliveryStreamEncryptionCommand_base: {
24
24
  new (input: StopDeliveryStreamEncryptionCommandInput): import("@smithy/smithy-client").CommandImpl<StopDeliveryStreamEncryptionCommandInput, StopDeliveryStreamEncryptionCommandOutput, FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: StopDeliveryStreamEncryptionCommandInput): import("@smithy/smithy-client").CommandImpl<StopDeliveryStreamEncryptionCommandInput, StopDeliveryStreamEncryptionCommandOutput, FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Disables server-side encryption (SSE) for the delivery stream. </p>
30
30
  * <p>This operation is asynchronous. It returns immediately. When you invoke it, Firehose first sets the encryption status of the stream to <code>DISABLING</code>, and then
31
31
  * to <code>DISABLED</code>. You can continue to read and write data to your stream while its
@@ -81,6 +81,7 @@ declare const StopDeliveryStreamEncryptionCommand_base: {
81
81
  * @throws {@link FirehoseServiceException}
82
82
  * <p>Base exception class for all service exceptions from Firehose service.</p>
83
83
  *
84
+ * @public
84
85
  */
85
86
  export declare class StopDeliveryStreamEncryptionCommand extends StopDeliveryStreamEncryptionCommand_base {
86
87
  }
@@ -22,10 +22,10 @@ export interface TagDeliveryStreamCommandOutput extends TagDeliveryStreamOutput,
22
22
  }
23
23
  declare const TagDeliveryStreamCommand_base: {
24
24
  new (input: TagDeliveryStreamCommandInput): import("@smithy/smithy-client").CommandImpl<TagDeliveryStreamCommandInput, TagDeliveryStreamCommandOutput, FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: TagDeliveryStreamCommandInput): import("@smithy/smithy-client").CommandImpl<TagDeliveryStreamCommandInput, TagDeliveryStreamCommandOutput, FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Adds or updates tags for the specified delivery stream. A tag is a key-value pair
30
30
  * that you can define and assign to Amazon Web Services resources. If you specify a tag that
31
31
  * already exists, the tag value is replaced with the value that you specify in the request.
@@ -78,6 +78,7 @@ declare const TagDeliveryStreamCommand_base: {
78
78
  * @throws {@link FirehoseServiceException}
79
79
  * <p>Base exception class for all service exceptions from Firehose service.</p>
80
80
  *
81
+ * @public
81
82
  */
82
83
  export declare class TagDeliveryStreamCommand extends TagDeliveryStreamCommand_base {
83
84
  }
@@ -22,10 +22,10 @@ export interface UntagDeliveryStreamCommandOutput extends UntagDeliveryStreamOut
22
22
  }
23
23
  declare const UntagDeliveryStreamCommand_base: {
24
24
  new (input: UntagDeliveryStreamCommandInput): import("@smithy/smithy-client").CommandImpl<UntagDeliveryStreamCommandInput, UntagDeliveryStreamCommandOutput, FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: UntagDeliveryStreamCommandInput): import("@smithy/smithy-client").CommandImpl<UntagDeliveryStreamCommandInput, UntagDeliveryStreamCommandOutput, FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Removes tags from the specified delivery stream. Removed tags are deleted, and you
30
30
  * can't recover them after this operation successfully completes.</p>
31
31
  * <p>If you specify a tag that doesn't exist, the operation ignores it.</p>
@@ -69,6 +69,7 @@ declare const UntagDeliveryStreamCommand_base: {
69
69
  * @throws {@link FirehoseServiceException}
70
70
  * <p>Base exception class for all service exceptions from Firehose service.</p>
71
71
  *
72
+ * @public
72
73
  */
73
74
  export declare class UntagDeliveryStreamCommand extends UntagDeliveryStreamCommand_base {
74
75
  }
@@ -22,10 +22,10 @@ export interface UpdateDestinationCommandOutput extends UpdateDestinationOutput,
22
22
  }
23
23
  declare const UpdateDestinationCommand_base: {
24
24
  new (input: UpdateDestinationCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateDestinationCommandInput, UpdateDestinationCommandOutput, FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: UpdateDestinationCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateDestinationCommandInput, UpdateDestinationCommandOutput, FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Updates the specified destination of the specified delivery stream.</p>
30
30
  * <p>Use this operation to change the destination type (for example, to replace the Amazon
31
31
  * S3 destination with Amazon Redshift) or change the parameters associated with a destination
@@ -478,6 +478,7 @@ declare const UpdateDestinationCommand_base: {
478
478
  * @throws {@link FirehoseServiceException}
479
479
  * <p>Base exception class for all service exceptions from Firehose service.</p>
480
480
  *
481
+ * @public
481
482
  */
482
483
  export declare class UpdateDestinationCommand extends UpdateDestinationCommand_base {
483
484
  }