cdk-docker-image-deployment 0.0.200 → 0.0.201

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.
Files changed (43) hide show
  1. package/.jsii +4 -4
  2. package/lib/destination.js +1 -1
  3. package/lib/docker-image-deployment.js +1 -1
  4. package/lib/source.js +1 -1
  5. package/node_modules/aws-sdk/CHANGELOG.md +15 -1
  6. package/node_modules/aws-sdk/README.md +1 -1
  7. package/node_modules/aws-sdk/apis/batch-2016-08-10.min.json +74 -41
  8. package/node_modules/aws-sdk/apis/chime-sdk-identity-2021-04-20.min.json +314 -64
  9. package/node_modules/aws-sdk/apis/chime-sdk-identity-2021-04-20.paginators.json +5 -0
  10. package/node_modules/aws-sdk/apis/chime-sdk-media-pipelines-2021-07-15.min.json +599 -8
  11. package/node_modules/aws-sdk/apis/chime-sdk-media-pipelines-2021-07-15.paginators.json +5 -0
  12. package/node_modules/aws-sdk/apis/chime-sdk-messaging-2021-05-15.min.json +162 -88
  13. package/node_modules/aws-sdk/apis/chime-sdk-voice-2022-08-03.min.json +758 -44
  14. package/node_modules/aws-sdk/apis/chime-sdk-voice-2022-08-03.paginators.json +10 -0
  15. package/node_modules/aws-sdk/apis/codeartifact-2018-09-22.min.json +35 -29
  16. package/node_modules/aws-sdk/apis/guardduty-2017-11-28.min.json +69 -61
  17. package/node_modules/aws-sdk/apis/ivs-realtime-2020-07-14.examples.json +5 -0
  18. package/node_modules/aws-sdk/apis/ivs-realtime-2020-07-14.min.json +363 -0
  19. package/node_modules/aws-sdk/apis/ivs-realtime-2020-07-14.paginators.json +9 -0
  20. package/node_modules/aws-sdk/apis/metadata.json +4 -0
  21. package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +1061 -880
  22. package/node_modules/aws-sdk/clients/all.d.ts +1 -0
  23. package/node_modules/aws-sdk/clients/all.js +2 -1
  24. package/node_modules/aws-sdk/clients/batch.d.ts +25 -8
  25. package/node_modules/aws-sdk/clients/chimesdkidentity.d.ts +266 -11
  26. package/node_modules/aws-sdk/clients/chimesdkmediapipelines.d.ts +696 -14
  27. package/node_modules/aws-sdk/clients/chimesdkmessaging.d.ts +180 -107
  28. package/node_modules/aws-sdk/clients/chimesdkvoice.d.ts +364 -0
  29. package/node_modules/aws-sdk/clients/codeartifact.d.ts +29 -21
  30. package/node_modules/aws-sdk/clients/guardduty.d.ts +22 -13
  31. package/node_modules/aws-sdk/clients/ivsrealtime.d.ts +379 -0
  32. package/node_modules/aws-sdk/clients/ivsrealtime.js +18 -0
  33. package/node_modules/aws-sdk/clients/mediaconvert.d.ts +2 -2
  34. package/node_modules/aws-sdk/clients/sagemaker.d.ts +219 -14
  35. package/node_modules/aws-sdk/clients/textract.d.ts +13 -13
  36. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
  37. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +52 -15
  38. package/node_modules/aws-sdk/dist/aws-sdk.js +7 -3
  39. package/node_modules/aws-sdk/dist/aws-sdk.min.js +12 -12
  40. package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +2 -0
  41. package/node_modules/aws-sdk/lib/core.js +1 -1
  42. package/node_modules/aws-sdk/package.json +1 -1
  43. package/package.json +6 -6
@@ -0,0 +1,363 @@
1
+ {
2
+ "version": "2.0",
3
+ "metadata": {
4
+ "apiVersion": "2020-07-14",
5
+ "endpointPrefix": "ivsrealtime",
6
+ "jsonVersion": "1.1",
7
+ "protocol": "rest-json",
8
+ "serviceAbbreviation": "ivsrealtime",
9
+ "serviceFullName": "Amazon Interactive Video Service RealTime",
10
+ "serviceId": "IVS RealTime",
11
+ "signatureVersion": "v4",
12
+ "signingName": "ivs",
13
+ "uid": "ivs-realtime-2020-07-14"
14
+ },
15
+ "operations": {
16
+ "CreateParticipantToken": {
17
+ "http": {
18
+ "requestUri": "/CreateParticipantToken",
19
+ "responseCode": 200
20
+ },
21
+ "input": {
22
+ "type": "structure",
23
+ "required": [
24
+ "stageArn"
25
+ ],
26
+ "members": {
27
+ "attributes": {
28
+ "shape": "S2"
29
+ },
30
+ "capabilities": {
31
+ "shape": "S4"
32
+ },
33
+ "duration": {
34
+ "type": "integer"
35
+ },
36
+ "stageArn": {},
37
+ "userId": {}
38
+ }
39
+ },
40
+ "output": {
41
+ "type": "structure",
42
+ "members": {
43
+ "participantToken": {
44
+ "shape": "Sa"
45
+ }
46
+ }
47
+ }
48
+ },
49
+ "CreateStage": {
50
+ "http": {
51
+ "requestUri": "/CreateStage",
52
+ "responseCode": 200
53
+ },
54
+ "input": {
55
+ "type": "structure",
56
+ "members": {
57
+ "name": {},
58
+ "participantTokenConfigurations": {
59
+ "type": "list",
60
+ "member": {
61
+ "type": "structure",
62
+ "members": {
63
+ "attributes": {
64
+ "shape": "S2"
65
+ },
66
+ "capabilities": {
67
+ "shape": "S4"
68
+ },
69
+ "duration": {
70
+ "type": "integer"
71
+ },
72
+ "userId": {}
73
+ }
74
+ }
75
+ },
76
+ "tags": {
77
+ "shape": "Si"
78
+ }
79
+ }
80
+ },
81
+ "output": {
82
+ "type": "structure",
83
+ "members": {
84
+ "participantTokens": {
85
+ "type": "list",
86
+ "member": {
87
+ "shape": "Sa"
88
+ }
89
+ },
90
+ "stage": {
91
+ "shape": "Sn"
92
+ }
93
+ }
94
+ }
95
+ },
96
+ "DeleteStage": {
97
+ "http": {
98
+ "requestUri": "/DeleteStage",
99
+ "responseCode": 200
100
+ },
101
+ "input": {
102
+ "type": "structure",
103
+ "required": [
104
+ "arn"
105
+ ],
106
+ "members": {
107
+ "arn": {}
108
+ }
109
+ },
110
+ "output": {
111
+ "type": "structure",
112
+ "members": {}
113
+ }
114
+ },
115
+ "DisconnectParticipant": {
116
+ "http": {
117
+ "requestUri": "/DisconnectParticipant",
118
+ "responseCode": 200
119
+ },
120
+ "input": {
121
+ "type": "structure",
122
+ "required": [
123
+ "participantId",
124
+ "stageArn"
125
+ ],
126
+ "members": {
127
+ "participantId": {},
128
+ "reason": {},
129
+ "stageArn": {}
130
+ }
131
+ },
132
+ "output": {
133
+ "type": "structure",
134
+ "members": {}
135
+ }
136
+ },
137
+ "GetStage": {
138
+ "http": {
139
+ "requestUri": "/GetStage",
140
+ "responseCode": 200
141
+ },
142
+ "input": {
143
+ "type": "structure",
144
+ "required": [
145
+ "arn"
146
+ ],
147
+ "members": {
148
+ "arn": {}
149
+ }
150
+ },
151
+ "output": {
152
+ "type": "structure",
153
+ "members": {
154
+ "stage": {
155
+ "shape": "Sn"
156
+ }
157
+ }
158
+ }
159
+ },
160
+ "ListStages": {
161
+ "http": {
162
+ "requestUri": "/ListStages",
163
+ "responseCode": 200
164
+ },
165
+ "input": {
166
+ "type": "structure",
167
+ "members": {
168
+ "maxResults": {
169
+ "type": "integer"
170
+ },
171
+ "nextToken": {}
172
+ }
173
+ },
174
+ "output": {
175
+ "type": "structure",
176
+ "required": [
177
+ "stages"
178
+ ],
179
+ "members": {
180
+ "nextToken": {},
181
+ "stages": {
182
+ "type": "list",
183
+ "member": {
184
+ "type": "structure",
185
+ "required": [
186
+ "arn"
187
+ ],
188
+ "members": {
189
+ "activeSessionId": {},
190
+ "arn": {},
191
+ "name": {},
192
+ "tags": {
193
+ "shape": "Si"
194
+ }
195
+ }
196
+ }
197
+ }
198
+ }
199
+ }
200
+ },
201
+ "ListTagsForResource": {
202
+ "http": {
203
+ "method": "GET",
204
+ "requestUri": "/tags/{resourceArn}",
205
+ "responseCode": 200
206
+ },
207
+ "input": {
208
+ "type": "structure",
209
+ "required": [
210
+ "resourceArn"
211
+ ],
212
+ "members": {
213
+ "resourceArn": {
214
+ "location": "uri",
215
+ "locationName": "resourceArn"
216
+ }
217
+ }
218
+ },
219
+ "output": {
220
+ "type": "structure",
221
+ "required": [
222
+ "tags"
223
+ ],
224
+ "members": {
225
+ "tags": {
226
+ "shape": "Si"
227
+ }
228
+ }
229
+ }
230
+ },
231
+ "TagResource": {
232
+ "http": {
233
+ "requestUri": "/tags/{resourceArn}",
234
+ "responseCode": 200
235
+ },
236
+ "input": {
237
+ "type": "structure",
238
+ "required": [
239
+ "resourceArn",
240
+ "tags"
241
+ ],
242
+ "members": {
243
+ "resourceArn": {
244
+ "location": "uri",
245
+ "locationName": "resourceArn"
246
+ },
247
+ "tags": {
248
+ "shape": "Si"
249
+ }
250
+ }
251
+ },
252
+ "output": {
253
+ "type": "structure",
254
+ "members": {}
255
+ }
256
+ },
257
+ "UntagResource": {
258
+ "http": {
259
+ "method": "DELETE",
260
+ "requestUri": "/tags/{resourceArn}",
261
+ "responseCode": 200
262
+ },
263
+ "input": {
264
+ "type": "structure",
265
+ "required": [
266
+ "resourceArn",
267
+ "tagKeys"
268
+ ],
269
+ "members": {
270
+ "resourceArn": {
271
+ "location": "uri",
272
+ "locationName": "resourceArn"
273
+ },
274
+ "tagKeys": {
275
+ "location": "querystring",
276
+ "locationName": "tagKeys",
277
+ "type": "list",
278
+ "member": {}
279
+ }
280
+ }
281
+ },
282
+ "output": {
283
+ "type": "structure",
284
+ "members": {}
285
+ },
286
+ "idempotent": true
287
+ },
288
+ "UpdateStage": {
289
+ "http": {
290
+ "requestUri": "/UpdateStage",
291
+ "responseCode": 200
292
+ },
293
+ "input": {
294
+ "type": "structure",
295
+ "required": [
296
+ "arn"
297
+ ],
298
+ "members": {
299
+ "arn": {},
300
+ "name": {}
301
+ }
302
+ },
303
+ "output": {
304
+ "type": "structure",
305
+ "members": {
306
+ "stage": {
307
+ "shape": "Sn"
308
+ }
309
+ }
310
+ }
311
+ }
312
+ },
313
+ "shapes": {
314
+ "S2": {
315
+ "type": "map",
316
+ "key": {},
317
+ "value": {}
318
+ },
319
+ "S4": {
320
+ "type": "list",
321
+ "member": {}
322
+ },
323
+ "Sa": {
324
+ "type": "structure",
325
+ "members": {
326
+ "attributes": {
327
+ "shape": "S2"
328
+ },
329
+ "capabilities": {
330
+ "shape": "S4"
331
+ },
332
+ "duration": {
333
+ "type": "integer"
334
+ },
335
+ "expirationTime": {
336
+ "type": "timestamp"
337
+ },
338
+ "participantId": {},
339
+ "token": {},
340
+ "userId": {}
341
+ }
342
+ },
343
+ "Si": {
344
+ "type": "map",
345
+ "key": {},
346
+ "value": {}
347
+ },
348
+ "Sn": {
349
+ "type": "structure",
350
+ "required": [
351
+ "arn"
352
+ ],
353
+ "members": {
354
+ "activeSessionId": {},
355
+ "arn": {},
356
+ "name": {},
357
+ "tags": {
358
+ "shape": "Si"
359
+ }
360
+ }
361
+ }
362
+ }
363
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "pagination": {
3
+ "ListStages": {
4
+ "input_token": "nextToken",
5
+ "output_token": "nextToken",
6
+ "limit_key": "maxResults"
7
+ }
8
+ }
9
+ }
@@ -1284,5 +1284,9 @@
1284
1284
  },
1285
1285
  "internetmonitor": {
1286
1286
  "name": "InternetMonitor"
1287
+ },
1288
+ "ivsrealtime": {
1289
+ "prefix": "ivs-realtime",
1290
+ "name": "IVSRealTime"
1287
1291
  }
1288
1292
  }