aws-sdk 2.1020.0 → 2.1024.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 +24 -1
- package/README.md +1 -1
- package/apis/chime-sdk-meetings-2021-07-15.examples.json +5 -0
- package/apis/chime-sdk-meetings-2021-07-15.min.json +474 -0
- package/apis/chime-sdk-meetings-2021-07-15.paginators.json +9 -0
- package/apis/connect-2017-08-08.min.json +230 -61
- package/apis/connect-2017-08-08.paginators.json +6 -0
- package/apis/datasync-2018-11-09.min.json +207 -56
- package/apis/ec2-2016-11-15.min.json +513 -499
- package/apis/finspace-2021-03-12.min.json +24 -4
- package/apis/iotwireless-2020-11-22.min.json +993 -100
- package/apis/iotwireless-2020-11-22.paginators.json +15 -0
- package/apis/macie2-2020-01-01.min.json +104 -77
- package/apis/metadata.json +4 -0
- package/apis/sagemaker-2017-07-24.min.json +617 -537
- package/apis/translate-2017-07-01.min.json +4 -1
- package/apis/wafv2-2019-07-29.min.json +130 -79
- package/clients/all.d.ts +1 -0
- package/clients/all.js +2 -1
- package/clients/chimesdkmeetings.d.ts +486 -0
- package/clients/chimesdkmeetings.js +18 -0
- package/clients/connect.d.ts +194 -21
- package/clients/connectparticipant.d.ts +1 -1
- package/clients/datasync.d.ts +241 -11
- package/clients/ec2.d.ts +23 -6
- package/clients/finspace.d.ts +26 -0
- package/clients/iotwireless.d.ts +577 -6
- package/clients/macie2.d.ts +36 -16
- package/clients/resourcegroupstaggingapi.d.ts +29 -29
- package/clients/sagemaker.d.ts +111 -16
- package/clients/translate.d.ts +13 -12
- package/clients/wafv2.d.ts +70 -10
- package/dist/aws-sdk-core-react-native.js +2 -2
- package/dist/aws-sdk-react-native.js +52 -15
- package/dist/aws-sdk.js +760 -564
- package/dist/aws-sdk.min.js +71 -71
- package/lib/config_service_placeholders.d.ts +2 -0
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,30 @@
|
|
|
1
1
|
# Changelog for AWS SDK for JavaScript
|
|
2
|
-
<!--LATEST=2.
|
|
2
|
+
<!--LATEST=2.1024.0-->
|
|
3
3
|
<!--ENTRYINSERT-->
|
|
4
4
|
|
|
5
|
+
## 2.1024.0
|
|
6
|
+
* feature: ChimeSDKMeetings: Updated format validation for ids and regions.
|
|
7
|
+
* feature: EC2: This release adds internal validation on the GatewayAssociationState field
|
|
8
|
+
* feature: SageMaker: SageMaker CreateEndpoint and UpdateEndpoint APIs now support additional deployment configuration to manage traffic shifting options and automatic rollback monitoring. DescribeEndpoint now shows new in-progress deployment details with stage status.
|
|
9
|
+
* feature: WAFV2: You can now configure rules to run a CAPTCHA check against web requests and, as needed, send a CAPTCHA challenge to the client.
|
|
10
|
+
|
|
11
|
+
## 2.1023.0
|
|
12
|
+
* feature: EC2: DescribeInstances now returns customer-owned IP addresses for instances running on an AWS Outpost.
|
|
13
|
+
* feature: Translate: This release enable customers to use their own KMS keys to encrypt output files when they submit a batch transform job.
|
|
14
|
+
|
|
15
|
+
## 2.1022.0
|
|
16
|
+
* feature: ChimeSDKMeetings: The Amazon Chime SDK Meetings APIs allow software developers to create meetings and attendees for interactive audio, video, screen and content sharing in custom meeting applications which use the Amazon Chime SDK.
|
|
17
|
+
* feature: Connect: This release adds CRUD operation support for Security profile resource in Amazon Connect
|
|
18
|
+
* feature: EC2: This release adds a new instance replacement strategy for EC2 Fleet, Spot Fleet. Now you can select an action to perform when your instance gets a rebalance notification. EC2 Fleet, Spot Fleet can launch a replacement then terminate the instance that received notification after a termination delay
|
|
19
|
+
* feature: IoTWireless: Adding APIs for the FUOTA (firmware update over the air) and multicast for LoRaWAN devices and APIs to support event notification opt-in feature for Sidewalk related events. A few existing APIs need to be modified for this new feature.
|
|
20
|
+
* feature: SageMaker: ListDevices and DescribeDevice now show Edge Manager agent version.
|
|
21
|
+
|
|
22
|
+
## 2.1021.0
|
|
23
|
+
* feature: ConnectParticipant: This release adds a new boolean attribute - Connect Participant - to the CreateParticipantConnection API, which can be used to mark the participant as connected.
|
|
24
|
+
* feature: DataSync: AWS DataSync now supports Hadoop Distributed File System (HDFS) Locations
|
|
25
|
+
* feature: Finspace: Adds superuser and data-bundle parameters to CreateEnvironment API
|
|
26
|
+
* feature: Macie2: This release adds support for specifying the severity of findings that a custom data identifier produces, based on the number of occurrences of text that matches the detection criteria.
|
|
27
|
+
|
|
5
28
|
## 2.1020.0
|
|
6
29
|
* feature: CloudFront: CloudFront now supports response headers policies to add HTTP headers to the responses that CloudFront sends to viewers. You can use these policies to add CORS headers, control browser caching, and more, without modifying your origin or writing any code.
|
|
7
30
|
* feature: Connect: Amazon Connect Chat now supports real-time message streaming.
|
package/README.md
CHANGED
|
@@ -29,7 +29,7 @@ For release notes, see the [CHANGELOG](https://github.com/aws/aws-sdk-js/blob/ma
|
|
|
29
29
|
To use the SDK in the browser, simply add the following script tag to your
|
|
30
30
|
HTML pages:
|
|
31
31
|
|
|
32
|
-
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.
|
|
32
|
+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1024.0.min.js"></script>
|
|
33
33
|
|
|
34
34
|
You can also build a custom browser SDK with your specified set of AWS services.
|
|
35
35
|
This can allow you to reduce the SDK's size, specify different API versions of
|
|
@@ -0,0 +1,474 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "2.0",
|
|
3
|
+
"metadata": {
|
|
4
|
+
"apiVersion": "2021-07-15",
|
|
5
|
+
"endpointPrefix": "meetings-chime",
|
|
6
|
+
"protocol": "rest-json",
|
|
7
|
+
"serviceFullName": "Amazon Chime SDK Meetings",
|
|
8
|
+
"serviceId": "Chime SDK Meetings",
|
|
9
|
+
"signatureVersion": "v4",
|
|
10
|
+
"signingName": "chime",
|
|
11
|
+
"uid": "chime-sdk-meetings-2021-07-15"
|
|
12
|
+
},
|
|
13
|
+
"operations": {
|
|
14
|
+
"BatchCreateAttendee": {
|
|
15
|
+
"http": {
|
|
16
|
+
"requestUri": "/meetings/{MeetingId}/attendees?operation=batch-create"
|
|
17
|
+
},
|
|
18
|
+
"input": {
|
|
19
|
+
"type": "structure",
|
|
20
|
+
"required": [
|
|
21
|
+
"MeetingId",
|
|
22
|
+
"Attendees"
|
|
23
|
+
],
|
|
24
|
+
"members": {
|
|
25
|
+
"MeetingId": {
|
|
26
|
+
"location": "uri",
|
|
27
|
+
"locationName": "MeetingId"
|
|
28
|
+
},
|
|
29
|
+
"Attendees": {
|
|
30
|
+
"type": "list",
|
|
31
|
+
"member": {
|
|
32
|
+
"shape": "S4"
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
"output": {
|
|
38
|
+
"type": "structure",
|
|
39
|
+
"members": {
|
|
40
|
+
"Attendees": {
|
|
41
|
+
"shape": "S7"
|
|
42
|
+
},
|
|
43
|
+
"Errors": {
|
|
44
|
+
"shape": "Sa"
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
"CreateAttendee": {
|
|
50
|
+
"http": {
|
|
51
|
+
"requestUri": "/meetings/{MeetingId}/attendees"
|
|
52
|
+
},
|
|
53
|
+
"input": {
|
|
54
|
+
"type": "structure",
|
|
55
|
+
"required": [
|
|
56
|
+
"MeetingId",
|
|
57
|
+
"ExternalUserId"
|
|
58
|
+
],
|
|
59
|
+
"members": {
|
|
60
|
+
"MeetingId": {
|
|
61
|
+
"location": "uri",
|
|
62
|
+
"locationName": "MeetingId"
|
|
63
|
+
},
|
|
64
|
+
"ExternalUserId": {
|
|
65
|
+
"shape": "S5"
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
},
|
|
69
|
+
"output": {
|
|
70
|
+
"type": "structure",
|
|
71
|
+
"members": {
|
|
72
|
+
"Attendee": {
|
|
73
|
+
"shape": "S8"
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
},
|
|
78
|
+
"CreateMeeting": {
|
|
79
|
+
"http": {
|
|
80
|
+
"requestUri": "/meetings"
|
|
81
|
+
},
|
|
82
|
+
"input": {
|
|
83
|
+
"type": "structure",
|
|
84
|
+
"required": [
|
|
85
|
+
"ClientRequestToken",
|
|
86
|
+
"MediaRegion",
|
|
87
|
+
"ExternalMeetingId"
|
|
88
|
+
],
|
|
89
|
+
"members": {
|
|
90
|
+
"ClientRequestToken": {
|
|
91
|
+
"shape": "Sg",
|
|
92
|
+
"idempotencyToken": true
|
|
93
|
+
},
|
|
94
|
+
"MediaRegion": {},
|
|
95
|
+
"MeetingHostId": {
|
|
96
|
+
"shape": "S5"
|
|
97
|
+
},
|
|
98
|
+
"ExternalMeetingId": {
|
|
99
|
+
"shape": "Si"
|
|
100
|
+
},
|
|
101
|
+
"NotificationsConfiguration": {
|
|
102
|
+
"shape": "Sj"
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
},
|
|
106
|
+
"output": {
|
|
107
|
+
"type": "structure",
|
|
108
|
+
"members": {
|
|
109
|
+
"Meeting": {
|
|
110
|
+
"shape": "Sm"
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
},
|
|
115
|
+
"CreateMeetingWithAttendees": {
|
|
116
|
+
"http": {
|
|
117
|
+
"requestUri": "/meetings?operation=create-attendees"
|
|
118
|
+
},
|
|
119
|
+
"input": {
|
|
120
|
+
"type": "structure",
|
|
121
|
+
"required": [
|
|
122
|
+
"ClientRequestToken",
|
|
123
|
+
"MediaRegion",
|
|
124
|
+
"ExternalMeetingId",
|
|
125
|
+
"Attendees"
|
|
126
|
+
],
|
|
127
|
+
"members": {
|
|
128
|
+
"ClientRequestToken": {
|
|
129
|
+
"shape": "Sg",
|
|
130
|
+
"idempotencyToken": true
|
|
131
|
+
},
|
|
132
|
+
"MediaRegion": {},
|
|
133
|
+
"MeetingHostId": {
|
|
134
|
+
"shape": "S5"
|
|
135
|
+
},
|
|
136
|
+
"ExternalMeetingId": {
|
|
137
|
+
"shape": "Si"
|
|
138
|
+
},
|
|
139
|
+
"NotificationsConfiguration": {
|
|
140
|
+
"shape": "Sj"
|
|
141
|
+
},
|
|
142
|
+
"Attendees": {
|
|
143
|
+
"type": "list",
|
|
144
|
+
"member": {
|
|
145
|
+
"shape": "S4"
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
},
|
|
150
|
+
"output": {
|
|
151
|
+
"type": "structure",
|
|
152
|
+
"members": {
|
|
153
|
+
"Meeting": {
|
|
154
|
+
"shape": "Sm"
|
|
155
|
+
},
|
|
156
|
+
"Attendees": {
|
|
157
|
+
"shape": "S7"
|
|
158
|
+
},
|
|
159
|
+
"Errors": {
|
|
160
|
+
"shape": "Sa"
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
},
|
|
165
|
+
"DeleteAttendee": {
|
|
166
|
+
"http": {
|
|
167
|
+
"method": "DELETE",
|
|
168
|
+
"requestUri": "/meetings/{MeetingId}/attendees/{AttendeeId}",
|
|
169
|
+
"responseCode": 204
|
|
170
|
+
},
|
|
171
|
+
"input": {
|
|
172
|
+
"type": "structure",
|
|
173
|
+
"required": [
|
|
174
|
+
"MeetingId",
|
|
175
|
+
"AttendeeId"
|
|
176
|
+
],
|
|
177
|
+
"members": {
|
|
178
|
+
"MeetingId": {
|
|
179
|
+
"location": "uri",
|
|
180
|
+
"locationName": "MeetingId"
|
|
181
|
+
},
|
|
182
|
+
"AttendeeId": {
|
|
183
|
+
"location": "uri",
|
|
184
|
+
"locationName": "AttendeeId"
|
|
185
|
+
}
|
|
186
|
+
}
|
|
187
|
+
}
|
|
188
|
+
},
|
|
189
|
+
"DeleteMeeting": {
|
|
190
|
+
"http": {
|
|
191
|
+
"method": "DELETE",
|
|
192
|
+
"requestUri": "/meetings/{MeetingId}",
|
|
193
|
+
"responseCode": 204
|
|
194
|
+
},
|
|
195
|
+
"input": {
|
|
196
|
+
"type": "structure",
|
|
197
|
+
"required": [
|
|
198
|
+
"MeetingId"
|
|
199
|
+
],
|
|
200
|
+
"members": {
|
|
201
|
+
"MeetingId": {
|
|
202
|
+
"location": "uri",
|
|
203
|
+
"locationName": "MeetingId"
|
|
204
|
+
}
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
},
|
|
208
|
+
"GetAttendee": {
|
|
209
|
+
"http": {
|
|
210
|
+
"method": "GET",
|
|
211
|
+
"requestUri": "/meetings/{MeetingId}/attendees/{AttendeeId}"
|
|
212
|
+
},
|
|
213
|
+
"input": {
|
|
214
|
+
"type": "structure",
|
|
215
|
+
"required": [
|
|
216
|
+
"MeetingId",
|
|
217
|
+
"AttendeeId"
|
|
218
|
+
],
|
|
219
|
+
"members": {
|
|
220
|
+
"MeetingId": {
|
|
221
|
+
"location": "uri",
|
|
222
|
+
"locationName": "MeetingId"
|
|
223
|
+
},
|
|
224
|
+
"AttendeeId": {
|
|
225
|
+
"location": "uri",
|
|
226
|
+
"locationName": "AttendeeId"
|
|
227
|
+
}
|
|
228
|
+
}
|
|
229
|
+
},
|
|
230
|
+
"output": {
|
|
231
|
+
"type": "structure",
|
|
232
|
+
"members": {
|
|
233
|
+
"Attendee": {
|
|
234
|
+
"shape": "S8"
|
|
235
|
+
}
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
},
|
|
239
|
+
"GetMeeting": {
|
|
240
|
+
"http": {
|
|
241
|
+
"method": "GET",
|
|
242
|
+
"requestUri": "/meetings/{MeetingId}"
|
|
243
|
+
},
|
|
244
|
+
"input": {
|
|
245
|
+
"type": "structure",
|
|
246
|
+
"required": [
|
|
247
|
+
"MeetingId"
|
|
248
|
+
],
|
|
249
|
+
"members": {
|
|
250
|
+
"MeetingId": {
|
|
251
|
+
"location": "uri",
|
|
252
|
+
"locationName": "MeetingId"
|
|
253
|
+
}
|
|
254
|
+
}
|
|
255
|
+
},
|
|
256
|
+
"output": {
|
|
257
|
+
"type": "structure",
|
|
258
|
+
"members": {
|
|
259
|
+
"Meeting": {
|
|
260
|
+
"shape": "Sm"
|
|
261
|
+
}
|
|
262
|
+
}
|
|
263
|
+
}
|
|
264
|
+
},
|
|
265
|
+
"ListAttendees": {
|
|
266
|
+
"http": {
|
|
267
|
+
"method": "GET",
|
|
268
|
+
"requestUri": "/meetings/{MeetingId}/attendees",
|
|
269
|
+
"responseCode": 200
|
|
270
|
+
},
|
|
271
|
+
"input": {
|
|
272
|
+
"type": "structure",
|
|
273
|
+
"required": [
|
|
274
|
+
"MeetingId"
|
|
275
|
+
],
|
|
276
|
+
"members": {
|
|
277
|
+
"MeetingId": {
|
|
278
|
+
"location": "uri",
|
|
279
|
+
"locationName": "MeetingId"
|
|
280
|
+
},
|
|
281
|
+
"NextToken": {
|
|
282
|
+
"location": "querystring",
|
|
283
|
+
"locationName": "next-token"
|
|
284
|
+
},
|
|
285
|
+
"MaxResults": {
|
|
286
|
+
"location": "querystring",
|
|
287
|
+
"locationName": "max-results",
|
|
288
|
+
"type": "integer"
|
|
289
|
+
}
|
|
290
|
+
}
|
|
291
|
+
},
|
|
292
|
+
"output": {
|
|
293
|
+
"type": "structure",
|
|
294
|
+
"members": {
|
|
295
|
+
"Attendees": {
|
|
296
|
+
"shape": "S7"
|
|
297
|
+
},
|
|
298
|
+
"NextToken": {}
|
|
299
|
+
}
|
|
300
|
+
}
|
|
301
|
+
},
|
|
302
|
+
"StartMeetingTranscription": {
|
|
303
|
+
"http": {
|
|
304
|
+
"requestUri": "/meetings/{MeetingId}/transcription?operation=start",
|
|
305
|
+
"responseCode": 200
|
|
306
|
+
},
|
|
307
|
+
"input": {
|
|
308
|
+
"type": "structure",
|
|
309
|
+
"required": [
|
|
310
|
+
"MeetingId",
|
|
311
|
+
"TranscriptionConfiguration"
|
|
312
|
+
],
|
|
313
|
+
"members": {
|
|
314
|
+
"MeetingId": {
|
|
315
|
+
"location": "uri",
|
|
316
|
+
"locationName": "MeetingId"
|
|
317
|
+
},
|
|
318
|
+
"TranscriptionConfiguration": {
|
|
319
|
+
"type": "structure",
|
|
320
|
+
"members": {
|
|
321
|
+
"EngineTranscribeSettings": {
|
|
322
|
+
"type": "structure",
|
|
323
|
+
"required": [
|
|
324
|
+
"LanguageCode"
|
|
325
|
+
],
|
|
326
|
+
"members": {
|
|
327
|
+
"LanguageCode": {},
|
|
328
|
+
"VocabularyFilterMethod": {},
|
|
329
|
+
"VocabularyFilterName": {},
|
|
330
|
+
"VocabularyName": {},
|
|
331
|
+
"Region": {}
|
|
332
|
+
}
|
|
333
|
+
},
|
|
334
|
+
"EngineTranscribeMedicalSettings": {
|
|
335
|
+
"type": "structure",
|
|
336
|
+
"required": [
|
|
337
|
+
"LanguageCode",
|
|
338
|
+
"Specialty",
|
|
339
|
+
"Type"
|
|
340
|
+
],
|
|
341
|
+
"members": {
|
|
342
|
+
"LanguageCode": {},
|
|
343
|
+
"Specialty": {},
|
|
344
|
+
"Type": {},
|
|
345
|
+
"VocabularyName": {},
|
|
346
|
+
"Region": {}
|
|
347
|
+
}
|
|
348
|
+
}
|
|
349
|
+
}
|
|
350
|
+
}
|
|
351
|
+
}
|
|
352
|
+
}
|
|
353
|
+
},
|
|
354
|
+
"StopMeetingTranscription": {
|
|
355
|
+
"http": {
|
|
356
|
+
"requestUri": "/meetings/{MeetingId}/transcription?operation=stop",
|
|
357
|
+
"responseCode": 200
|
|
358
|
+
},
|
|
359
|
+
"input": {
|
|
360
|
+
"type": "structure",
|
|
361
|
+
"required": [
|
|
362
|
+
"MeetingId"
|
|
363
|
+
],
|
|
364
|
+
"members": {
|
|
365
|
+
"MeetingId": {
|
|
366
|
+
"location": "uri",
|
|
367
|
+
"locationName": "MeetingId"
|
|
368
|
+
}
|
|
369
|
+
}
|
|
370
|
+
}
|
|
371
|
+
}
|
|
372
|
+
},
|
|
373
|
+
"shapes": {
|
|
374
|
+
"S4": {
|
|
375
|
+
"type": "structure",
|
|
376
|
+
"required": [
|
|
377
|
+
"ExternalUserId"
|
|
378
|
+
],
|
|
379
|
+
"members": {
|
|
380
|
+
"ExternalUserId": {
|
|
381
|
+
"shape": "S5"
|
|
382
|
+
}
|
|
383
|
+
}
|
|
384
|
+
},
|
|
385
|
+
"S5": {
|
|
386
|
+
"type": "string",
|
|
387
|
+
"sensitive": true
|
|
388
|
+
},
|
|
389
|
+
"S7": {
|
|
390
|
+
"type": "list",
|
|
391
|
+
"member": {
|
|
392
|
+
"shape": "S8"
|
|
393
|
+
}
|
|
394
|
+
},
|
|
395
|
+
"S8": {
|
|
396
|
+
"type": "structure",
|
|
397
|
+
"members": {
|
|
398
|
+
"ExternalUserId": {
|
|
399
|
+
"shape": "S5"
|
|
400
|
+
},
|
|
401
|
+
"AttendeeId": {},
|
|
402
|
+
"JoinToken": {
|
|
403
|
+
"type": "string",
|
|
404
|
+
"sensitive": true
|
|
405
|
+
}
|
|
406
|
+
}
|
|
407
|
+
},
|
|
408
|
+
"Sa": {
|
|
409
|
+
"type": "list",
|
|
410
|
+
"member": {
|
|
411
|
+
"type": "structure",
|
|
412
|
+
"members": {
|
|
413
|
+
"ExternalUserId": {
|
|
414
|
+
"shape": "S5"
|
|
415
|
+
},
|
|
416
|
+
"ErrorCode": {},
|
|
417
|
+
"ErrorMessage": {}
|
|
418
|
+
}
|
|
419
|
+
}
|
|
420
|
+
},
|
|
421
|
+
"Sg": {
|
|
422
|
+
"type": "string",
|
|
423
|
+
"sensitive": true
|
|
424
|
+
},
|
|
425
|
+
"Si": {
|
|
426
|
+
"type": "string",
|
|
427
|
+
"sensitive": true
|
|
428
|
+
},
|
|
429
|
+
"Sj": {
|
|
430
|
+
"type": "structure",
|
|
431
|
+
"members": {
|
|
432
|
+
"LambdaFunctionArn": {
|
|
433
|
+
"shape": "Sk"
|
|
434
|
+
},
|
|
435
|
+
"SnsTopicArn": {
|
|
436
|
+
"shape": "Sk"
|
|
437
|
+
},
|
|
438
|
+
"SqsQueueArn": {
|
|
439
|
+
"shape": "Sk"
|
|
440
|
+
}
|
|
441
|
+
}
|
|
442
|
+
},
|
|
443
|
+
"Sk": {
|
|
444
|
+
"type": "string",
|
|
445
|
+
"sensitive": true
|
|
446
|
+
},
|
|
447
|
+
"Sm": {
|
|
448
|
+
"type": "structure",
|
|
449
|
+
"members": {
|
|
450
|
+
"MeetingId": {},
|
|
451
|
+
"MeetingHostId": {
|
|
452
|
+
"shape": "S5"
|
|
453
|
+
},
|
|
454
|
+
"ExternalMeetingId": {
|
|
455
|
+
"shape": "Si"
|
|
456
|
+
},
|
|
457
|
+
"MediaRegion": {},
|
|
458
|
+
"MediaPlacement": {
|
|
459
|
+
"type": "structure",
|
|
460
|
+
"members": {
|
|
461
|
+
"AudioHostUrl": {},
|
|
462
|
+
"AudioFallbackUrl": {},
|
|
463
|
+
"SignalingUrl": {},
|
|
464
|
+
"TurnControlUrl": {},
|
|
465
|
+
"ScreenDataUrl": {},
|
|
466
|
+
"ScreenViewingUrl": {},
|
|
467
|
+
"ScreenSharingUrl": {},
|
|
468
|
+
"EventIngestionUrl": {}
|
|
469
|
+
}
|
|
470
|
+
}
|
|
471
|
+
}
|
|
472
|
+
}
|
|
473
|
+
}
|
|
474
|
+
}
|