cdk-comprehend-s3olap 2.0.151 → 2.0.152

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.
@@ -134,6 +134,49 @@
134
134
  "members": {}
135
135
  }
136
136
  },
137
+ "GetParticipant": {
138
+ "http": {
139
+ "requestUri": "/GetParticipant",
140
+ "responseCode": 200
141
+ },
142
+ "input": {
143
+ "type": "structure",
144
+ "required": [
145
+ "participantId",
146
+ "sessionId",
147
+ "stageArn"
148
+ ],
149
+ "members": {
150
+ "participantId": {},
151
+ "sessionId": {},
152
+ "stageArn": {}
153
+ }
154
+ },
155
+ "output": {
156
+ "type": "structure",
157
+ "members": {
158
+ "participant": {
159
+ "type": "structure",
160
+ "members": {
161
+ "attributes": {
162
+ "type": "map",
163
+ "key": {},
164
+ "value": {}
165
+ },
166
+ "firstJoinTime": {
167
+ "shape": "Sz"
168
+ },
169
+ "participantId": {},
170
+ "published": {
171
+ "type": "boolean"
172
+ },
173
+ "state": {},
174
+ "userId": {}
175
+ }
176
+ }
177
+ }
178
+ }
179
+ },
137
180
  "GetStage": {
138
181
  "http": {
139
182
  "requestUri": "/GetStage",
@@ -157,6 +200,182 @@
157
200
  }
158
201
  }
159
202
  },
203
+ "GetStageSession": {
204
+ "http": {
205
+ "requestUri": "/GetStageSession",
206
+ "responseCode": 200
207
+ },
208
+ "input": {
209
+ "type": "structure",
210
+ "required": [
211
+ "sessionId",
212
+ "stageArn"
213
+ ],
214
+ "members": {
215
+ "sessionId": {},
216
+ "stageArn": {}
217
+ }
218
+ },
219
+ "output": {
220
+ "type": "structure",
221
+ "members": {
222
+ "stageSession": {
223
+ "type": "structure",
224
+ "members": {
225
+ "endTime": {
226
+ "shape": "Sz"
227
+ },
228
+ "sessionId": {},
229
+ "startTime": {
230
+ "shape": "Sz"
231
+ }
232
+ }
233
+ }
234
+ }
235
+ }
236
+ },
237
+ "ListParticipantEvents": {
238
+ "http": {
239
+ "requestUri": "/ListParticipantEvents",
240
+ "responseCode": 200
241
+ },
242
+ "input": {
243
+ "type": "structure",
244
+ "required": [
245
+ "participantId",
246
+ "sessionId",
247
+ "stageArn"
248
+ ],
249
+ "members": {
250
+ "maxResults": {
251
+ "type": "integer"
252
+ },
253
+ "nextToken": {},
254
+ "participantId": {},
255
+ "sessionId": {},
256
+ "stageArn": {}
257
+ }
258
+ },
259
+ "output": {
260
+ "type": "structure",
261
+ "required": [
262
+ "events"
263
+ ],
264
+ "members": {
265
+ "events": {
266
+ "type": "list",
267
+ "member": {
268
+ "type": "structure",
269
+ "members": {
270
+ "errorCode": {},
271
+ "eventTime": {
272
+ "shape": "Sz"
273
+ },
274
+ "name": {},
275
+ "participantId": {},
276
+ "remoteParticipantId": {}
277
+ }
278
+ }
279
+ },
280
+ "nextToken": {}
281
+ }
282
+ }
283
+ },
284
+ "ListParticipants": {
285
+ "http": {
286
+ "requestUri": "/ListParticipants",
287
+ "responseCode": 200
288
+ },
289
+ "input": {
290
+ "type": "structure",
291
+ "required": [
292
+ "sessionId",
293
+ "stageArn"
294
+ ],
295
+ "members": {
296
+ "filterByPublished": {
297
+ "type": "boolean"
298
+ },
299
+ "filterByState": {},
300
+ "filterByUserId": {},
301
+ "maxResults": {
302
+ "type": "integer"
303
+ },
304
+ "nextToken": {},
305
+ "sessionId": {},
306
+ "stageArn": {}
307
+ }
308
+ },
309
+ "output": {
310
+ "type": "structure",
311
+ "required": [
312
+ "participants"
313
+ ],
314
+ "members": {
315
+ "nextToken": {},
316
+ "participants": {
317
+ "type": "list",
318
+ "member": {
319
+ "type": "structure",
320
+ "members": {
321
+ "firstJoinTime": {
322
+ "shape": "Sz"
323
+ },
324
+ "participantId": {},
325
+ "published": {
326
+ "type": "boolean"
327
+ },
328
+ "state": {},
329
+ "userId": {}
330
+ }
331
+ }
332
+ }
333
+ }
334
+ }
335
+ },
336
+ "ListStageSessions": {
337
+ "http": {
338
+ "requestUri": "/ListStageSessions",
339
+ "responseCode": 200
340
+ },
341
+ "input": {
342
+ "type": "structure",
343
+ "required": [
344
+ "stageArn"
345
+ ],
346
+ "members": {
347
+ "maxResults": {
348
+ "type": "integer"
349
+ },
350
+ "nextToken": {},
351
+ "stageArn": {}
352
+ }
353
+ },
354
+ "output": {
355
+ "type": "structure",
356
+ "required": [
357
+ "stageSessions"
358
+ ],
359
+ "members": {
360
+ "nextToken": {},
361
+ "stageSessions": {
362
+ "type": "list",
363
+ "member": {
364
+ "type": "structure",
365
+ "members": {
366
+ "endTime": {
367
+ "shape": "Sz"
368
+ },
369
+ "sessionId": {},
370
+ "startTime": {
371
+ "shape": "Sz"
372
+ }
373
+ }
374
+ }
375
+ }
376
+ }
377
+ }
378
+ },
160
379
  "ListStages": {
161
380
  "http": {
162
381
  "requestUri": "/ListStages",
@@ -362,6 +581,10 @@
362
581
  "shape": "Si"
363
582
  }
364
583
  }
584
+ },
585
+ "Sz": {
586
+ "type": "timestamp",
587
+ "timestampFormat": "iso8601"
365
588
  }
366
589
  }
367
590
  }
@@ -1,5 +1,20 @@
1
1
  {
2
2
  "pagination": {
3
+ "ListParticipantEvents": {
4
+ "input_token": "nextToken",
5
+ "output_token": "nextToken",
6
+ "limit_key": "maxResults"
7
+ },
8
+ "ListParticipants": {
9
+ "input_token": "nextToken",
10
+ "output_token": "nextToken",
11
+ "limit_key": "maxResults"
12
+ },
13
+ "ListStageSessions": {
14
+ "input_token": "nextToken",
15
+ "output_token": "nextToken",
16
+ "limit_key": "maxResults"
17
+ },
3
18
  "ListStages": {
4
19
  "input_token": "nextToken",
5
20
  "output_token": "nextToken",