@aws-sdk/client-ivs-realtime 3.645.0 → 3.648.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/README.md +45 -5
- package/dist-cjs/index.js +315 -2
- package/dist-es/IVSRealTime.js +10 -0
- package/dist-es/commands/CreateIngestConfigurationCommand.js +25 -0
- package/dist-es/commands/DeleteIngestConfigurationCommand.js +24 -0
- package/dist-es/commands/GetIngestConfigurationCommand.js +25 -0
- package/dist-es/commands/ListIngestConfigurationsCommand.js +24 -0
- package/dist-es/commands/UpdateIngestConfigurationCommand.js +25 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/models_0.js +44 -0
- package/dist-es/pagination/ListIngestConfigurationsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +144 -0
- package/dist-types/IVSRealTime.d.ts +41 -5
- package/dist-types/IVSRealTimeClient.d.ts +12 -7
- package/dist-types/commands/CreateIngestConfigurationCommand.d.ts +97 -0
- package/dist-types/commands/CreateStageCommand.d.ts +2 -0
- package/dist-types/commands/DeleteIngestConfigurationCommand.d.ts +74 -0
- package/dist-types/commands/DeleteStageCommand.d.ts +3 -1
- package/dist-types/commands/DisconnectParticipantCommand.d.ts +3 -2
- package/dist-types/commands/GetIngestConfigurationCommand.d.ts +84 -0
- package/dist-types/commands/GetParticipantCommand.d.ts +1 -0
- package/dist-types/commands/GetStageCommand.d.ts +2 -0
- package/dist-types/commands/ListIngestConfigurationsCommand.d.ts +80 -0
- package/dist-types/commands/ListParticipantEventsCommand.d.ts +1 -1
- package/dist-types/commands/StartCompositionCommand.d.ts +1 -1
- package/dist-types/commands/UpdateIngestConfigurationCommand.d.ts +91 -0
- package/dist-types/commands/UpdateStageCommand.d.ts +2 -0
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/index.d.ts +5 -5
- package/dist-types/models/models_0.d.ts +398 -60
- package/dist-types/pagination/ListIngestConfigurationsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +45 -0
- package/dist-types/ts3.4/IVSRealTime.d.ts +86 -0
- package/dist-types/ts3.4/IVSRealTimeClient.d.ts +30 -0
- package/dist-types/ts3.4/commands/CreateIngestConfigurationCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/DeleteIngestConfigurationCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/GetIngestConfigurationCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/ListIngestConfigurationsCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/UpdateIngestConfigurationCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/models_0.d.ts +104 -0
- package/dist-types/ts3.4/pagination/ListIngestConfigurationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +60 -0
- package/package.json +1 -1
package/dist-types/index.d.ts
CHANGED
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
* <p>
|
|
31
31
|
* <b>Composition process</b> — Composites participants
|
|
32
32
|
* of a stage into a single video and forwards it to a set of outputs (e.g., IVS channels).
|
|
33
|
-
* Composition
|
|
33
|
+
* Composition operations support this process.</p>
|
|
34
34
|
* </li>
|
|
35
35
|
* <li>
|
|
36
36
|
* <p>
|
|
@@ -45,13 +45,13 @@
|
|
|
45
45
|
* <p>A <i>tag</i> is a metadata label that you assign to an AWS resource. A tag
|
|
46
46
|
* comprises a <i>key</i> and a <i>value</i>, both set by you. For
|
|
47
47
|
* example, you might set a tag as <code>topic:nature</code> to label a particular video
|
|
48
|
-
* category. See <a href="https://docs.aws.amazon.com/
|
|
49
|
-
*
|
|
50
|
-
* constraints beyond what is documented there.</p>
|
|
48
|
+
* category. See <a href="https://docs.aws.amazon.com/tag-editor/latest/userguide/best-practices-and-strats.html">Best practices and strategies</a>
|
|
49
|
+
* in <i>Tagging AWS Resources and Tag Editor</i> for details, including restrictions that apply to tags and "Tag naming
|
|
50
|
+
* limits and requirements"; Amazon IVS stages has no service-specific constraints beyond what is documented there.</p>
|
|
51
51
|
* <p>Tags can help you identify and organize your AWS resources. For example, you can use the
|
|
52
52
|
* same tag for different resources to indicate that they are related. You can also use tags to
|
|
53
53
|
* manage access (see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access_tags.html">Access Tags</a>).</p>
|
|
54
|
-
* <p>The Amazon IVS real-time API has these tag-related
|
|
54
|
+
* <p>The Amazon IVS real-time API has these tag-related operations: <a>TagResource</a>, <a>UntagResource</a>, and
|
|
55
55
|
* <a>ListTagsForResource</a>. The following resource supports tagging: Stage.</p>
|
|
56
56
|
* <p>At most 50 tags can be applied to a resource.</p>
|
|
57
57
|
*
|