@aws-sdk/client-firehose 3.169.0 → 3.171.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 (27) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/Firehose.d.ts +208 -65
  3. package/dist-types/ts3.4/FirehoseClient.d.ts +176 -85
  4. package/dist-types/ts3.4/commands/CreateDeliveryStreamCommand.d.ts +39 -17
  5. package/dist-types/ts3.4/commands/DeleteDeliveryStreamCommand.d.ts +39 -17
  6. package/dist-types/ts3.4/commands/DescribeDeliveryStreamCommand.d.ts +39 -17
  7. package/dist-types/ts3.4/commands/ListDeliveryStreamsCommand.d.ts +36 -17
  8. package/dist-types/ts3.4/commands/ListTagsForDeliveryStreamCommand.d.ts +39 -17
  9. package/dist-types/ts3.4/commands/PutRecordBatchCommand.d.ts +32 -17
  10. package/dist-types/ts3.4/commands/PutRecordCommand.d.ts +32 -17
  11. package/dist-types/ts3.4/commands/StartDeliveryStreamEncryptionCommand.d.ts +39 -17
  12. package/dist-types/ts3.4/commands/StopDeliveryStreamEncryptionCommand.d.ts +39 -17
  13. package/dist-types/ts3.4/commands/TagDeliveryStreamCommand.d.ts +35 -17
  14. package/dist-types/ts3.4/commands/UntagDeliveryStreamCommand.d.ts +36 -17
  15. package/dist-types/ts3.4/commands/UpdateDestinationCommand.d.ts +35 -17
  16. package/dist-types/ts3.4/commands/index.d.ts +12 -12
  17. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  18. package/dist-types/ts3.4/index.d.ts +5 -5
  19. package/dist-types/ts3.4/models/FirehoseServiceException.d.ts +7 -6
  20. package/dist-types/ts3.4/models/index.d.ts +1 -1
  21. package/dist-types/ts3.4/models/models_0.d.ts +990 -1340
  22. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +149 -38
  23. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
  24. package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
  25. package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
  26. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
  27. package/package.json +34 -34
@@ -1,17 +1,39 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FirehoseClient";
4
- import { DeleteDeliveryStreamInput, DeleteDeliveryStreamOutput } from "../models/models_0";
5
- export interface DeleteDeliveryStreamCommandInput extends DeleteDeliveryStreamInput {
6
- }
7
- export interface DeleteDeliveryStreamCommandOutput extends DeleteDeliveryStreamOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteDeliveryStreamCommand extends $Command<DeleteDeliveryStreamCommandInput, DeleteDeliveryStreamCommandOutput, FirehoseClientResolvedConfig> {
11
- readonly input: DeleteDeliveryStreamCommandInput;
12
- constructor(input: DeleteDeliveryStreamCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FirehoseClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteDeliveryStreamCommandInput, DeleteDeliveryStreamCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ FirehoseClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../FirehoseClient";
13
+ import {
14
+ DeleteDeliveryStreamInput,
15
+ DeleteDeliveryStreamOutput,
16
+ } from "../models/models_0";
17
+ export interface DeleteDeliveryStreamCommandInput
18
+ extends DeleteDeliveryStreamInput {}
19
+ export interface DeleteDeliveryStreamCommandOutput
20
+ extends DeleteDeliveryStreamOutput,
21
+ __MetadataBearer {}
22
+ export declare class DeleteDeliveryStreamCommand extends $Command<
23
+ DeleteDeliveryStreamCommandInput,
24
+ DeleteDeliveryStreamCommandOutput,
25
+ FirehoseClientResolvedConfig
26
+ > {
27
+ readonly input: DeleteDeliveryStreamCommandInput;
28
+ constructor(input: DeleteDeliveryStreamCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: FirehoseClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ DeleteDeliveryStreamCommandInput,
35
+ DeleteDeliveryStreamCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,39 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FirehoseClient";
4
- import { DescribeDeliveryStreamInput, DescribeDeliveryStreamOutput } from "../models/models_0";
5
- export interface DescribeDeliveryStreamCommandInput extends DescribeDeliveryStreamInput {
6
- }
7
- export interface DescribeDeliveryStreamCommandOutput extends DescribeDeliveryStreamOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeDeliveryStreamCommand extends $Command<DescribeDeliveryStreamCommandInput, DescribeDeliveryStreamCommandOutput, FirehoseClientResolvedConfig> {
11
- readonly input: DescribeDeliveryStreamCommandInput;
12
- constructor(input: DescribeDeliveryStreamCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FirehoseClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeDeliveryStreamCommandInput, DescribeDeliveryStreamCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ FirehoseClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../FirehoseClient";
13
+ import {
14
+ DescribeDeliveryStreamInput,
15
+ DescribeDeliveryStreamOutput,
16
+ } from "../models/models_0";
17
+ export interface DescribeDeliveryStreamCommandInput
18
+ extends DescribeDeliveryStreamInput {}
19
+ export interface DescribeDeliveryStreamCommandOutput
20
+ extends DescribeDeliveryStreamOutput,
21
+ __MetadataBearer {}
22
+ export declare class DescribeDeliveryStreamCommand extends $Command<
23
+ DescribeDeliveryStreamCommandInput,
24
+ DescribeDeliveryStreamCommandOutput,
25
+ FirehoseClientResolvedConfig
26
+ > {
27
+ readonly input: DescribeDeliveryStreamCommandInput;
28
+ constructor(input: DescribeDeliveryStreamCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: FirehoseClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ DescribeDeliveryStreamCommandInput,
35
+ DescribeDeliveryStreamCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,36 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FirehoseClient";
4
- import { ListDeliveryStreamsInput, ListDeliveryStreamsOutput } from "../models/models_0";
5
- export interface ListDeliveryStreamsCommandInput extends ListDeliveryStreamsInput {
6
- }
7
- export interface ListDeliveryStreamsCommandOutput extends ListDeliveryStreamsOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class ListDeliveryStreamsCommand extends $Command<ListDeliveryStreamsCommandInput, ListDeliveryStreamsCommandOutput, FirehoseClientResolvedConfig> {
11
- readonly input: ListDeliveryStreamsCommandInput;
12
- constructor(input: ListDeliveryStreamsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FirehoseClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListDeliveryStreamsCommandInput, ListDeliveryStreamsCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ FirehoseClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../FirehoseClient";
13
+ import {
14
+ ListDeliveryStreamsInput,
15
+ ListDeliveryStreamsOutput,
16
+ } from "../models/models_0";
17
+ export interface ListDeliveryStreamsCommandInput
18
+ extends ListDeliveryStreamsInput {}
19
+ export interface ListDeliveryStreamsCommandOutput
20
+ extends ListDeliveryStreamsOutput,
21
+ __MetadataBearer {}
22
+ export declare class ListDeliveryStreamsCommand extends $Command<
23
+ ListDeliveryStreamsCommandInput,
24
+ ListDeliveryStreamsCommandOutput,
25
+ FirehoseClientResolvedConfig
26
+ > {
27
+ readonly input: ListDeliveryStreamsCommandInput;
28
+ constructor(input: ListDeliveryStreamsCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: FirehoseClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<ListDeliveryStreamsCommandInput, ListDeliveryStreamsCommandOutput>;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -1,17 +1,39 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FirehoseClient";
4
- import { ListTagsForDeliveryStreamInput, ListTagsForDeliveryStreamOutput } from "../models/models_0";
5
- export interface ListTagsForDeliveryStreamCommandInput extends ListTagsForDeliveryStreamInput {
6
- }
7
- export interface ListTagsForDeliveryStreamCommandOutput extends ListTagsForDeliveryStreamOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class ListTagsForDeliveryStreamCommand extends $Command<ListTagsForDeliveryStreamCommandInput, ListTagsForDeliveryStreamCommandOutput, FirehoseClientResolvedConfig> {
11
- readonly input: ListTagsForDeliveryStreamCommandInput;
12
- constructor(input: ListTagsForDeliveryStreamCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FirehoseClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForDeliveryStreamCommandInput, ListTagsForDeliveryStreamCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ FirehoseClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../FirehoseClient";
13
+ import {
14
+ ListTagsForDeliveryStreamInput,
15
+ ListTagsForDeliveryStreamOutput,
16
+ } from "../models/models_0";
17
+ export interface ListTagsForDeliveryStreamCommandInput
18
+ extends ListTagsForDeliveryStreamInput {}
19
+ export interface ListTagsForDeliveryStreamCommandOutput
20
+ extends ListTagsForDeliveryStreamOutput,
21
+ __MetadataBearer {}
22
+ export declare class ListTagsForDeliveryStreamCommand extends $Command<
23
+ ListTagsForDeliveryStreamCommandInput,
24
+ ListTagsForDeliveryStreamCommandOutput,
25
+ FirehoseClientResolvedConfig
26
+ > {
27
+ readonly input: ListTagsForDeliveryStreamCommandInput;
28
+ constructor(input: ListTagsForDeliveryStreamCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: FirehoseClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ ListTagsForDeliveryStreamCommandInput,
35
+ ListTagsForDeliveryStreamCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,32 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FirehoseClient";
4
- import { PutRecordBatchInput, PutRecordBatchOutput } from "../models/models_0";
5
- export interface PutRecordBatchCommandInput extends PutRecordBatchInput {
6
- }
7
- export interface PutRecordBatchCommandOutput extends PutRecordBatchOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class PutRecordBatchCommand extends $Command<PutRecordBatchCommandInput, PutRecordBatchCommandOutput, FirehoseClientResolvedConfig> {
11
- readonly input: PutRecordBatchCommandInput;
12
- constructor(input: PutRecordBatchCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FirehoseClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutRecordBatchCommandInput, PutRecordBatchCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ FirehoseClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../FirehoseClient";
13
+ import { PutRecordBatchInput, PutRecordBatchOutput } from "../models/models_0";
14
+ export interface PutRecordBatchCommandInput extends PutRecordBatchInput {}
15
+ export interface PutRecordBatchCommandOutput
16
+ extends PutRecordBatchOutput,
17
+ __MetadataBearer {}
18
+ export declare class PutRecordBatchCommand extends $Command<
19
+ PutRecordBatchCommandInput,
20
+ PutRecordBatchCommandOutput,
21
+ FirehoseClientResolvedConfig
22
+ > {
23
+ readonly input: PutRecordBatchCommandInput;
24
+ constructor(input: PutRecordBatchCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: FirehoseClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<PutRecordBatchCommandInput, PutRecordBatchCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,32 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FirehoseClient";
4
- import { PutRecordInput, PutRecordOutput } from "../models/models_0";
5
- export interface PutRecordCommandInput extends PutRecordInput {
6
- }
7
- export interface PutRecordCommandOutput extends PutRecordOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class PutRecordCommand extends $Command<PutRecordCommandInput, PutRecordCommandOutput, FirehoseClientResolvedConfig> {
11
- readonly input: PutRecordCommandInput;
12
- constructor(input: PutRecordCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FirehoseClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutRecordCommandInput, PutRecordCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ FirehoseClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../FirehoseClient";
13
+ import { PutRecordInput, PutRecordOutput } from "../models/models_0";
14
+ export interface PutRecordCommandInput extends PutRecordInput {}
15
+ export interface PutRecordCommandOutput
16
+ extends PutRecordOutput,
17
+ __MetadataBearer {}
18
+ export declare class PutRecordCommand extends $Command<
19
+ PutRecordCommandInput,
20
+ PutRecordCommandOutput,
21
+ FirehoseClientResolvedConfig
22
+ > {
23
+ readonly input: PutRecordCommandInput;
24
+ constructor(input: PutRecordCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: FirehoseClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<PutRecordCommandInput, PutRecordCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,39 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FirehoseClient";
4
- import { StartDeliveryStreamEncryptionInput, StartDeliveryStreamEncryptionOutput } from "../models/models_0";
5
- export interface StartDeliveryStreamEncryptionCommandInput extends StartDeliveryStreamEncryptionInput {
6
- }
7
- export interface StartDeliveryStreamEncryptionCommandOutput extends StartDeliveryStreamEncryptionOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class StartDeliveryStreamEncryptionCommand extends $Command<StartDeliveryStreamEncryptionCommandInput, StartDeliveryStreamEncryptionCommandOutput, FirehoseClientResolvedConfig> {
11
- readonly input: StartDeliveryStreamEncryptionCommandInput;
12
- constructor(input: StartDeliveryStreamEncryptionCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FirehoseClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartDeliveryStreamEncryptionCommandInput, StartDeliveryStreamEncryptionCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ FirehoseClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../FirehoseClient";
13
+ import {
14
+ StartDeliveryStreamEncryptionInput,
15
+ StartDeliveryStreamEncryptionOutput,
16
+ } from "../models/models_0";
17
+ export interface StartDeliveryStreamEncryptionCommandInput
18
+ extends StartDeliveryStreamEncryptionInput {}
19
+ export interface StartDeliveryStreamEncryptionCommandOutput
20
+ extends StartDeliveryStreamEncryptionOutput,
21
+ __MetadataBearer {}
22
+ export declare class StartDeliveryStreamEncryptionCommand extends $Command<
23
+ StartDeliveryStreamEncryptionCommandInput,
24
+ StartDeliveryStreamEncryptionCommandOutput,
25
+ FirehoseClientResolvedConfig
26
+ > {
27
+ readonly input: StartDeliveryStreamEncryptionCommandInput;
28
+ constructor(input: StartDeliveryStreamEncryptionCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: FirehoseClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ StartDeliveryStreamEncryptionCommandInput,
35
+ StartDeliveryStreamEncryptionCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,39 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FirehoseClient";
4
- import { StopDeliveryStreamEncryptionInput, StopDeliveryStreamEncryptionOutput } from "../models/models_0";
5
- export interface StopDeliveryStreamEncryptionCommandInput extends StopDeliveryStreamEncryptionInput {
6
- }
7
- export interface StopDeliveryStreamEncryptionCommandOutput extends StopDeliveryStreamEncryptionOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class StopDeliveryStreamEncryptionCommand extends $Command<StopDeliveryStreamEncryptionCommandInput, StopDeliveryStreamEncryptionCommandOutput, FirehoseClientResolvedConfig> {
11
- readonly input: StopDeliveryStreamEncryptionCommandInput;
12
- constructor(input: StopDeliveryStreamEncryptionCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FirehoseClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StopDeliveryStreamEncryptionCommandInput, StopDeliveryStreamEncryptionCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ FirehoseClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../FirehoseClient";
13
+ import {
14
+ StopDeliveryStreamEncryptionInput,
15
+ StopDeliveryStreamEncryptionOutput,
16
+ } from "../models/models_0";
17
+ export interface StopDeliveryStreamEncryptionCommandInput
18
+ extends StopDeliveryStreamEncryptionInput {}
19
+ export interface StopDeliveryStreamEncryptionCommandOutput
20
+ extends StopDeliveryStreamEncryptionOutput,
21
+ __MetadataBearer {}
22
+ export declare class StopDeliveryStreamEncryptionCommand extends $Command<
23
+ StopDeliveryStreamEncryptionCommandInput,
24
+ StopDeliveryStreamEncryptionCommandOutput,
25
+ FirehoseClientResolvedConfig
26
+ > {
27
+ readonly input: StopDeliveryStreamEncryptionCommandInput;
28
+ constructor(input: StopDeliveryStreamEncryptionCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: FirehoseClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ StopDeliveryStreamEncryptionCommandInput,
35
+ StopDeliveryStreamEncryptionCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,35 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FirehoseClient";
4
- import { TagDeliveryStreamInput, TagDeliveryStreamOutput } from "../models/models_0";
5
- export interface TagDeliveryStreamCommandInput extends TagDeliveryStreamInput {
6
- }
7
- export interface TagDeliveryStreamCommandOutput extends TagDeliveryStreamOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class TagDeliveryStreamCommand extends $Command<TagDeliveryStreamCommandInput, TagDeliveryStreamCommandOutput, FirehoseClientResolvedConfig> {
11
- readonly input: TagDeliveryStreamCommandInput;
12
- constructor(input: TagDeliveryStreamCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FirehoseClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagDeliveryStreamCommandInput, TagDeliveryStreamCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ FirehoseClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../FirehoseClient";
13
+ import {
14
+ TagDeliveryStreamInput,
15
+ TagDeliveryStreamOutput,
16
+ } from "../models/models_0";
17
+ export interface TagDeliveryStreamCommandInput extends TagDeliveryStreamInput {}
18
+ export interface TagDeliveryStreamCommandOutput
19
+ extends TagDeliveryStreamOutput,
20
+ __MetadataBearer {}
21
+ export declare class TagDeliveryStreamCommand extends $Command<
22
+ TagDeliveryStreamCommandInput,
23
+ TagDeliveryStreamCommandOutput,
24
+ FirehoseClientResolvedConfig
25
+ > {
26
+ readonly input: TagDeliveryStreamCommandInput;
27
+ constructor(input: TagDeliveryStreamCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: FirehoseClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<TagDeliveryStreamCommandInput, TagDeliveryStreamCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,17 +1,36 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FirehoseClient";
4
- import { UntagDeliveryStreamInput, UntagDeliveryStreamOutput } from "../models/models_0";
5
- export interface UntagDeliveryStreamCommandInput extends UntagDeliveryStreamInput {
6
- }
7
- export interface UntagDeliveryStreamCommandOutput extends UntagDeliveryStreamOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class UntagDeliveryStreamCommand extends $Command<UntagDeliveryStreamCommandInput, UntagDeliveryStreamCommandOutput, FirehoseClientResolvedConfig> {
11
- readonly input: UntagDeliveryStreamCommandInput;
12
- constructor(input: UntagDeliveryStreamCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FirehoseClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagDeliveryStreamCommandInput, UntagDeliveryStreamCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ FirehoseClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../FirehoseClient";
13
+ import {
14
+ UntagDeliveryStreamInput,
15
+ UntagDeliveryStreamOutput,
16
+ } from "../models/models_0";
17
+ export interface UntagDeliveryStreamCommandInput
18
+ extends UntagDeliveryStreamInput {}
19
+ export interface UntagDeliveryStreamCommandOutput
20
+ extends UntagDeliveryStreamOutput,
21
+ __MetadataBearer {}
22
+ export declare class UntagDeliveryStreamCommand extends $Command<
23
+ UntagDeliveryStreamCommandInput,
24
+ UntagDeliveryStreamCommandOutput,
25
+ FirehoseClientResolvedConfig
26
+ > {
27
+ readonly input: UntagDeliveryStreamCommandInput;
28
+ constructor(input: UntagDeliveryStreamCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: FirehoseClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<UntagDeliveryStreamCommandInput, UntagDeliveryStreamCommandOutput>;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -1,17 +1,35 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FirehoseClient";
4
- import { UpdateDestinationInput, UpdateDestinationOutput } from "../models/models_0";
5
- export interface UpdateDestinationCommandInput extends UpdateDestinationInput {
6
- }
7
- export interface UpdateDestinationCommandOutput extends UpdateDestinationOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateDestinationCommand extends $Command<UpdateDestinationCommandInput, UpdateDestinationCommandOutput, FirehoseClientResolvedConfig> {
11
- readonly input: UpdateDestinationCommandInput;
12
- constructor(input: UpdateDestinationCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FirehoseClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateDestinationCommandInput, UpdateDestinationCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ FirehoseClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../FirehoseClient";
13
+ import {
14
+ UpdateDestinationInput,
15
+ UpdateDestinationOutput,
16
+ } from "../models/models_0";
17
+ export interface UpdateDestinationCommandInput extends UpdateDestinationInput {}
18
+ export interface UpdateDestinationCommandOutput
19
+ extends UpdateDestinationOutput,
20
+ __MetadataBearer {}
21
+ export declare class UpdateDestinationCommand extends $Command<
22
+ UpdateDestinationCommandInput,
23
+ UpdateDestinationCommandOutput,
24
+ FirehoseClientResolvedConfig
25
+ > {
26
+ readonly input: UpdateDestinationCommandInput;
27
+ constructor(input: UpdateDestinationCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: FirehoseClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<UpdateDestinationCommandInput, UpdateDestinationCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,12 +1,12 @@
1
- export * from "./CreateDeliveryStreamCommand";
2
- export * from "./DeleteDeliveryStreamCommand";
3
- export * from "./DescribeDeliveryStreamCommand";
4
- export * from "./ListDeliveryStreamsCommand";
5
- export * from "./ListTagsForDeliveryStreamCommand";
6
- export * from "./PutRecordBatchCommand";
7
- export * from "./PutRecordCommand";
8
- export * from "./StartDeliveryStreamEncryptionCommand";
9
- export * from "./StopDeliveryStreamEncryptionCommand";
10
- export * from "./TagDeliveryStreamCommand";
11
- export * from "./UntagDeliveryStreamCommand";
12
- export * from "./UpdateDestinationCommand";
1
+ export * from "./CreateDeliveryStreamCommand";
2
+ export * from "./DeleteDeliveryStreamCommand";
3
+ export * from "./DescribeDeliveryStreamCommand";
4
+ export * from "./ListDeliveryStreamsCommand";
5
+ export * from "./ListTagsForDeliveryStreamCommand";
6
+ export * from "./PutRecordBatchCommand";
7
+ export * from "./PutRecordCommand";
8
+ export * from "./StartDeliveryStreamEncryptionCommand";
9
+ export * from "./StopDeliveryStreamEncryptionCommand";
10
+ export * from "./TagDeliveryStreamCommand";
11
+ export * from "./UntagDeliveryStreamCommand";
12
+ export * from "./UpdateDestinationCommand";
@@ -1,2 +1,2 @@
1
- import { RegionInfoProvider } from "@aws-sdk/types";
2
- export declare const defaultRegionInfoProvider: RegionInfoProvider;
1
+ import { RegionInfoProvider } from "@aws-sdk/types";
2
+ export declare const defaultRegionInfoProvider: RegionInfoProvider;