@aws-sdk/client-kinesis 3.799.0 → 3.802.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.
@@ -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 (...[input]: [] | [ListTagsForResourceCommandInput]): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
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?: string | undefined;
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?: string | undefined;
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?: string | undefined;
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
- ...[input]: [] | [ListTagsForResourceCommandInput]
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?: string | undefined;
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?: string | undefined;
688
+ ResourceARN: string | undefined;
689
689
  }
690
690
  export interface UntagResourceInput {
691
691
  TagKeys: string[] | undefined;
692
- ResourceARN?: string | undefined;
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.799.0",
4
+ "version": "3.802.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",