@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.
- package/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/Firehose.d.ts +208 -65
- package/dist-types/ts3.4/FirehoseClient.d.ts +176 -85
- package/dist-types/ts3.4/commands/CreateDeliveryStreamCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DeleteDeliveryStreamCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DescribeDeliveryStreamCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListDeliveryStreamsCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ListTagsForDeliveryStreamCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/PutRecordBatchCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/PutRecordCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/StartDeliveryStreamEncryptionCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/StopDeliveryStreamEncryptionCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/TagDeliveryStreamCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/UntagDeliveryStreamCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/UpdateDestinationCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/index.d.ts +12 -12
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +5 -5
- package/dist-types/ts3.4/models/FirehoseServiceException.d.ts +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +990 -1340
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +149 -38
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
- package/package.json +34 -34
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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;
|