File tree Expand file tree Collapse file tree 6 files changed +9
-7
lines changed
clients/client-kinesis/src
codegen/sdk-codegen/aws-models Expand file tree Collapse file tree 6 files changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -481,7 +481,6 @@ export interface Kinesis {
481
481
/**
482
482
* @see {@link ListTagsForResourceCommand }
483
483
*/
484
- listTagsForResource ( ) : Promise < ListTagsForResourceCommandOutput > ;
485
484
listTagsForResource (
486
485
args : ListTagsForResourceCommandInput ,
487
486
options ?: __HttpHandlerOptions
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
37
37
* // const { KinesisClient, ListTagsForResourceCommand } = require("@aws-sdk/client-kinesis"); // CommonJS import
38
38
* const client = new KinesisClient(config);
39
39
* const input = { // ListTagsForResourceInput
40
- * ResourceARN: "STRING_VALUE",
40
+ * ResourceARN: "STRING_VALUE", // required
41
41
* };
42
42
* const command = new ListTagsForResourceCommand(input);
43
43
* const response = await client.send(command);
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ export interface TagResourceCommandOutput extends __MetadataBearer {}
39
39
* Tags: { // TagMap // required
40
40
* "<keys>": "STRING_VALUE",
41
41
* },
42
- * ResourceARN: "STRING_VALUE",
42
+ * ResourceARN: "STRING_VALUE", // required
43
43
* };
44
44
* const command = new TagResourceCommand(input);
45
45
* const response = await client.send(command);
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {}
39
39
* TagKeys: [ // TagKeyList // required
40
40
* "STRING_VALUE",
41
41
* ],
42
- * ResourceARN: "STRING_VALUE",
42
+ * ResourceARN: "STRING_VALUE", // required
43
43
* };
44
44
* const command = new UntagResourceCommand(input);
45
45
* const response = await client.send(command);
Original file line number Diff line number Diff line change @@ -2098,7 +2098,7 @@ export interface ListTagsForResourceInput {
2098
2098
* <p>The Amazon Resource Name (ARN) of the Kinesis resource for which to list tags.</p>
2099
2099
* @public
2100
2100
*/
2101
- ResourceARN ? : string | undefined ;
2101
+ ResourceARN : string | undefined ;
2102
2102
}
2103
2103
2104
2104
/**
@@ -3106,7 +3106,7 @@ export interface TagResourceInput {
3106
3106
* <p>The Amazon Resource Name (ARN) of the Kinesis resource to which to add tags.</p>
3107
3107
* @public
3108
3108
*/
3109
- ResourceARN ? : string | undefined ;
3109
+ ResourceARN : string | undefined ;
3110
3110
}
3111
3111
3112
3112
/**
@@ -3123,7 +3123,7 @@ export interface UntagResourceInput {
3123
3123
* <p>The Amazon Resource Name (ARN) of the Kinesis resource from which to remove tags.</p>
3124
3124
* @public
3125
3125
*/
3126
- ResourceARN ? : string | undefined ;
3126
+ ResourceARN : string | undefined ;
3127
3127
}
3128
3128
3129
3129
/**
Original file line number Diff line number Diff line change 6231
6231
"target" : " com.amazonaws.kinesis#ResourceARN" ,
6232
6232
"traits" : {
6233
6233
"smithy.api#documentation" : " <p>The Amazon Resource Name (ARN) of the Kinesis resource for which to list tags.</p>" ,
6234
+ "smithy.api#required" : {},
6234
6235
"smithy.rules#contextParam" : {
6235
6236
"name" : " ResourceARN"
6236
6237
}
8237
8238
"target" : " com.amazonaws.kinesis#ResourceARN" ,
8238
8239
"traits" : {
8239
8240
"smithy.api#documentation" : " <p>The Amazon Resource Name (ARN) of the Kinesis resource to which to add tags.</p>" ,
8241
+ "smithy.api#required" : {},
8240
8242
"smithy.rules#contextParam" : {
8241
8243
"name" : " ResourceARN"
8242
8244
}
8307
8309
"target" : " com.amazonaws.kinesis#ResourceARN" ,
8308
8310
"traits" : {
8309
8311
"smithy.api#documentation" : " <p>The Amazon Resource Name (ARN) of the Kinesis resource from which to remove tags.</p>" ,
8312
+ "smithy.api#required" : {},
8310
8313
"smithy.rules#contextParam" : {
8311
8314
"name" : " ResourceARN"
8312
8315
}
You can’t perform that action at this time.
0 commit comments