@aws-sdk/client-ivs-realtime 3.602.0 → 3.606.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 +49 -170
- package/dist-cjs/index.js +198 -0
- package/dist-es/IVSRealTime.js +8 -0
- package/dist-es/commands/DeletePublicKeyCommand.js +24 -0
- package/dist-es/commands/GetPublicKeyCommand.js +24 -0
- package/dist-es/commands/ImportPublicKeyCommand.js +24 -0
- package/dist-es/commands/ListPublicKeysCommand.js +24 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/pagination/ListPublicKeysPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +108 -0
- package/dist-types/IVSRealTime.d.ts +53 -177
- package/dist-types/IVSRealTimeClient.d.ts +30 -179
- package/dist-types/commands/CreateStageCommand.d.ts +4 -0
- package/dist-types/commands/DeletePublicKeyCommand.d.ts +75 -0
- package/dist-types/commands/GetPublicKeyCommand.d.ts +77 -0
- package/dist-types/commands/GetStageCommand.d.ts +4 -0
- package/dist-types/commands/ImportPublicKeyCommand.d.ts +87 -0
- package/dist-types/commands/ListPublicKeysCommand.d.ts +76 -0
- package/dist-types/commands/UpdateStageCommand.d.ts +4 -0
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/index.d.ts +24 -177
- package/dist-types/models/models_0.d.ts +201 -21
- package/dist-types/pagination/ListPublicKeysPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +36 -0
- package/dist-types/ts3.4/IVSRealTime.d.ts +69 -0
- package/dist-types/ts3.4/IVSRealTimeClient.d.ts +24 -0
- package/dist-types/ts3.4/commands/DeletePublicKeyCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/GetPublicKeyCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/ImportPublicKeyCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListPublicKeysCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +43 -0
- package/dist-types/ts3.4/pagination/ListPublicKeysPaginator.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 +48 -0
- package/package.json +3 -3
package/dist-types/index.d.ts
CHANGED
|
@@ -1,46 +1,44 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* <p>
|
|
3
|
-
* <b>Introduction</b>
|
|
4
|
-
* </p>
|
|
5
|
-
* <p>The Amazon Interactive Video Service (IVS) real-time API is REST compatible, using a standard HTTP
|
|
2
|
+
* <p>The Amazon Interactive Video Service (IVS) real-time API is REST compatible, using a standard HTTP
|
|
6
3
|
* API and an AWS EventBridge event stream for responses. JSON is used for both requests and responses,
|
|
7
4
|
* including errors.
|
|
8
5
|
* </p>
|
|
9
|
-
* <p>
|
|
6
|
+
* <p>
|
|
7
|
+
* <b>Key Concepts</b>
|
|
8
|
+
* </p>
|
|
10
9
|
* <ul>
|
|
11
10
|
* <li>
|
|
12
|
-
* <p>
|
|
13
|
-
*
|
|
14
|
-
* <li>
|
|
15
|
-
* <p>A <i>participant token</i> is a token that authenticates a participant when they join a stage.</p>
|
|
16
|
-
* </li>
|
|
17
|
-
* <li>
|
|
18
|
-
* <p>A <i>participant object</i> represents participants (people) in the stage and
|
|
19
|
-
* contains information about them. When a token is created, it includes a participant ID;
|
|
20
|
-
* when a participant uses that token to join a stage, the participant is associated with
|
|
21
|
-
* that participant ID. There is a 1:1 mapping between participant tokens and
|
|
22
|
-
* participants.</p>
|
|
11
|
+
* <p>
|
|
12
|
+
* <b>Stage</b> — A virtual space where participants can exchange video in real time.</p>
|
|
23
13
|
* </li>
|
|
24
14
|
* <li>
|
|
25
|
-
* <p>
|
|
26
|
-
*
|
|
27
|
-
* Composition endpoints support this process.</p>
|
|
15
|
+
* <p>
|
|
16
|
+
* <b>Participant token</b> — A token that authenticates a participant when they join a stage.</p>
|
|
28
17
|
* </li>
|
|
29
18
|
* <li>
|
|
30
|
-
* <p>
|
|
31
|
-
*
|
|
19
|
+
* <p>
|
|
20
|
+
* <b>Participant object</b> — Represents participants (people) in the stage and
|
|
21
|
+
* contains information about them. When a token is created, it includes a participant ID;
|
|
22
|
+
* when a participant uses that token to join a stage, the participant is associated with
|
|
23
|
+
* that participant ID. There is a 1:1 mapping between participant tokens and
|
|
24
|
+
* participants.</p>
|
|
32
25
|
* </li>
|
|
33
26
|
* </ul>
|
|
34
|
-
* <p>
|
|
35
|
-
* <b>Resources</b>
|
|
36
|
-
* </p>
|
|
37
|
-
* <p>The following resources contain information about your IVS live stream (see <a href="https://docs.aws.amazon.com/ivs/latest/RealTimeUserGuide/getting-started.html">Getting Started with Amazon IVS Real-Time Streaming</a>):</p>
|
|
27
|
+
* <p>For server-side composition:</p>
|
|
38
28
|
* <ul>
|
|
39
29
|
* <li>
|
|
40
30
|
* <p>
|
|
41
|
-
* <b>
|
|
31
|
+
* <b>Composition process</b> — Composites participants
|
|
32
|
+
* of a stage into a single video and forwards it to a set of outputs (e.g., IVS channels).
|
|
33
|
+
* Composition endpoints support this process.</p>
|
|
34
|
+
* </li>
|
|
35
|
+
* <li>
|
|
36
|
+
* <p>
|
|
37
|
+
* <b>Composition</b> — Controls the look of the outputs,
|
|
38
|
+
* including how participants are positioned in the video.</p>
|
|
42
39
|
* </li>
|
|
43
40
|
* </ul>
|
|
41
|
+
* <p>For more information about your IVS live stream, also see <a href="https://docs.aws.amazon.com/ivs/latest/RealTimeUserGuide/getting-started.html">Getting Started with Amazon IVS Real-Time Streaming</a>.</p>
|
|
44
42
|
* <p>
|
|
45
43
|
* <b>Tagging</b>
|
|
46
44
|
* </p>
|
|
@@ -56,157 +54,6 @@
|
|
|
56
54
|
* <p>The Amazon IVS real-time API has these tag-related endpoints: <a>TagResource</a>, <a>UntagResource</a>, and
|
|
57
55
|
* <a>ListTagsForResource</a>. The following resource supports tagging: Stage.</p>
|
|
58
56
|
* <p>At most 50 tags can be applied to a resource.</p>
|
|
59
|
-
* <p>
|
|
60
|
-
* <b>Stages Endpoints</b>
|
|
61
|
-
* </p>
|
|
62
|
-
* <ul>
|
|
63
|
-
* <li>
|
|
64
|
-
* <p>
|
|
65
|
-
* <a>CreateParticipantToken</a> — Creates an additional token for a specified stage. This can be done after stage creation or when tokens expire.</p>
|
|
66
|
-
* </li>
|
|
67
|
-
* <li>
|
|
68
|
-
* <p>
|
|
69
|
-
* <a>CreateStage</a> — Creates a new stage (and optionally participant tokens).</p>
|
|
70
|
-
* </li>
|
|
71
|
-
* <li>
|
|
72
|
-
* <p>
|
|
73
|
-
* <a>DeleteStage</a> — Shuts down and deletes the specified stage (disconnecting all participants).</p>
|
|
74
|
-
* </li>
|
|
75
|
-
* <li>
|
|
76
|
-
* <p>
|
|
77
|
-
* <a>DisconnectParticipant</a> — Disconnects a specified participant and revokes the participant permanently from a specified stage.</p>
|
|
78
|
-
* </li>
|
|
79
|
-
* <li>
|
|
80
|
-
* <p>
|
|
81
|
-
* <a>GetParticipant</a> — Gets information about the specified
|
|
82
|
-
* participant token.</p>
|
|
83
|
-
* </li>
|
|
84
|
-
* <li>
|
|
85
|
-
* <p>
|
|
86
|
-
* <a>GetStage</a> — Gets information for the specified stage.</p>
|
|
87
|
-
* </li>
|
|
88
|
-
* <li>
|
|
89
|
-
* <p>
|
|
90
|
-
* <a>GetStageSession</a> — Gets information for the specified stage
|
|
91
|
-
* session.</p>
|
|
92
|
-
* </li>
|
|
93
|
-
* <li>
|
|
94
|
-
* <p>
|
|
95
|
-
* <a>ListParticipantEvents</a> — Lists events for a specified
|
|
96
|
-
* participant that occurred during a specified stage session.</p>
|
|
97
|
-
* </li>
|
|
98
|
-
* <li>
|
|
99
|
-
* <p>
|
|
100
|
-
* <a>ListParticipants</a> — Lists all participants in a specified stage
|
|
101
|
-
* session.</p>
|
|
102
|
-
* </li>
|
|
103
|
-
* <li>
|
|
104
|
-
* <p>
|
|
105
|
-
* <a>ListStages</a> — Gets summary information about all stages in your account, in the AWS region where the API request is processed.</p>
|
|
106
|
-
* </li>
|
|
107
|
-
* <li>
|
|
108
|
-
* <p>
|
|
109
|
-
* <a>ListStageSessions</a> — Gets all sessions for a specified stage.</p>
|
|
110
|
-
* </li>
|
|
111
|
-
* <li>
|
|
112
|
-
* <p>
|
|
113
|
-
* <a>UpdateStage</a> — Updates a stage’s configuration.</p>
|
|
114
|
-
* </li>
|
|
115
|
-
* </ul>
|
|
116
|
-
* <p>
|
|
117
|
-
* <b>Composition Endpoints</b>
|
|
118
|
-
* </p>
|
|
119
|
-
* <ul>
|
|
120
|
-
* <li>
|
|
121
|
-
* <p>
|
|
122
|
-
* <a>GetComposition</a> — Gets information about the specified
|
|
123
|
-
* Composition resource.</p>
|
|
124
|
-
* </li>
|
|
125
|
-
* <li>
|
|
126
|
-
* <p>
|
|
127
|
-
* <a>ListCompositions</a> — Gets summary information about all
|
|
128
|
-
* Compositions in your account, in the AWS region where the API request is processed.</p>
|
|
129
|
-
* </li>
|
|
130
|
-
* <li>
|
|
131
|
-
* <p>
|
|
132
|
-
* <a>StartComposition</a> — Starts a Composition from a stage based on
|
|
133
|
-
* the configuration provided in the request.</p>
|
|
134
|
-
* </li>
|
|
135
|
-
* <li>
|
|
136
|
-
* <p>
|
|
137
|
-
* <a>StopComposition</a> — Stops and deletes a Composition resource.
|
|
138
|
-
* Any broadcast from the Composition resource is stopped.</p>
|
|
139
|
-
* </li>
|
|
140
|
-
* </ul>
|
|
141
|
-
* <p>
|
|
142
|
-
* <b>EncoderConfiguration Endpoints</b>
|
|
143
|
-
* </p>
|
|
144
|
-
* <ul>
|
|
145
|
-
* <li>
|
|
146
|
-
* <p>
|
|
147
|
-
* <a>CreateEncoderConfiguration</a> — Creates an EncoderConfiguration object.</p>
|
|
148
|
-
* </li>
|
|
149
|
-
* <li>
|
|
150
|
-
* <p>
|
|
151
|
-
* <a>DeleteEncoderConfiguration</a> — Deletes an EncoderConfiguration
|
|
152
|
-
* resource. Ensures that no Compositions are using this template; otherwise, returns an
|
|
153
|
-
* error.</p>
|
|
154
|
-
* </li>
|
|
155
|
-
* <li>
|
|
156
|
-
* <p>
|
|
157
|
-
* <a>GetEncoderConfiguration</a> — Gets information about the specified
|
|
158
|
-
* EncoderConfiguration resource.</p>
|
|
159
|
-
* </li>
|
|
160
|
-
* <li>
|
|
161
|
-
* <p>
|
|
162
|
-
* <a>ListEncoderConfigurations</a> — Gets summary information about all
|
|
163
|
-
* EncoderConfigurations in your account, in the AWS region where the API request is
|
|
164
|
-
* processed.</p>
|
|
165
|
-
* </li>
|
|
166
|
-
* </ul>
|
|
167
|
-
* <p>
|
|
168
|
-
* <b>StorageConfiguration Endpoints</b>
|
|
169
|
-
* </p>
|
|
170
|
-
* <ul>
|
|
171
|
-
* <li>
|
|
172
|
-
* <p>
|
|
173
|
-
* <a>CreateStorageConfiguration</a> — Creates a new storage configuration, used to enable
|
|
174
|
-
* recording to Amazon S3.</p>
|
|
175
|
-
* </li>
|
|
176
|
-
* <li>
|
|
177
|
-
* <p>
|
|
178
|
-
* <a>DeleteStorageConfiguration</a> — Deletes the storage configuration for the specified ARN.</p>
|
|
179
|
-
* </li>
|
|
180
|
-
* <li>
|
|
181
|
-
* <p>
|
|
182
|
-
* <a>GetStorageConfiguration</a> — Gets the storage configuration for the specified ARN.</p>
|
|
183
|
-
* </li>
|
|
184
|
-
* <li>
|
|
185
|
-
* <p>
|
|
186
|
-
* <a>ListStorageConfigurations</a> — Gets summary information about all storage configurations in your
|
|
187
|
-
* account, in the AWS region where the API request is processed.</p>
|
|
188
|
-
* </li>
|
|
189
|
-
* </ul>
|
|
190
|
-
* <p>
|
|
191
|
-
* <b>Tags Endpoints</b>
|
|
192
|
-
* </p>
|
|
193
|
-
* <ul>
|
|
194
|
-
* <li>
|
|
195
|
-
* <p>
|
|
196
|
-
* <a>ListTagsForResource</a> — Gets information about AWS tags for the
|
|
197
|
-
* specified ARN.</p>
|
|
198
|
-
* </li>
|
|
199
|
-
* <li>
|
|
200
|
-
* <p>
|
|
201
|
-
* <a>TagResource</a> — Adds or updates tags for the AWS resource with
|
|
202
|
-
* the specified ARN.</p>
|
|
203
|
-
* </li>
|
|
204
|
-
* <li>
|
|
205
|
-
* <p>
|
|
206
|
-
* <a>UntagResource</a> — Removes tags from the resource with the
|
|
207
|
-
* specified ARN.</p>
|
|
208
|
-
* </li>
|
|
209
|
-
* </ul>
|
|
210
57
|
*
|
|
211
58
|
* @packageDocumentation
|
|
212
59
|
*/
|
|
@@ -340,12 +340,12 @@ export declare const ParticipantRecordingMediaType: {
|
|
|
340
340
|
*/
|
|
341
341
|
export type ParticipantRecordingMediaType = (typeof ParticipantRecordingMediaType)[keyof typeof ParticipantRecordingMediaType];
|
|
342
342
|
/**
|
|
343
|
-
* <p>Object specifying
|
|
343
|
+
* <p>Object specifying a configuration for individual participant recording.</p>
|
|
344
344
|
* @public
|
|
345
345
|
*/
|
|
346
346
|
export interface AutoParticipantRecordingConfiguration {
|
|
347
347
|
/**
|
|
348
|
-
* <p>ARN of the <a>StorageConfiguration</a> resource to use for
|
|
348
|
+
* <p>ARN of the <a>StorageConfiguration</a> resource to use for individual participant recording. Default: <code>""</code> (empty string, no storage configuration is specified). Individual participant recording cannot be started unless a storage configuration is specified, when a <a>Stage</a> is created or updated.</p>
|
|
349
349
|
* @public
|
|
350
350
|
*/
|
|
351
351
|
storageConfigurationArn: string | undefined;
|
|
@@ -415,11 +415,27 @@ export interface CreateStageRequest {
|
|
|
415
415
|
*/
|
|
416
416
|
tags?: Record<string, string>;
|
|
417
417
|
/**
|
|
418
|
-
* <p>
|
|
418
|
+
* <p>Configuration object for individual participant recording, to attach to the new stage.</p>
|
|
419
419
|
* @public
|
|
420
420
|
*/
|
|
421
421
|
autoParticipantRecordingConfiguration?: AutoParticipantRecordingConfiguration;
|
|
422
422
|
}
|
|
423
|
+
/**
|
|
424
|
+
* <p>Summary information about various endpoints for a stage.</p>
|
|
425
|
+
* @public
|
|
426
|
+
*/
|
|
427
|
+
export interface StageEndpoints {
|
|
428
|
+
/**
|
|
429
|
+
* <p>Events endpoint.</p>
|
|
430
|
+
* @public
|
|
431
|
+
*/
|
|
432
|
+
events?: string;
|
|
433
|
+
/**
|
|
434
|
+
* <p>WHIP endpoint.</p>
|
|
435
|
+
* @public
|
|
436
|
+
*/
|
|
437
|
+
whip?: string;
|
|
438
|
+
}
|
|
423
439
|
/**
|
|
424
440
|
* <p>Object specifying a stage.</p>
|
|
425
441
|
* @public
|
|
@@ -450,10 +466,15 @@ export interface Stage {
|
|
|
450
466
|
*/
|
|
451
467
|
tags?: Record<string, string>;
|
|
452
468
|
/**
|
|
453
|
-
* <p>
|
|
469
|
+
* <p>Configuration object for individual participant recording, attached to the stage.</p>
|
|
454
470
|
* @public
|
|
455
471
|
*/
|
|
456
472
|
autoParticipantRecordingConfiguration?: AutoParticipantRecordingConfiguration;
|
|
473
|
+
/**
|
|
474
|
+
* <p>Summary information about various endpoints for a stage.</p>
|
|
475
|
+
* @public
|
|
476
|
+
*/
|
|
477
|
+
endpoints?: StageEndpoints;
|
|
457
478
|
}
|
|
458
479
|
/**
|
|
459
480
|
* @public
|
|
@@ -562,6 +583,21 @@ export interface DeleteEncoderConfigurationRequest {
|
|
|
562
583
|
*/
|
|
563
584
|
export interface DeleteEncoderConfigurationResponse {
|
|
564
585
|
}
|
|
586
|
+
/**
|
|
587
|
+
* @public
|
|
588
|
+
*/
|
|
589
|
+
export interface DeletePublicKeyRequest {
|
|
590
|
+
/**
|
|
591
|
+
* <p>ARN of the public key to be deleted.</p>
|
|
592
|
+
* @public
|
|
593
|
+
*/
|
|
594
|
+
arn: string | undefined;
|
|
595
|
+
}
|
|
596
|
+
/**
|
|
597
|
+
* @public
|
|
598
|
+
*/
|
|
599
|
+
export interface DeletePublicKeyResponse {
|
|
600
|
+
}
|
|
565
601
|
/**
|
|
566
602
|
* @public
|
|
567
603
|
*/
|
|
@@ -828,7 +864,7 @@ export interface GridConfiguration {
|
|
|
828
864
|
/**
|
|
829
865
|
* <p>This attribute name identifies the featured slot. A participant with this attribute set
|
|
830
866
|
* to <code>"true"</code> (as a string value) in <a>ParticipantTokenConfiguration</a> is placed in the featured
|
|
831
|
-
* slot.</p>
|
|
867
|
+
* slot. Default: <code>""</code> (no featured participant).</p>
|
|
832
868
|
* @public
|
|
833
869
|
*/
|
|
834
870
|
featuredParticipantAttribute?: string;
|
|
@@ -838,14 +874,15 @@ export interface GridConfiguration {
|
|
|
838
874
|
*/
|
|
839
875
|
omitStoppedVideo?: boolean;
|
|
840
876
|
/**
|
|
841
|
-
* <p>Sets the non-featured participant display mode. Default: <code>VIDEO</code>.</p>
|
|
877
|
+
* <p>Sets the non-featured participant display mode, to control the aspect ratio of video tiles. <code>VIDEO</code> is 16:9, <code>SQUARE</code> is 1:1, and <code>PORTRAIT</code> is 3:4. Default: <code>VIDEO</code>.</p>
|
|
842
878
|
* @public
|
|
843
879
|
*/
|
|
844
880
|
videoAspectRatio?: VideoAspectRatio;
|
|
845
881
|
/**
|
|
846
|
-
* <p>Defines how video fits within the participant tile
|
|
847
|
-
*
|
|
848
|
-
*
|
|
882
|
+
* <p>Defines how video content fits within the participant tile: <code>FILL</code> (stretched), <code>COVER</code> (cropped),
|
|
883
|
+
* or <code>CONTAIN</code> (letterboxed). When not set,
|
|
884
|
+
* <code>videoFillMode</code> defaults to <code>COVER</code> fill mode for participants in the grid
|
|
885
|
+
* and to <code>CONTAIN</code> fill mode for featured participants.</p>
|
|
849
886
|
* @public
|
|
850
887
|
*/
|
|
851
888
|
videoFillMode?: VideoFillMode;
|
|
@@ -891,7 +928,7 @@ export interface PipConfiguration {
|
|
|
891
928
|
/**
|
|
892
929
|
* <p>This attribute name identifies the featured slot. A participant with this attribute set
|
|
893
930
|
* to <code>"true"</code> (as a string value) in <a>ParticipantTokenConfiguration</a> is placed in the featured
|
|
894
|
-
* slot.</p>
|
|
931
|
+
* slot. Default: <code>""</code> (no featured participant).</p>
|
|
895
932
|
* @public
|
|
896
933
|
*/
|
|
897
934
|
featuredParticipantAttribute?: string;
|
|
@@ -901,8 +938,8 @@ export interface PipConfiguration {
|
|
|
901
938
|
*/
|
|
902
939
|
omitStoppedVideo?: boolean;
|
|
903
940
|
/**
|
|
904
|
-
* <p>Defines how video fits within the participant tile
|
|
905
|
-
* </p>
|
|
941
|
+
* <p>Defines how video content fits within the participant tile: <code>FILL</code> (stretched),
|
|
942
|
+
* <code>COVER</code> (cropped), or <code>CONTAIN</code> (letterboxed). Default: <code>COVER</code>.</p>
|
|
906
943
|
* @public
|
|
907
944
|
*/
|
|
908
945
|
videoFillMode?: VideoFillMode;
|
|
@@ -912,14 +949,14 @@ export interface PipConfiguration {
|
|
|
912
949
|
*/
|
|
913
950
|
gridGap?: number;
|
|
914
951
|
/**
|
|
915
|
-
* <p>
|
|
952
|
+
* <p>Specifies the participant for the PiP window. A participant with this attribute set
|
|
916
953
|
* to <code>"true"</code> (as a string value) in <a>ParticipantTokenConfiguration</a>
|
|
917
|
-
*
|
|
954
|
+
* is placed in the PiP slot. Default: <code>""</code> (no PiP participant).</p>
|
|
918
955
|
* @public
|
|
919
956
|
*/
|
|
920
957
|
pipParticipantAttribute?: string;
|
|
921
958
|
/**
|
|
922
|
-
* <p>Defines PiP behavior when all participants have left. Default: <code>STATIC</code>.</p>
|
|
959
|
+
* <p>Defines PiP behavior when all participants have left: <code>STATIC</code> (maintains original position/size) or <code>DYNAMIC</code> (expands to full composition). Default: <code>STATIC</code>.</p>
|
|
923
960
|
* @public
|
|
924
961
|
*/
|
|
925
962
|
pipBehavior?: PipBehavior;
|
|
@@ -1184,17 +1221,17 @@ export interface Participant {
|
|
|
1184
1221
|
*/
|
|
1185
1222
|
sdkVersion?: string;
|
|
1186
1223
|
/**
|
|
1187
|
-
* <p>Name of the S3 bucket to where the participant is being recorded, if individual participant recording is enabled, or "" (empty string), if recording is not enabled.</p>
|
|
1224
|
+
* <p>Name of the S3 bucket to where the participant is being recorded, if individual participant recording is enabled, or <code>""</code> (empty string), if recording is not enabled.</p>
|
|
1188
1225
|
* @public
|
|
1189
1226
|
*/
|
|
1190
1227
|
recordingS3BucketName?: string;
|
|
1191
1228
|
/**
|
|
1192
|
-
* <p>S3 prefix of the S3 bucket
|
|
1229
|
+
* <p>S3 prefix of the S3 bucket where the participant is being recorded, if individual participant recording is enabled, or <code>""</code> (empty string), if recording is not enabled.</p>
|
|
1193
1230
|
* @public
|
|
1194
1231
|
*/
|
|
1195
1232
|
recordingS3Prefix?: string;
|
|
1196
1233
|
/**
|
|
1197
|
-
* <p>
|
|
1234
|
+
* <p>The participant’s recording state.</p>
|
|
1198
1235
|
* @public
|
|
1199
1236
|
*/
|
|
1200
1237
|
recordingState?: ParticipantRecordingState;
|
|
@@ -1209,6 +1246,61 @@ export interface GetParticipantResponse {
|
|
|
1209
1246
|
*/
|
|
1210
1247
|
participant?: Participant;
|
|
1211
1248
|
}
|
|
1249
|
+
/**
|
|
1250
|
+
* @public
|
|
1251
|
+
*/
|
|
1252
|
+
export interface GetPublicKeyRequest {
|
|
1253
|
+
/**
|
|
1254
|
+
* <p>ARN of the public key for which the information is to be retrieved.</p>
|
|
1255
|
+
* @public
|
|
1256
|
+
*/
|
|
1257
|
+
arn: string | undefined;
|
|
1258
|
+
}
|
|
1259
|
+
/**
|
|
1260
|
+
* <p>Object specifying a public key used to sign stage participant tokens.</p>
|
|
1261
|
+
* @public
|
|
1262
|
+
*/
|
|
1263
|
+
export interface PublicKey {
|
|
1264
|
+
/**
|
|
1265
|
+
* <p>Public key ARN.</p>
|
|
1266
|
+
* @public
|
|
1267
|
+
*/
|
|
1268
|
+
arn?: string;
|
|
1269
|
+
/**
|
|
1270
|
+
* <p>Public key name.</p>
|
|
1271
|
+
* @public
|
|
1272
|
+
*/
|
|
1273
|
+
name?: string;
|
|
1274
|
+
/**
|
|
1275
|
+
* <p>Public key material.</p>
|
|
1276
|
+
* @public
|
|
1277
|
+
*/
|
|
1278
|
+
publicKeyMaterial?: string;
|
|
1279
|
+
/**
|
|
1280
|
+
* <p>The public key fingerprint, a short string used to identify or verify the full public key.</p>
|
|
1281
|
+
* @public
|
|
1282
|
+
*/
|
|
1283
|
+
fingerprint?: string;
|
|
1284
|
+
/**
|
|
1285
|
+
* <p>Tags attached to the resource. Array of maps, each of the form <code>string:string
|
|
1286
|
+
* (key:value)</code>. See <a href="https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html">Tagging AWS
|
|
1287
|
+
* Resources</a> for details, including restrictions that apply to tags and "Tag naming
|
|
1288
|
+
* limits and requirements"; Amazon IVS has no constraints on tags beyond what is documented
|
|
1289
|
+
* there.</p>
|
|
1290
|
+
* @public
|
|
1291
|
+
*/
|
|
1292
|
+
tags?: Record<string, string>;
|
|
1293
|
+
}
|
|
1294
|
+
/**
|
|
1295
|
+
* @public
|
|
1296
|
+
*/
|
|
1297
|
+
export interface GetPublicKeyResponse {
|
|
1298
|
+
/**
|
|
1299
|
+
* <p>The public key that is returned.</p>
|
|
1300
|
+
* @public
|
|
1301
|
+
*/
|
|
1302
|
+
publicKey?: PublicKey;
|
|
1303
|
+
}
|
|
1212
1304
|
/**
|
|
1213
1305
|
* @public
|
|
1214
1306
|
*/
|
|
@@ -1299,6 +1391,40 @@ export interface GetStorageConfigurationResponse {
|
|
|
1299
1391
|
*/
|
|
1300
1392
|
storageConfiguration?: StorageConfiguration;
|
|
1301
1393
|
}
|
|
1394
|
+
/**
|
|
1395
|
+
* @public
|
|
1396
|
+
*/
|
|
1397
|
+
export interface ImportPublicKeyRequest {
|
|
1398
|
+
/**
|
|
1399
|
+
* <p>The content of the public key to be imported.</p>
|
|
1400
|
+
* @public
|
|
1401
|
+
*/
|
|
1402
|
+
publicKeyMaterial: string | undefined;
|
|
1403
|
+
/**
|
|
1404
|
+
* <p>Name of the public key to be imported.</p>
|
|
1405
|
+
* @public
|
|
1406
|
+
*/
|
|
1407
|
+
name?: string;
|
|
1408
|
+
/**
|
|
1409
|
+
* <p>Tags attached to the resource. Array of maps, each of the form <code>string:string
|
|
1410
|
+
* (key:value)</code>. See <a href="https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html">Tagging AWS
|
|
1411
|
+
* Resources</a> for details, including restrictions that apply to tags and "Tag naming
|
|
1412
|
+
* limits and requirements"; Amazon IVS has no constraints on tags beyond what is documented
|
|
1413
|
+
* there.</p>
|
|
1414
|
+
* @public
|
|
1415
|
+
*/
|
|
1416
|
+
tags?: Record<string, string>;
|
|
1417
|
+
}
|
|
1418
|
+
/**
|
|
1419
|
+
* @public
|
|
1420
|
+
*/
|
|
1421
|
+
export interface ImportPublicKeyResponse {
|
|
1422
|
+
/**
|
|
1423
|
+
* <p>The public key that was imported.</p>
|
|
1424
|
+
* @public
|
|
1425
|
+
*/
|
|
1426
|
+
publicKey?: PublicKey;
|
|
1427
|
+
}
|
|
1302
1428
|
/**
|
|
1303
1429
|
* @public
|
|
1304
1430
|
*/
|
|
@@ -1701,7 +1827,7 @@ export interface ParticipantSummary {
|
|
|
1701
1827
|
*/
|
|
1702
1828
|
published?: boolean;
|
|
1703
1829
|
/**
|
|
1704
|
-
* <p>
|
|
1830
|
+
* <p>The participant’s recording state.</p>
|
|
1705
1831
|
* @public
|
|
1706
1832
|
*/
|
|
1707
1833
|
recordingState?: ParticipantRecordingState;
|
|
@@ -1722,6 +1848,61 @@ export interface ListParticipantsResponse {
|
|
|
1722
1848
|
*/
|
|
1723
1849
|
nextToken?: string;
|
|
1724
1850
|
}
|
|
1851
|
+
/**
|
|
1852
|
+
* @public
|
|
1853
|
+
*/
|
|
1854
|
+
export interface ListPublicKeysRequest {
|
|
1855
|
+
/**
|
|
1856
|
+
* <p>The first public key to retrieve. This is used for pagination; see the <code>nextToken</code> response field.</p>
|
|
1857
|
+
* @public
|
|
1858
|
+
*/
|
|
1859
|
+
nextToken?: string;
|
|
1860
|
+
/**
|
|
1861
|
+
* <p>Maximum number of results to return. Default: 50.</p>
|
|
1862
|
+
* @public
|
|
1863
|
+
*/
|
|
1864
|
+
maxResults?: number;
|
|
1865
|
+
}
|
|
1866
|
+
/**
|
|
1867
|
+
* <p>Summary information about a public key.</p>
|
|
1868
|
+
* @public
|
|
1869
|
+
*/
|
|
1870
|
+
export interface PublicKeySummary {
|
|
1871
|
+
/**
|
|
1872
|
+
* <p>Public key ARN.</p>
|
|
1873
|
+
* @public
|
|
1874
|
+
*/
|
|
1875
|
+
arn?: string;
|
|
1876
|
+
/**
|
|
1877
|
+
* <p>Public key name.</p>
|
|
1878
|
+
* @public
|
|
1879
|
+
*/
|
|
1880
|
+
name?: string;
|
|
1881
|
+
/**
|
|
1882
|
+
* <p>Tags attached to the resource. Array of maps, each of the form <code>string:string
|
|
1883
|
+
* (key:value)</code>. See <a href="https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html">Tagging AWS
|
|
1884
|
+
* Resources</a> for details, including restrictions that apply to tags and "Tag naming
|
|
1885
|
+
* limits and requirements"; Amazon IVS has no constraints on tags beyond what is documented
|
|
1886
|
+
* there.</p>
|
|
1887
|
+
* @public
|
|
1888
|
+
*/
|
|
1889
|
+
tags?: Record<string, string>;
|
|
1890
|
+
}
|
|
1891
|
+
/**
|
|
1892
|
+
* @public
|
|
1893
|
+
*/
|
|
1894
|
+
export interface ListPublicKeysResponse {
|
|
1895
|
+
/**
|
|
1896
|
+
* <p>List of the matching public keys (summary information only).</p>
|
|
1897
|
+
* @public
|
|
1898
|
+
*/
|
|
1899
|
+
publicKeys: PublicKeySummary[] | undefined;
|
|
1900
|
+
/**
|
|
1901
|
+
* <p>If there are more public keys than <code>maxResults</code>, use <code>nextToken</code> in the request to get the next set.</p>
|
|
1902
|
+
* @public
|
|
1903
|
+
*/
|
|
1904
|
+
nextToken?: string;
|
|
1905
|
+
}
|
|
1725
1906
|
/**
|
|
1726
1907
|
* @public
|
|
1727
1908
|
*/
|
|
@@ -2049,8 +2230,7 @@ export interface UpdateStageRequest {
|
|
|
2049
2230
|
*/
|
|
2050
2231
|
name?: string;
|
|
2051
2232
|
/**
|
|
2052
|
-
* <p>
|
|
2053
|
-
* Auto-participant-recording configuration cannot be updated while recording is active.</p>
|
|
2233
|
+
* <p>Configuration object for individual participant recording, to attach to the stage. Note that this cannot be updated while recording is active.</p>
|
|
2054
2234
|
* @public
|
|
2055
2235
|
*/
|
|
2056
2236
|
autoParticipantRecordingConfiguration?: AutoParticipantRecordingConfiguration;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListPublicKeysCommandInput, ListPublicKeysCommandOutput } from "../commands/ListPublicKeysCommand";
|
|
3
|
+
import { IVSRealTimePaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListPublicKeys: (config: IVSRealTimePaginationConfiguration, input: ListPublicKeysCommandInput, ...rest: any[]) => Paginator<ListPublicKeysCommandOutput>;
|
|
@@ -3,6 +3,7 @@ export * from "./ListCompositionsPaginator";
|
|
|
3
3
|
export * from "./ListEncoderConfigurationsPaginator";
|
|
4
4
|
export * from "./ListParticipantEventsPaginator";
|
|
5
5
|
export * from "./ListParticipantsPaginator";
|
|
6
|
+
export * from "./ListPublicKeysPaginator";
|
|
6
7
|
export * from "./ListStageSessionsPaginator";
|
|
7
8
|
export * from "./ListStagesPaginator";
|
|
8
9
|
export * from "./ListStorageConfigurationsPaginator";
|