You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: clients/client-ivschat/README.md
+3-4
Original file line number
Diff line number
Diff line change
@@ -53,13 +53,12 @@ information.</p>
53
53
<p>A <i>tag</i> is a metadata label that you assign to an AWS resource. A tag
54
54
comprises a <i>key</i> and a <i>value</i>, both set by you. For
55
55
example, you might set a tag as <code>topic:nature</code> to label a particular video
56
-
category. See <ahref="https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html">Tagging AWS Resources</a> for more information, including restrictions that apply to
57
-
tags and "Tag naming limits and requirements"; Amazon IVS Chat has no service-specific
56
+
category. See <ahref="https://docs.aws.amazon.com/tag-editor/latest/userguide/best-practices-and-strats.html">Best practices and strategies</a> in <i>Tagging Amazon Web Services Resources and Tag Editor</i> for details, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS Chat has no service-specific
58
57
constraints beyond what is documented there.</p>
59
58
<p>Tags can help you identify and organize your AWS resources. For example, you can use the
60
59
same tag for different resources to indicate that they are related. You can also use tags to
61
60
manage access (see <ahref="https://docs.aws.amazon.com/IAM/latest/UserGuide/access_tags.html">Access Tags</a>).</p>
62
-
<p>The Amazon IVS Chat API has these tag-related endpoints: <a>TagResource</a>, <a>UntagResource</a>, and
61
+
<p>The Amazon IVS Chat API has these tag-related operations: <a>TagResource</a>, <a>UntagResource</a>, and
63
62
<a>ListTagsForResource</a>. The following resource supports tagging: Room.</p>
64
63
<p>At most 50 tags can be applied to a resource.</p>
65
64
<p>
@@ -81,7 +80,7 @@ to have permissions for Amazon IVS Chat API requests.</p>
81
80
</li>
82
81
</ul>
83
82
<p>Users (viewers) connect to a room using secure access tokens that you create using the
84
-
<a>CreateChatToken</a> endpoint through the AWS SDK. You call CreateChatToken for
83
+
<a>CreateChatToken</a> operation through the AWS SDK. You call CreateChatToken for
85
84
every user’s chat session, passing identity and authorization information about the
Copy file name to clipboardExpand all lines: clients/client-ivschat/src/Ivschat.ts
+3-4
Original file line number
Diff line number
Diff line change
@@ -363,13 +363,12 @@ export interface Ivschat {
363
363
* <p>A <i>tag</i> is a metadata label that you assign to an AWS resource. A tag
364
364
* comprises a <i>key</i> and a <i>value</i>, both set by you. For
365
365
* example, you might set a tag as <code>topic:nature</code> to label a particular video
366
-
* category. See <a href="https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html">Tagging AWS Resources</a> for more information, including restrictions that apply to
367
-
* tags and "Tag naming limits and requirements"; Amazon IVS Chat has no service-specific
366
+
* category. See <a href="https://docs.aws.amazon.com/tag-editor/latest/userguide/best-practices-and-strats.html">Best practices and strategies</a> in <i>Tagging Amazon Web Services Resources and Tag Editor</i> for details, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS Chat has no service-specific
368
367
* constraints beyond what is documented there.</p>
369
368
* <p>Tags can help you identify and organize your AWS resources. For example, you can use the
370
369
* same tag for different resources to indicate that they are related. You can also use tags to
371
370
* manage access (see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access_tags.html">Access Tags</a>).</p>
372
-
* <p>The Amazon IVS Chat API has these tag-related endpoints: <a>TagResource</a>, <a>UntagResource</a>, and
371
+
* <p>The Amazon IVS Chat API has these tag-related operations: <a>TagResource</a>, <a>UntagResource</a>, and
373
372
* <a>ListTagsForResource</a>. The following resource supports tagging: Room.</p>
374
373
* <p>At most 50 tags can be applied to a resource.</p>
375
374
* <p>
@@ -391,7 +390,7 @@ export interface Ivschat {
391
390
* </li>
392
391
* </ul>
393
392
* <p>Users (viewers) connect to a room using secure access tokens that you create using the
394
-
* <a>CreateChatToken</a> endpoint through the AWS SDK. You call CreateChatToken for
393
+
* <a>CreateChatToken</a> operation through the AWS SDK. You call CreateChatToken for
395
394
* every user’s chat session, passing identity and authorization information about the
* <p>A <i>tag</i> is a metadata label that you assign to an AWS resource. A tag
363
363
* comprises a <i>key</i> and a <i>value</i>, both set by you. For
364
364
* example, you might set a tag as <code>topic:nature</code> to label a particular video
365
-
* category. See <a href="https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html">Tagging AWS Resources</a> for more information, including restrictions that apply to
366
-
* tags and "Tag naming limits and requirements"; Amazon IVS Chat has no service-specific
365
+
* category. See <a href="https://docs.aws.amazon.com/tag-editor/latest/userguide/best-practices-and-strats.html">Best practices and strategies</a> in <i>Tagging Amazon Web Services Resources and Tag Editor</i> for details, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS Chat has no service-specific
367
366
* constraints beyond what is documented there.</p>
368
367
* <p>Tags can help you identify and organize your AWS resources. For example, you can use the
369
368
* same tag for different resources to indicate that they are related. You can also use tags to
370
369
* manage access (see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access_tags.html">Access Tags</a>).</p>
371
-
* <p>The Amazon IVS Chat API has these tag-related endpoints: <a>TagResource</a>, <a>UntagResource</a>, and
370
+
* <p>The Amazon IVS Chat API has these tag-related operations: <a>TagResource</a>, <a>UntagResource</a>, and
372
371
* <a>ListTagsForResource</a>. The following resource supports tagging: Room.</p>
373
372
* <p>At most 50 tags can be applied to a resource.</p>
Copy file name to clipboardExpand all lines: clients/client-ivschat/src/index.ts
+3-4
Original file line number
Diff line number
Diff line change
@@ -48,13 +48,12 @@
48
48
* <p>A <i>tag</i> is a metadata label that you assign to an AWS resource. A tag
49
49
* comprises a <i>key</i> and a <i>value</i>, both set by you. For
50
50
* example, you might set a tag as <code>topic:nature</code> to label a particular video
51
-
* category. See <a href="https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html">Tagging AWS Resources</a> for more information, including restrictions that apply to
52
-
* tags and "Tag naming limits and requirements"; Amazon IVS Chat has no service-specific
51
+
* category. See <a href="https://docs.aws.amazon.com/tag-editor/latest/userguide/best-practices-and-strats.html">Best practices and strategies</a> in <i>Tagging Amazon Web Services Resources and Tag Editor</i> for details, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS Chat has no service-specific
53
52
* constraints beyond what is documented there.</p>
54
53
* <p>Tags can help you identify and organize your AWS resources. For example, you can use the
55
54
* same tag for different resources to indicate that they are related. You can also use tags to
56
55
* manage access (see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access_tags.html">Access Tags</a>).</p>
57
-
* <p>The Amazon IVS Chat API has these tag-related endpoints: <a>TagResource</a>, <a>UntagResource</a>, and
56
+
* <p>The Amazon IVS Chat API has these tag-related operations: <a>TagResource</a>, <a>UntagResource</a>, and
58
57
* <a>ListTagsForResource</a>. The following resource supports tagging: Room.</p>
59
58
* <p>At most 50 tags can be applied to a resource.</p>
60
59
* <p>
@@ -76,7 +75,7 @@
76
75
* </li>
77
76
* </ul>
78
77
* <p>Users (viewers) connect to a room using secure access tokens that you create using the
79
-
* <a>CreateChatToken</a> endpoint through the AWS SDK. You call CreateChatToken for
78
+
* <a>CreateChatToken</a> operation through the AWS SDK. You call CreateChatToken for
80
79
* every user’s chat session, passing identity and authorization information about the
* <p>Tags to attach to the resource. Array of maps, each of the form <code>string:string
410
-
* (key:value)</code>. See <a href="https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html">Tagging AWS
411
-
* Resources</a> for details, including restrictions that apply to tags and "Tag naming
412
-
* limits and requirements"; Amazon IVS Chat has no constraints on tags beyond what is
410
+
* (key:value)</code>. See <a href="https://docs.aws.amazon.com/tag-editor/latest/userguide/best-practices-and-strats.html">Best practices and strategies</a> in <i>Tagging Amazon Web Services Resources and Tag Editor</i> for details, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS Chat has no constraints on tags beyond what is
* <p>Tags to attach to the resource. Array of maps, each of the form <code>string:string
606
-
* (key:value)</code>. See <a href="https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html">Tagging AWS
607
-
* Resources</a> for details, including restrictions that apply to tags and "Tag naming
608
-
* limits and requirements"; Amazon IVS Chat has no constraints beyond what is documented
604
+
* (key:value)</code>. See <a href="https://docs.aws.amazon.com/tag-editor/latest/userguide/best-practices-and-strats.html">Best practices and strategies</a> in <i>Tagging Amazon Web Services Resources and Tag Editor</i> for details, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS Chat has no constraints beyond what is documented
* <p>Tags to attach to the resource. Array of maps, each of the form <code>string:string
1069
-
* (key:value)</code>. See <a href="https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html">Tagging AWS
1070
-
* Resources</a> for details, including restrictions that apply to tags and "Tag naming
1071
-
* limits and requirements"; Amazon IVS Chat has no constraints on tags beyond what is documented
1065
+
* (key:value)</code>. See <a href="https://docs.aws.amazon.com/tag-editor/latest/userguide/best-practices-and-strats.html">Best practices and strategies</a> in <i>Tagging Amazon Web Services Resources and Tag Editor</i> for details, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS Chat has no constraints on tags beyond what is documented
* <p>Tags attached to the resource. Array of maps, each of the form <code>string:string
1180
-
* (key:value)</code>. See <a href="https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html">Tagging AWS
1181
-
* Resources</a> for details, including restrictions that apply to tags and "Tag naming
1182
-
* limits and requirements"; Amazon IVS Chat has no constraints beyond what is documented
1174
+
* (key:value)</code>. See <a href="https://docs.aws.amazon.com/tag-editor/latest/userguide/best-practices-and-strats.html">Best practices and strategies</a> in <i>Tagging Amazon Web Services Resources and Tag Editor</i> for details, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS Chat has no constraints beyond what is documented
* <p>Array of tags to be added or updated. Array of maps, each of the form
1305
-
* <code>string:string (key:value)</code>. See <a href="https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html">Tagging AWS
1306
-
* Resources</a> for details, including restrictions that apply to tags and "Tag naming
1307
-
* limits and requirements"; Amazon IVS Chat has no constraints beyond what is documented
1297
+
* <code>string:string (key:value)</code>. See <a href="https://docs.aws.amazon.com/tag-editor/latest/userguide/best-practices-and-strats.html">Best practices and strategies</a> in <i>Tagging Amazon Web Services Resources and Tag Editor</i> for details, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS Chat has no constraints beyond what is documented
* <p>Array of tags to be removed. Array of maps, each of the form <code>string:string
1331
-
* (key:value)</code>. See <a href="https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html">Tagging AWS
1332
-
* Resources</a> for details, including restrictions that apply to tags and "Tag naming
1333
-
* limits and requirements"; Amazon IVS Chat has no constraints beyond what is documented
1321
+
* (key:value)</code>. See <a href="https://docs.aws.amazon.com/tag-editor/latest/userguide/best-practices-and-strats.html">Best practices and strategies</a> in <i>Tagging Amazon Web Services Resources and Tag Editor</i> for details, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS Chat has no constraints beyond what is documented
0 commit comments