@aws-sdk/client-kinesis 3.799.0 → 3.803.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-types/Kinesis.d.ts +0 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -2
- package/dist-types/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +3 -3
- package/dist-types/ts3.4/Kinesis.d.ts +0 -1
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +3 -3
- package/package.json +4 -4
package/dist-types/Kinesis.d.ts
CHANGED
|
@@ -161,7 +161,6 @@ export interface Kinesis {
|
|
|
161
161
|
/**
|
|
162
162
|
* @see {@link ListTagsForResourceCommand}
|
|
163
163
|
*/
|
|
164
|
-
listTagsForResource(): Promise<ListTagsForResourceCommandOutput>;
|
|
165
164
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
166
165
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
167
166
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
@@ -23,7 +23,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
|
|
|
23
23
|
}
|
|
24
24
|
declare const ListTagsForResourceCommand_base: {
|
|
25
25
|
new (input: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (
|
|
26
|
+
new (__0_0: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
@@ -36,7 +36,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
36
36
|
* // const { KinesisClient, ListTagsForResourceCommand } = require("@aws-sdk/client-kinesis"); // CommonJS import
|
|
37
37
|
* const client = new KinesisClient(config);
|
|
38
38
|
* const input = { // ListTagsForResourceInput
|
|
39
|
-
* ResourceARN: "STRING_VALUE",
|
|
39
|
+
* ResourceARN: "STRING_VALUE", // required
|
|
40
40
|
* };
|
|
41
41
|
* const command = new ListTagsForResourceCommand(input);
|
|
42
42
|
* const response = await client.send(command);
|
|
@@ -38,7 +38,7 @@ declare const TagResourceCommand_base: {
|
|
|
38
38
|
* Tags: { // TagMap // required
|
|
39
39
|
* "<keys>": "STRING_VALUE",
|
|
40
40
|
* },
|
|
41
|
-
* ResourceARN: "STRING_VALUE",
|
|
41
|
+
* ResourceARN: "STRING_VALUE", // required
|
|
42
42
|
* };
|
|
43
43
|
* const command = new TagResourceCommand(input);
|
|
44
44
|
* const response = await client.send(command);
|
|
@@ -38,7 +38,7 @@ declare const UntagResourceCommand_base: {
|
|
|
38
38
|
* TagKeys: [ // TagKeyList // required
|
|
39
39
|
* "STRING_VALUE",
|
|
40
40
|
* ],
|
|
41
|
-
* ResourceARN: "STRING_VALUE",
|
|
41
|
+
* ResourceARN: "STRING_VALUE", // required
|
|
42
42
|
* };
|
|
43
43
|
* const command = new UntagResourceCommand(input);
|
|
44
44
|
* const response = await client.send(command);
|
|
@@ -1819,7 +1819,7 @@ export interface ListTagsForResourceInput {
|
|
|
1819
1819
|
* <p>The Amazon Resource Name (ARN) of the Kinesis resource for which to list tags.</p>
|
|
1820
1820
|
* @public
|
|
1821
1821
|
*/
|
|
1822
|
-
ResourceARN
|
|
1822
|
+
ResourceARN: string | undefined;
|
|
1823
1823
|
}
|
|
1824
1824
|
/**
|
|
1825
1825
|
* <p>Metadata assigned to the stream or consumer, consisting of a key-value pair.</p>
|
|
@@ -2709,7 +2709,7 @@ export interface TagResourceInput {
|
|
|
2709
2709
|
* <p>The Amazon Resource Name (ARN) of the Kinesis resource to which to add tags.</p>
|
|
2710
2710
|
* @public
|
|
2711
2711
|
*/
|
|
2712
|
-
ResourceARN
|
|
2712
|
+
ResourceARN: string | undefined;
|
|
2713
2713
|
}
|
|
2714
2714
|
/**
|
|
2715
2715
|
* @public
|
|
@@ -2724,7 +2724,7 @@ export interface UntagResourceInput {
|
|
|
2724
2724
|
* <p>The Amazon Resource Name (ARN) of the Kinesis resource from which to remove tags.</p>
|
|
2725
2725
|
* @public
|
|
2726
2726
|
*/
|
|
2727
|
-
ResourceARN
|
|
2727
|
+
ResourceARN: string | undefined;
|
|
2728
2728
|
}
|
|
2729
2729
|
/**
|
|
2730
2730
|
* @public
|
|
@@ -396,7 +396,6 @@ export interface Kinesis {
|
|
|
396
396
|
options: __HttpHandlerOptions,
|
|
397
397
|
cb: (err: any, data?: ListStreamsCommandOutput) => void
|
|
398
398
|
): void;
|
|
399
|
-
listTagsForResource(): Promise<ListTagsForResourceCommandOutput>;
|
|
400
399
|
listTagsForResource(
|
|
401
400
|
args: ListTagsForResourceCommandInput,
|
|
402
401
|
options?: __HttpHandlerOptions
|
|
@@ -27,7 +27,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
27
27
|
ServiceOutputTypes
|
|
28
28
|
>;
|
|
29
29
|
new (
|
|
30
|
-
|
|
30
|
+
__0_0: ListTagsForResourceCommandInput
|
|
31
31
|
): import("@smithy/smithy-client").CommandImpl<
|
|
32
32
|
ListTagsForResourceCommandInput,
|
|
33
33
|
ListTagsForResourceCommandOutput,
|
|
@@ -389,7 +389,7 @@ export interface ListStreamsOutput {
|
|
|
389
389
|
StreamSummaries?: StreamSummary[] | undefined;
|
|
390
390
|
}
|
|
391
391
|
export interface ListTagsForResourceInput {
|
|
392
|
-
ResourceARN
|
|
392
|
+
ResourceARN: string | undefined;
|
|
393
393
|
}
|
|
394
394
|
export interface Tag {
|
|
395
395
|
Key: string | undefined;
|
|
@@ -685,11 +685,11 @@ export interface SubscribeToShardOutput {
|
|
|
685
685
|
}
|
|
686
686
|
export interface TagResourceInput {
|
|
687
687
|
Tags: Record<string, string> | undefined;
|
|
688
|
-
ResourceARN
|
|
688
|
+
ResourceARN: string | undefined;
|
|
689
689
|
}
|
|
690
690
|
export interface UntagResourceInput {
|
|
691
691
|
TagKeys: string[] | undefined;
|
|
692
|
-
ResourceARN
|
|
692
|
+
ResourceARN: string | undefined;
|
|
693
693
|
}
|
|
694
694
|
export declare const ScalingType: {
|
|
695
695
|
readonly UNIFORM_SCALING: "UNIFORM_SCALING";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-kinesis",
|
|
3
3
|
"description": "AWS SDK for JavaScript Kinesis Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.803.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-kinesis",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
24
24
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
25
25
|
"@aws-sdk/core": "3.799.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.803.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.775.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.775.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.775.0",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"@smithy/invalid-dependency": "^4.0.2",
|
|
44
44
|
"@smithy/middleware-content-length": "^4.0.2",
|
|
45
45
|
"@smithy/middleware-endpoint": "^4.1.1",
|
|
46
|
-
"@smithy/middleware-retry": "^4.1.
|
|
46
|
+
"@smithy/middleware-retry": "^4.1.2",
|
|
47
47
|
"@smithy/middleware-serde": "^4.0.3",
|
|
48
48
|
"@smithy/middleware-stack": "^4.0.2",
|
|
49
49
|
"@smithy/node-config-provider": "^4.0.2",
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
"@smithy/util-defaults-mode-node": "^4.0.9",
|
|
60
60
|
"@smithy/util-endpoints": "^3.0.2",
|
|
61
61
|
"@smithy/util-middleware": "^4.0.2",
|
|
62
|
-
"@smithy/util-retry": "^4.0.
|
|
62
|
+
"@smithy/util-retry": "^4.0.3",
|
|
63
63
|
"@smithy/util-utf8": "^4.0.0",
|
|
64
64
|
"@smithy/util-waiter": "^4.0.3",
|
|
65
65
|
"tslib": "^2.6.2"
|