@aws-sdk/client-ivs 3.37.0 → 3.38.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/CHANGELOG.md +13 -0
- package/README.md +54 -107
- package/dist-cjs/commands/index.js +29 -0
- package/dist-cjs/index.js +4 -35
- package/dist-cjs/models/models_0.js +7 -0
- package/dist-cjs/pagination/index.js +9 -0
- package/dist-cjs/protocols/Aws_restJson1.js +1 -11
- package/dist-es/commands/index.js +26 -0
- package/dist-es/index.js +4 -35
- package/dist-es/models/models_0.js +7 -6
- package/dist-es/pagination/index.js +6 -0
- package/dist-es/protocols/Aws_restJson1.js +1 -8
- package/dist-types/Ivs.d.ts +65 -124
- package/dist-types/IvsClient.d.ts +54 -111
- package/dist-types/commands/CreateRecordingConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/ListChannelsCommand.d.ts +1 -1
- package/dist-types/commands/ListRecordingConfigurationsCommand.d.ts +1 -1
- package/dist-types/commands/ListStreamsCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/PutMetadataCommand.d.ts +5 -7
- package/dist-types/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +26 -0
- package/dist-types/index.d.ts +4 -35
- package/dist-types/models/models_0.d.ts +92 -60
- package/dist-types/pagination/index.d.ts +6 -0
- package/dist-types/ts3.4/commands/index.d.ts +26 -0
- package/dist-types/ts3.4/index.d.ts +4 -35
- package/dist-types/ts3.4/models/models_0.d.ts +14 -6
- package/dist-types/ts3.4/pagination/index.d.ts +6 -0
- package/package.json +24 -24
- package/dist-cjs/pagination/ListTagsForResourcePaginator.js +0 -35
- package/dist-es/pagination/ListTagsForResourcePaginator.js +0 -74
- package/dist-types/pagination/ListTagsForResourcePaginator.d.ts +0 -4
- package/dist-types/ts3.4/pagination/ListTagsForResourcePaginator.d.ts +0 -4
|
@@ -498,9 +498,7 @@ export var serializeAws_restJson1ListTagsForResourceCommand = function (input, c
|
|
|
498
498
|
case 0: return [4, context.endpoint()];
|
|
499
499
|
case 1:
|
|
500
500
|
_a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
|
|
501
|
-
headers = {
|
|
502
|
-
"content-type": "application/json",
|
|
503
|
-
};
|
|
501
|
+
headers = {};
|
|
504
502
|
resolvedPath = "" + ((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/tags/{resourceArn}";
|
|
505
503
|
if (input.resourceArn !== undefined) {
|
|
506
504
|
labelValue = input.resourceArn;
|
|
@@ -512,7 +510,6 @@ export var serializeAws_restJson1ListTagsForResourceCommand = function (input, c
|
|
|
512
510
|
else {
|
|
513
511
|
throw new Error("No value provided for input HTTP label: resourceArn.");
|
|
514
512
|
}
|
|
515
|
-
body = JSON.stringify(__assign(__assign({}, (input.maxResults !== undefined && input.maxResults !== null && { maxResults: input.maxResults })), (input.nextToken !== undefined && input.nextToken !== null && { nextToken: input.nextToken })));
|
|
516
513
|
return [2, new __HttpRequest({
|
|
517
514
|
protocol: protocol,
|
|
518
515
|
hostname: hostname,
|
|
@@ -2299,7 +2296,6 @@ export var deserializeAws_restJson1ListTagsForResourceCommand = function (output
|
|
|
2299
2296
|
}
|
|
2300
2297
|
contents = {
|
|
2301
2298
|
$metadata: deserializeMetadata(output),
|
|
2302
|
-
nextToken: undefined,
|
|
2303
2299
|
tags: undefined,
|
|
2304
2300
|
};
|
|
2305
2301
|
_a = __expectNonNull;
|
|
@@ -2307,9 +2303,6 @@ export var deserializeAws_restJson1ListTagsForResourceCommand = function (output
|
|
|
2307
2303
|
return [4, parseBody(output.body, context)];
|
|
2308
2304
|
case 1:
|
|
2309
2305
|
data = _a.apply(void 0, [_b.apply(void 0, [_c.sent()]), "body"]);
|
|
2310
|
-
if (data.nextToken !== undefined && data.nextToken !== null) {
|
|
2311
|
-
contents.nextToken = __expectString(data.nextToken);
|
|
2312
|
-
}
|
|
2313
2306
|
if (data.tags !== undefined && data.tags !== null) {
|
|
2314
2307
|
contents.tags = deserializeAws_restJson1Tags(data.tags, context);
|
|
2315
2308
|
}
|
package/dist-types/Ivs.d.ts
CHANGED
|
@@ -30,65 +30,24 @@ import { IvsClient } from "./IvsClient";
|
|
|
30
30
|
* <p>
|
|
31
31
|
* <b>Introduction</b>
|
|
32
32
|
* </p>
|
|
33
|
-
*
|
|
34
33
|
* <p>The Amazon Interactive Video Service (IVS) API is REST compatible, using a standard HTTP
|
|
35
|
-
* API and an
|
|
36
|
-
* responses, including errors.</p>
|
|
37
|
-
*
|
|
38
|
-
*
|
|
39
|
-
*
|
|
34
|
+
* API and an Amazon Web Services EventBridge event stream for responses. JSON is used for both
|
|
35
|
+
* requests and responses, including errors.</p>
|
|
36
|
+
* <p>The API is an Amazon Web Services regional service. For a list of supported regions and
|
|
37
|
+
* Amazon IVS HTTPS service endpoints, see the <a href="https://docs.aws.amazon.com/general/latest/gr/ivs.html">Amazon IVS page</a> in the
|
|
38
|
+
* <i>Amazon Web Services General Reference</i>.</p>
|
|
40
39
|
* <p>
|
|
41
40
|
* <i>
|
|
42
41
|
* <b>All API request parameters and URLs are case sensitive.
|
|
43
42
|
* </b>
|
|
44
43
|
* </i>
|
|
45
44
|
* </p>
|
|
46
|
-
*
|
|
47
45
|
* <p>For a summary of notable documentation changes in each release, see <a href="https://docs.aws.amazon.com/ivs/latest/userguide/doc-history.html"> Document
|
|
48
46
|
* History</a>.</p>
|
|
49
47
|
*
|
|
50
48
|
* <p>
|
|
51
|
-
* <b>Service Endpoints</b>
|
|
52
|
-
* </p>
|
|
53
|
-
* <p>The following are the Amazon IVS service endpoints (all HTTPS): </p>
|
|
54
|
-
* <p>Region name: US West (Oregon)</p>
|
|
55
|
-
* <ul>
|
|
56
|
-
* <li>
|
|
57
|
-
* <p>Region: <code>us-west-2</code>
|
|
58
|
-
* </p>
|
|
59
|
-
* </li>
|
|
60
|
-
* <li>
|
|
61
|
-
* <p>Endpoint: <code>ivs.us-west-2.amazonaws.com</code>
|
|
62
|
-
* </p>
|
|
63
|
-
* </li>
|
|
64
|
-
* </ul>
|
|
65
|
-
* <p>Region name: US East (Virginia)</p>
|
|
66
|
-
* <ul>
|
|
67
|
-
* <li>
|
|
68
|
-
* <p>Region: <code>us-east-1</code>
|
|
69
|
-
* </p>
|
|
70
|
-
* </li>
|
|
71
|
-
* <li>
|
|
72
|
-
* <p>Endpoint: <code>ivs.us-east-1.amazonaws.com</code>
|
|
73
|
-
* </p>
|
|
74
|
-
* </li>
|
|
75
|
-
* </ul>
|
|
76
|
-
* <p>Region name: EU West (Dublin)</p>
|
|
77
|
-
* <ul>
|
|
78
|
-
* <li>
|
|
79
|
-
* <p>Region: <code>eu-west-1</code>
|
|
80
|
-
* </p>
|
|
81
|
-
* </li>
|
|
82
|
-
* <li>
|
|
83
|
-
* <p>Endpoint: <code>ivs.eu-west-1.amazonaws.com</code>
|
|
84
|
-
* </p>
|
|
85
|
-
* </li>
|
|
86
|
-
* </ul>
|
|
87
|
-
*
|
|
88
|
-
* <p>
|
|
89
49
|
* <b>Allowed Header Values</b>
|
|
90
50
|
* </p>
|
|
91
|
-
*
|
|
92
51
|
* <ul>
|
|
93
52
|
* <li>
|
|
94
53
|
* <p>
|
|
@@ -109,13 +68,11 @@ import { IvsClient } from "./IvsClient";
|
|
|
109
68
|
* </code>application/json</p>
|
|
110
69
|
* </li>
|
|
111
70
|
* </ul>
|
|
112
|
-
*
|
|
113
71
|
* <p>
|
|
114
72
|
* <b>Resources</b>
|
|
115
73
|
* </p>
|
|
116
|
-
* <p>The following resources contain information about your IVS live stream (see <a href="https://docs.aws.amazon.com/ivs/latest/userguide/getting-started.html"> Getting Started with
|
|
117
|
-
* IVS</a>):</p>
|
|
118
|
-
*
|
|
74
|
+
* <p>The following resources contain information about your IVS live stream (see <a href="https://docs.aws.amazon.com/ivs/latest/userguide/getting-started.html"> Getting Started with
|
|
75
|
+
* Amazon IVS</a>):</p>
|
|
119
76
|
* <ul>
|
|
120
77
|
* <li>
|
|
121
78
|
* <p>Channel — Stores configuration data related to your live stream. You first create a
|
|
@@ -143,28 +100,21 @@ import { IvsClient } from "./IvsClient";
|
|
|
143
100
|
* configuration. See the Recording Configuration endpoints for more information.</p>
|
|
144
101
|
* </li>
|
|
145
102
|
* </ul>
|
|
146
|
-
*
|
|
147
|
-
*
|
|
148
|
-
*
|
|
149
103
|
* <p>
|
|
150
104
|
* <b>Tagging</b>
|
|
151
105
|
* </p>
|
|
152
|
-
*
|
|
153
|
-
*
|
|
154
|
-
*
|
|
155
|
-
*
|
|
156
|
-
*
|
|
157
|
-
*
|
|
158
|
-
*
|
|
159
|
-
*
|
|
160
|
-
* same tag for different resources to indicate that they are related. You can also use tags to
|
|
161
|
-
* manage access (see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access_tags.html">
|
|
162
|
-
* Access Tags</a>). </p>
|
|
163
|
-
*
|
|
106
|
+
* <p>A <i>tag</i> is a metadata label that you assign to an Amazon Web Services
|
|
107
|
+
* resource. A tag comprises a <i>key</i> and a <i>value</i>, both
|
|
108
|
+
* set by you. For example, you might set a tag as <code>topic:nature</code> to label a
|
|
109
|
+
* particular video category. See <a href="https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html">Tagging Amazon Web Services Resources</a> for
|
|
110
|
+
* more information, including restrictions that apply to tags.</p>
|
|
111
|
+
* <p>Tags can help you identify and organize your Amazon Web Services resources. For example,
|
|
112
|
+
* you can use the same tag for different resources to indicate that they are related. You can
|
|
113
|
+
* also use tags to manage access (see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access_tags.html"> Access Tags</a>). </p>
|
|
164
114
|
* <p>The Amazon IVS API has these tag-related endpoints: <a>TagResource</a>, <a>UntagResource</a>, and <a>ListTagsForResource</a>. The following
|
|
165
115
|
* resources support tagging: Channels, Stream Keys, Playback Key Pairs, and Recording
|
|
166
116
|
* Configurations.</p>
|
|
167
|
-
*
|
|
117
|
+
* <p>At most 50 tags can be applied to a resource. </p>
|
|
168
118
|
* <p>
|
|
169
119
|
* <b>Authentication versus Authorization</b>
|
|
170
120
|
* </p>
|
|
@@ -172,40 +122,39 @@ import { IvsClient } from "./IvsClient";
|
|
|
172
122
|
* <ul>
|
|
173
123
|
* <li>
|
|
174
124
|
* <p>
|
|
175
|
-
* <i>Authentication</i> is about verifying identity. You need to be
|
|
176
|
-
* API requests.</p>
|
|
125
|
+
* <i>Authentication</i> is about verifying identity. You need to be
|
|
126
|
+
* authenticated to sign Amazon IVS API requests.</p>
|
|
177
127
|
* </li>
|
|
178
128
|
* <li>
|
|
179
129
|
* <p>
|
|
180
|
-
* <i>Authorization</i> is about granting permissions. You need to be
|
|
181
|
-
*
|
|
182
|
-
* "playback authorization.")</p>
|
|
130
|
+
* <i>Authorization</i> is about granting permissions. You need to be
|
|
131
|
+
* authorized to view <a href="https://docs.aws.amazon.com/ivs/latest/userguide/private-channels.html">Amazon IVS private channels</a>.
|
|
132
|
+
* (Private channels are channels that are enabled for "playback authorization.")</p>
|
|
183
133
|
* </li>
|
|
184
134
|
* </ul>
|
|
185
|
-
*
|
|
186
135
|
* <p>
|
|
187
136
|
* <b>Authentication</b>
|
|
188
137
|
* </p>
|
|
189
|
-
* <p>All Amazon IVS API requests must be authenticated with a signature. The
|
|
190
|
-
* Interface (CLI) and Amazon IVS Player SDKs take care of signing the underlying
|
|
191
|
-
* you. However, if your application calls the Amazon IVS API directly, it’s your
|
|
192
|
-
* to sign the requests.</p>
|
|
193
|
-
* <p>You generate a signature using valid
|
|
194
|
-
* requested action. For example, you must sign PutMetadata requests with a
|
|
195
|
-
* from an IAM user account that has the <code>ivs:PutMetadata</code>
|
|
138
|
+
* <p>All Amazon IVS API requests must be authenticated with a signature. The Amazon Web Services
|
|
139
|
+
* Command-Line Interface (CLI) and Amazon IVS Player SDKs take care of signing the underlying
|
|
140
|
+
* API calls for you. However, if your application calls the Amazon IVS API directly, it’s your
|
|
141
|
+
* responsibility to sign the requests.</p>
|
|
142
|
+
* <p>You generate a signature using valid Amazon Web Services credentials that have permission
|
|
143
|
+
* to perform the requested action. For example, you must sign PutMetadata requests with a
|
|
144
|
+
* signature generated from an IAM user account that has the <code>ivs:PutMetadata</code>
|
|
145
|
+
* permission.</p>
|
|
196
146
|
* <p>For more information:</p>
|
|
197
147
|
* <ul>
|
|
198
148
|
* <li>
|
|
199
|
-
* <p>Authentication and generating signatures — See <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/sig-v4-authenticating-requests.html">Authenticating Requests
|
|
200
|
-
*
|
|
149
|
+
* <p>Authentication and generating signatures — See <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/sig-v4-authenticating-requests.html">Authenticating Requests
|
|
150
|
+
* (Amazon Web Services Signature Version 4)</a> in the <i>Amazon Web Services
|
|
151
|
+
* General Reference</i>.</p>
|
|
201
152
|
* </li>
|
|
202
153
|
* <li>
|
|
203
|
-
* <p>Managing Amazon IVS permissions — See <a href="https://docs.aws.amazon.com/ivs/latest/userguide/security-iam.html">Identity and Access Management</a> on
|
|
204
|
-
*
|
|
154
|
+
* <p>Managing Amazon IVS permissions — See <a href="https://docs.aws.amazon.com/ivs/latest/userguide/security-iam.html">Identity and Access Management</a> on
|
|
155
|
+
* the Security page of the <i>Amazon IVS User Guide</i>.</p>
|
|
205
156
|
* </li>
|
|
206
157
|
* </ul>
|
|
207
|
-
*
|
|
208
|
-
*
|
|
209
158
|
* <p>
|
|
210
159
|
* <b>Channel Endpoints</b>
|
|
211
160
|
* </p>
|
|
@@ -228,10 +177,10 @@ import { IvsClient } from "./IvsClient";
|
|
|
228
177
|
* <li>
|
|
229
178
|
* <p>
|
|
230
179
|
* <a>ListChannels</a> — Gets summary information about all channels in
|
|
231
|
-
* your account, in the
|
|
232
|
-
* filtered to match a specified name or recording-configuration ARN. Filters are
|
|
233
|
-
* exclusive and cannot be used together. If you try to use both filters, you will
|
|
234
|
-
* error (409 Conflict Exception).</p>
|
|
180
|
+
* your account, in the Amazon Web Services region where the API request is processed. This
|
|
181
|
+
* list can be filtered to match a specified name or recording-configuration ARN. Filters are
|
|
182
|
+
* mutually exclusive and cannot be used together. If you try to use both filters, you will
|
|
183
|
+
* get an error (409 Conflict Exception).</p>
|
|
235
184
|
* </li>
|
|
236
185
|
* <li>
|
|
237
186
|
* <p>
|
|
@@ -244,7 +193,6 @@ import { IvsClient } from "./IvsClient";
|
|
|
244
193
|
* <a>DeleteChannel</a> — Deletes the specified channel.</p>
|
|
245
194
|
* </li>
|
|
246
195
|
* </ul>
|
|
247
|
-
*
|
|
248
196
|
* <p>
|
|
249
197
|
* <b>StreamKey Endpoints</b>
|
|
250
198
|
* </p>
|
|
@@ -275,8 +223,6 @@ import { IvsClient } from "./IvsClient";
|
|
|
275
223
|
* ARN, so it can no longer be used to stream.</p>
|
|
276
224
|
* </li>
|
|
277
225
|
* </ul>
|
|
278
|
-
*
|
|
279
|
-
*
|
|
280
226
|
* <p>
|
|
281
227
|
* <b>Stream Endpoints</b>
|
|
282
228
|
* </p>
|
|
@@ -289,7 +235,7 @@ import { IvsClient } from "./IvsClient";
|
|
|
289
235
|
* <li>
|
|
290
236
|
* <p>
|
|
291
237
|
* <a>ListStreams</a> — Gets summary information about live streams in
|
|
292
|
-
* your account, in the
|
|
238
|
+
* your account, in the Amazon Web Services region where the API request is processed.</p>
|
|
293
239
|
* </li>
|
|
294
240
|
* <li>
|
|
295
241
|
* <p>
|
|
@@ -300,12 +246,12 @@ import { IvsClient } from "./IvsClient";
|
|
|
300
246
|
* <li>
|
|
301
247
|
* <p>
|
|
302
248
|
* <a>PutMetadata</a> — Inserts metadata into the active stream of the
|
|
303
|
-
* specified channel.
|
|
249
|
+
* specified channel. At most 5 requests per second per channel are allowed, each with a
|
|
304
250
|
* maximum 1 KB payload. (If 5 TPS is not sufficient for your needs, we recommend batching
|
|
305
|
-
* your data into a single PutMetadata call.)
|
|
251
|
+
* your data into a single PutMetadata call.) At most 155 requests per second per account are
|
|
252
|
+
* allowed.</p>
|
|
306
253
|
* </li>
|
|
307
254
|
* </ul>
|
|
308
|
-
*
|
|
309
255
|
* <p>
|
|
310
256
|
* <b>PlaybackKeyPair Endpoints</b>
|
|
311
257
|
* </p>
|
|
@@ -317,7 +263,7 @@ import { IvsClient } from "./IvsClient";
|
|
|
317
263
|
* <a>ImportPlaybackKeyPair</a> — Imports the public portion of a new
|
|
318
264
|
* key pair and returns its <code>arn</code> and <code>fingerprint</code>. The
|
|
319
265
|
* <code>privateKey</code> can then be used to generate viewer authorization tokens, to
|
|
320
|
-
* grant viewers access to
|
|
266
|
+
* grant viewers access to private channels (channels enabled for playback
|
|
321
267
|
* authorization).</p>
|
|
322
268
|
* </li>
|
|
323
269
|
* <li>
|
|
@@ -339,26 +285,25 @@ import { IvsClient } from "./IvsClient";
|
|
|
339
285
|
* <code>privateKey</code>.</p>
|
|
340
286
|
* </li>
|
|
341
287
|
* </ul>
|
|
342
|
-
*
|
|
343
288
|
* <p>
|
|
344
289
|
* <b>RecordingConfiguration Endpoints</b>
|
|
345
290
|
* </p>
|
|
346
291
|
* <ul>
|
|
347
292
|
* <li>
|
|
348
293
|
* <p>
|
|
349
|
-
* <a>CreateRecordingConfiguration</a> — Creates a new recording
|
|
350
|
-
* used to enable recording to Amazon S3.</p>
|
|
294
|
+
* <a>CreateRecordingConfiguration</a> — Creates a new recording
|
|
295
|
+
* configuration, used to enable recording to Amazon S3.</p>
|
|
351
296
|
* </li>
|
|
352
297
|
* <li>
|
|
353
298
|
* <p>
|
|
354
|
-
* <a>GetRecordingConfiguration</a> — Gets the recording-configuration
|
|
355
|
-
* for the specified ARN.</p>
|
|
299
|
+
* <a>GetRecordingConfiguration</a> — Gets the recording-configuration
|
|
300
|
+
* metadata for the specified ARN.</p>
|
|
356
301
|
* </li>
|
|
357
302
|
* <li>
|
|
358
303
|
* <p>
|
|
359
|
-
* <a>ListRecordingConfigurations</a> — Gets summary information about
|
|
360
|
-
* recording configurations in your account, in the
|
|
361
|
-
* processed.</p>
|
|
304
|
+
* <a>ListRecordingConfigurations</a> — Gets summary information about
|
|
305
|
+
* all recording configurations in your account, in the Amazon Web Services region where the
|
|
306
|
+
* API request is processed.</p>
|
|
362
307
|
* </li>
|
|
363
308
|
* <li>
|
|
364
309
|
* <p>
|
|
@@ -366,15 +311,14 @@ import { IvsClient } from "./IvsClient";
|
|
|
366
311
|
* configuration for the specified ARN.</p>
|
|
367
312
|
* </li>
|
|
368
313
|
* </ul>
|
|
369
|
-
*
|
|
370
314
|
* <p>
|
|
371
|
-
* <b>
|
|
315
|
+
* <b>Amazon Web Services Tags Endpoints</b>
|
|
372
316
|
* </p>
|
|
373
317
|
* <ul>
|
|
374
318
|
* <li>
|
|
375
319
|
* <p>
|
|
376
|
-
* <a>TagResource</a> — Adds or updates tags for the
|
|
377
|
-
* the specified ARN.</p>
|
|
320
|
+
* <a>TagResource</a> — Adds or updates tags for the Amazon Web Services
|
|
321
|
+
* resource with the specified ARN.</p>
|
|
378
322
|
* </li>
|
|
379
323
|
* <li>
|
|
380
324
|
* <p>
|
|
@@ -383,8 +327,7 @@ import { IvsClient } from "./IvsClient";
|
|
|
383
327
|
* </li>
|
|
384
328
|
* <li>
|
|
385
329
|
* <p>
|
|
386
|
-
* <a>ListTagsForResource</a> — Gets information about
|
|
387
|
-
* specified ARN.</p>
|
|
330
|
+
* <a>ListTagsForResource</a> — Gets information about Amazon Web Services tags for the specified ARN.</p>
|
|
388
331
|
* </li>
|
|
389
332
|
* </ul>
|
|
390
333
|
*/
|
|
@@ -410,7 +353,7 @@ export declare class Ivs extends IvsClient {
|
|
|
410
353
|
/**
|
|
411
354
|
* <p>Creates a new recording configuration, used to enable recording to Amazon S3.</p>
|
|
412
355
|
* <p>
|
|
413
|
-
* <b>Known issue:</b> In the us-east-1 region, if you use the
|
|
356
|
+
* <b>Known issue:</b> In the us-east-1 region, if you use the Amazon Web Services
|
|
414
357
|
* CLI to create a recording configuration, it returns success even if the S3 bucket is in a
|
|
415
358
|
* different region. In this case, the <code>state</code> of the recording configuration is
|
|
416
359
|
* <code>CREATE_FAILED</code> (instead of <code>ACTIVE</code>). (In other regions, the CLI
|
|
@@ -514,7 +457,7 @@ export declare class Ivs extends IvsClient {
|
|
|
514
457
|
importPlaybackKeyPair(args: ImportPlaybackKeyPairCommandInput, cb: (err: any, data?: ImportPlaybackKeyPairCommandOutput) => void): void;
|
|
515
458
|
importPlaybackKeyPair(args: ImportPlaybackKeyPairCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ImportPlaybackKeyPairCommandOutput) => void): void;
|
|
516
459
|
/**
|
|
517
|
-
* <p>Gets summary information about all channels in your account, in the
|
|
460
|
+
* <p>Gets summary information about all channels in your account, in the Amazon Web Services region where the
|
|
518
461
|
* API request is processed. This list can be filtered to match a specified name or
|
|
519
462
|
* recording-configuration ARN. Filters are mutually exclusive and cannot be used together. If
|
|
520
463
|
* you try to use both filters, you will get an error (409 ConflictException).</p>
|
|
@@ -530,7 +473,7 @@ export declare class Ivs extends IvsClient {
|
|
|
530
473
|
listPlaybackKeyPairs(args: ListPlaybackKeyPairsCommandInput, cb: (err: any, data?: ListPlaybackKeyPairsCommandOutput) => void): void;
|
|
531
474
|
listPlaybackKeyPairs(args: ListPlaybackKeyPairsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPlaybackKeyPairsCommandOutput) => void): void;
|
|
532
475
|
/**
|
|
533
|
-
* <p>Gets summary information about all recording configurations in your account, in the
|
|
476
|
+
* <p>Gets summary information about all recording configurations in your account, in the Amazon Web Services
|
|
534
477
|
* region where the API request is processed.</p>
|
|
535
478
|
*/
|
|
536
479
|
listRecordingConfigurations(args: ListRecordingConfigurationsCommandInput, options?: __HttpHandlerOptions): Promise<ListRecordingConfigurationsCommandOutput>;
|
|
@@ -543,26 +486,24 @@ export declare class Ivs extends IvsClient {
|
|
|
543
486
|
listStreamKeys(args: ListStreamKeysCommandInput, cb: (err: any, data?: ListStreamKeysCommandOutput) => void): void;
|
|
544
487
|
listStreamKeys(args: ListStreamKeysCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListStreamKeysCommandOutput) => void): void;
|
|
545
488
|
/**
|
|
546
|
-
* <p>Gets summary information about live streams in your account, in the
|
|
489
|
+
* <p>Gets summary information about live streams in your account, in the Amazon Web Services region where the
|
|
547
490
|
* API request is processed.</p>
|
|
548
491
|
*/
|
|
549
492
|
listStreams(args: ListStreamsCommandInput, options?: __HttpHandlerOptions): Promise<ListStreamsCommandOutput>;
|
|
550
493
|
listStreams(args: ListStreamsCommandInput, cb: (err: any, data?: ListStreamsCommandOutput) => void): void;
|
|
551
494
|
listStreams(args: ListStreamsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListStreamsCommandOutput) => void): void;
|
|
552
495
|
/**
|
|
553
|
-
* <p>Gets information about
|
|
496
|
+
* <p>Gets information about Amazon Web Services tags for the specified ARN.</p>
|
|
554
497
|
*/
|
|
555
498
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
556
499
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
557
500
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
558
501
|
/**
|
|
559
|
-
* <p>Inserts metadata into the active stream of the specified channel.
|
|
560
|
-
*
|
|
561
|
-
*
|
|
562
|
-
*
|
|
563
|
-
*
|
|
564
|
-
*
|
|
565
|
-
* within a Video Stream</a> in the <i>Amazon IVS User Guide</i>.</p>
|
|
502
|
+
* <p>Inserts metadata into the active stream of the specified channel. At most 5 requests per
|
|
503
|
+
* second per channel are allowed, each with a maximum 1 KB payload. (If 5 TPS is not sufficient
|
|
504
|
+
* for your needs, we recommend batching your data into a single PutMetadata call.) At most 155
|
|
505
|
+
* requests per second per account are allowed. Also see <a href="https://docs.aws.amazon.com/ivs/latest/userguide/metadata.html">Embedding Metadata within a Video Stream</a> in
|
|
506
|
+
* the <i>Amazon IVS User Guide</i>.</p>
|
|
566
507
|
*/
|
|
567
508
|
putMetadata(args: PutMetadataCommandInput, options?: __HttpHandlerOptions): Promise<PutMetadataCommandOutput>;
|
|
568
509
|
putMetadata(args: PutMetadataCommandInput, cb: (err: any, data?: PutMetadataCommandOutput) => void): void;
|
|
@@ -581,7 +522,7 @@ export declare class Ivs extends IvsClient {
|
|
|
581
522
|
stopStream(args: StopStreamCommandInput, cb: (err: any, data?: StopStreamCommandOutput) => void): void;
|
|
582
523
|
stopStream(args: StopStreamCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopStreamCommandOutput) => void): void;
|
|
583
524
|
/**
|
|
584
|
-
* <p>Adds or updates tags for the
|
|
525
|
+
* <p>Adds or updates tags for the Amazon Web Services resource with the specified ARN.</p>
|
|
585
526
|
*/
|
|
586
527
|
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
587
528
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|