@aws-sdk/client-chime-sdk-meetings 3.121.0 → 3.125.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 +11 -0
- package/dist-cjs/protocols/Aws_restJson1.js +28 -0
- package/dist-es/protocols/Aws_restJson1.js +30 -4
- package/dist-types/ChimeSDKMeetings.d.ts +43 -0
- package/dist-types/commands/BatchUpdateAttendeeCapabilitiesExceptCommand.d.ts +22 -0
- package/dist-types/commands/UpdateAttendeeCapabilitiesCommand.d.ts +21 -0
- package/dist-types/models/models_0.d.ts +82 -18
- package/dist-types/ts3.4/models/models_0.d.ts +6 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.125.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.124.0...v3.125.0) (2022-07-07)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **client-chime-sdk-meetings:** Adds support for AppKeys and TenantIds in Amazon Chime SDK WebRTC sessions ([5d50be7](https://github.com/aws/aws-sdk-js-v3/commit/5d50be78006631dbc365d28aa84ec4465e40cd42))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [3.121.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.120.0...v3.121.0) (2022-06-30)
|
|
7
18
|
|
|
8
19
|
|
|
@@ -147,6 +147,8 @@ const serializeAws_restJson1CreateMeetingCommand = async (input, context) => {
|
|
|
147
147
|
}),
|
|
148
148
|
...(input.PrimaryMeetingId !== undefined &&
|
|
149
149
|
input.PrimaryMeetingId !== null && { PrimaryMeetingId: input.PrimaryMeetingId }),
|
|
150
|
+
...(input.TenantIds !== undefined &&
|
|
151
|
+
input.TenantIds !== null && { TenantIds: serializeAws_restJson1TenantIdList(input.TenantIds, context) }),
|
|
150
152
|
});
|
|
151
153
|
return new protocol_http_1.HttpRequest({
|
|
152
154
|
protocol,
|
|
@@ -190,6 +192,8 @@ const serializeAws_restJson1CreateMeetingWithAttendeesCommand = async (input, co
|
|
|
190
192
|
}),
|
|
191
193
|
...(input.PrimaryMeetingId !== undefined &&
|
|
192
194
|
input.PrimaryMeetingId !== null && { PrimaryMeetingId: input.PrimaryMeetingId }),
|
|
195
|
+
...(input.TenantIds !== undefined &&
|
|
196
|
+
input.TenantIds !== null && { TenantIds: serializeAws_restJson1TenantIdList(input.TenantIds, context) }),
|
|
193
197
|
});
|
|
194
198
|
return new protocol_http_1.HttpRequest({
|
|
195
199
|
protocol,
|
|
@@ -1510,6 +1514,16 @@ const serializeAws_restJson1NotificationsConfiguration = (input, context) => {
|
|
|
1510
1514
|
...(input.SqsQueueArn !== undefined && input.SqsQueueArn !== null && { SqsQueueArn: input.SqsQueueArn }),
|
|
1511
1515
|
};
|
|
1512
1516
|
};
|
|
1517
|
+
const serializeAws_restJson1TenantIdList = (input, context) => {
|
|
1518
|
+
return input
|
|
1519
|
+
.filter((e) => e != null)
|
|
1520
|
+
.map((entry) => {
|
|
1521
|
+
if (entry === null) {
|
|
1522
|
+
return null;
|
|
1523
|
+
}
|
|
1524
|
+
return entry;
|
|
1525
|
+
});
|
|
1526
|
+
};
|
|
1513
1527
|
const serializeAws_restJson1TranscriptionConfiguration = (input, context) => {
|
|
1514
1528
|
return {
|
|
1515
1529
|
...(input.EngineTranscribeMedicalSettings !== undefined &&
|
|
@@ -1598,6 +1612,9 @@ const deserializeAws_restJson1Meeting = (output, context) => {
|
|
|
1598
1612
|
MeetingHostId: (0, smithy_client_1.expectString)(output.MeetingHostId),
|
|
1599
1613
|
MeetingId: (0, smithy_client_1.expectString)(output.MeetingId),
|
|
1600
1614
|
PrimaryMeetingId: (0, smithy_client_1.expectString)(output.PrimaryMeetingId),
|
|
1615
|
+
TenantIds: output.TenantIds !== undefined && output.TenantIds !== null
|
|
1616
|
+
? deserializeAws_restJson1TenantIdList(output.TenantIds, context)
|
|
1617
|
+
: undefined,
|
|
1601
1618
|
};
|
|
1602
1619
|
};
|
|
1603
1620
|
const deserializeAws_restJson1MeetingFeaturesConfiguration = (output, context) => {
|
|
@@ -1607,6 +1624,17 @@ const deserializeAws_restJson1MeetingFeaturesConfiguration = (output, context) =
|
|
|
1607
1624
|
: undefined,
|
|
1608
1625
|
};
|
|
1609
1626
|
};
|
|
1627
|
+
const deserializeAws_restJson1TenantIdList = (output, context) => {
|
|
1628
|
+
const retVal = (output || [])
|
|
1629
|
+
.filter((e) => e != null)
|
|
1630
|
+
.map((entry) => {
|
|
1631
|
+
if (entry === null) {
|
|
1632
|
+
return null;
|
|
1633
|
+
}
|
|
1634
|
+
return (0, smithy_client_1.expectString)(entry);
|
|
1635
|
+
});
|
|
1636
|
+
return retVal;
|
|
1637
|
+
};
|
|
1610
1638
|
const deserializeMetadata = (output) => {
|
|
1611
1639
|
var _a;
|
|
1612
1640
|
return ({
|
|
@@ -140,7 +140,7 @@ export var serializeAws_restJson1CreateMeetingCommand = function (input, context
|
|
|
140
140
|
"content-type": "application/json",
|
|
141
141
|
};
|
|
142
142
|
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/meetings";
|
|
143
|
-
body = JSON.stringify(__assign(__assign(__assign(__assign(__assign(__assign({ ClientRequestToken: (_c = input.ClientRequestToken) !== null && _c !== void 0 ? _c : generateIdempotencyToken() }, (input.ExternalMeetingId !== undefined &&
|
|
143
|
+
body = JSON.stringify(__assign(__assign(__assign(__assign(__assign(__assign(__assign({ ClientRequestToken: (_c = input.ClientRequestToken) !== null && _c !== void 0 ? _c : generateIdempotencyToken() }, (input.ExternalMeetingId !== undefined &&
|
|
144
144
|
input.ExternalMeetingId !== null && { ExternalMeetingId: input.ExternalMeetingId })), (input.MediaRegion !== undefined && input.MediaRegion !== null && { MediaRegion: input.MediaRegion })), (input.MeetingFeatures !== undefined &&
|
|
145
145
|
input.MeetingFeatures !== null && {
|
|
146
146
|
MeetingFeatures: serializeAws_restJson1MeetingFeaturesConfiguration(input.MeetingFeatures, context),
|
|
@@ -148,7 +148,8 @@ export var serializeAws_restJson1CreateMeetingCommand = function (input, context
|
|
|
148
148
|
input.NotificationsConfiguration !== null && {
|
|
149
149
|
NotificationsConfiguration: serializeAws_restJson1NotificationsConfiguration(input.NotificationsConfiguration, context),
|
|
150
150
|
})), (input.PrimaryMeetingId !== undefined &&
|
|
151
|
-
input.PrimaryMeetingId !== null && { PrimaryMeetingId: input.PrimaryMeetingId }))
|
|
151
|
+
input.PrimaryMeetingId !== null && { PrimaryMeetingId: input.PrimaryMeetingId })), (input.TenantIds !== undefined &&
|
|
152
|
+
input.TenantIds !== null && { TenantIds: serializeAws_restJson1TenantIdList(input.TenantIds, context) })));
|
|
152
153
|
return [2, new __HttpRequest({
|
|
153
154
|
protocol: protocol,
|
|
154
155
|
hostname: hostname,
|
|
@@ -176,7 +177,7 @@ export var serializeAws_restJson1CreateMeetingWithAttendeesCommand = function (i
|
|
|
176
177
|
query = {
|
|
177
178
|
operation: "create-attendees",
|
|
178
179
|
};
|
|
179
|
-
body = JSON.stringify(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign({}, (input.Attendees !== undefined &&
|
|
180
|
+
body = JSON.stringify(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign({}, (input.Attendees !== undefined &&
|
|
180
181
|
input.Attendees !== null && {
|
|
181
182
|
Attendees: serializeAws_restJson1CreateMeetingWithAttendeesRequestItemList(input.Attendees, context),
|
|
182
183
|
})), { ClientRequestToken: (_c = input.ClientRequestToken) !== null && _c !== void 0 ? _c : generateIdempotencyToken() }), (input.ExternalMeetingId !== undefined &&
|
|
@@ -187,7 +188,8 @@ export var serializeAws_restJson1CreateMeetingWithAttendeesCommand = function (i
|
|
|
187
188
|
input.NotificationsConfiguration !== null && {
|
|
188
189
|
NotificationsConfiguration: serializeAws_restJson1NotificationsConfiguration(input.NotificationsConfiguration, context),
|
|
189
190
|
})), (input.PrimaryMeetingId !== undefined &&
|
|
190
|
-
input.PrimaryMeetingId !== null && { PrimaryMeetingId: input.PrimaryMeetingId }))
|
|
191
|
+
input.PrimaryMeetingId !== null && { PrimaryMeetingId: input.PrimaryMeetingId })), (input.TenantIds !== undefined &&
|
|
192
|
+
input.TenantIds !== null && { TenantIds: serializeAws_restJson1TenantIdList(input.TenantIds, context) })));
|
|
191
193
|
return [2, new __HttpRequest({
|
|
192
194
|
protocol: protocol,
|
|
193
195
|
hostname: hostname,
|
|
@@ -1822,6 +1824,16 @@ var serializeAws_restJson1NotificationsConfiguration = function (input, context)
|
|
|
1822
1824
|
return __assign(__assign(__assign({}, (input.LambdaFunctionArn !== undefined &&
|
|
1823
1825
|
input.LambdaFunctionArn !== null && { LambdaFunctionArn: input.LambdaFunctionArn })), (input.SnsTopicArn !== undefined && input.SnsTopicArn !== null && { SnsTopicArn: input.SnsTopicArn })), (input.SqsQueueArn !== undefined && input.SqsQueueArn !== null && { SqsQueueArn: input.SqsQueueArn }));
|
|
1824
1826
|
};
|
|
1827
|
+
var serializeAws_restJson1TenantIdList = function (input, context) {
|
|
1828
|
+
return input
|
|
1829
|
+
.filter(function (e) { return e != null; })
|
|
1830
|
+
.map(function (entry) {
|
|
1831
|
+
if (entry === null) {
|
|
1832
|
+
return null;
|
|
1833
|
+
}
|
|
1834
|
+
return entry;
|
|
1835
|
+
});
|
|
1836
|
+
};
|
|
1825
1837
|
var serializeAws_restJson1TranscriptionConfiguration = function (input, context) {
|
|
1826
1838
|
return __assign(__assign({}, (input.EngineTranscribeMedicalSettings !== undefined &&
|
|
1827
1839
|
input.EngineTranscribeMedicalSettings !== null && {
|
|
@@ -1907,6 +1919,9 @@ var deserializeAws_restJson1Meeting = function (output, context) {
|
|
|
1907
1919
|
MeetingHostId: __expectString(output.MeetingHostId),
|
|
1908
1920
|
MeetingId: __expectString(output.MeetingId),
|
|
1909
1921
|
PrimaryMeetingId: __expectString(output.PrimaryMeetingId),
|
|
1922
|
+
TenantIds: output.TenantIds !== undefined && output.TenantIds !== null
|
|
1923
|
+
? deserializeAws_restJson1TenantIdList(output.TenantIds, context)
|
|
1924
|
+
: undefined,
|
|
1910
1925
|
};
|
|
1911
1926
|
};
|
|
1912
1927
|
var deserializeAws_restJson1MeetingFeaturesConfiguration = function (output, context) {
|
|
@@ -1916,6 +1931,17 @@ var deserializeAws_restJson1MeetingFeaturesConfiguration = function (output, con
|
|
|
1916
1931
|
: undefined,
|
|
1917
1932
|
};
|
|
1918
1933
|
};
|
|
1934
|
+
var deserializeAws_restJson1TenantIdList = function (output, context) {
|
|
1935
|
+
var retVal = (output || [])
|
|
1936
|
+
.filter(function (e) { return e != null; })
|
|
1937
|
+
.map(function (entry) {
|
|
1938
|
+
if (entry === null) {
|
|
1939
|
+
return null;
|
|
1940
|
+
}
|
|
1941
|
+
return __expectString(entry);
|
|
1942
|
+
});
|
|
1943
|
+
return retVal;
|
|
1944
|
+
};
|
|
1919
1945
|
var deserializeMetadata = function (output) {
|
|
1920
1946
|
var _a;
|
|
1921
1947
|
return ({
|
|
@@ -27,6 +27,28 @@ export declare class ChimeSDKMeetings extends ChimeSDKMeetingsClient {
|
|
|
27
27
|
batchCreateAttendee(args: BatchCreateAttendeeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchCreateAttendeeCommandOutput) => void): void;
|
|
28
28
|
/**
|
|
29
29
|
* <p>Updates <code>AttendeeCapabilities</code> except the capabilities listed in an <code>ExcludedAttendeeIds</code> table.</p>
|
|
30
|
+
*
|
|
31
|
+
* <note>
|
|
32
|
+
* <p>You use the capabilities with a set of values that control what the capabilities can do, such as <code>SendReceive</code> data. For more information about those values, see
|
|
33
|
+
* .</p>
|
|
34
|
+
* </note>
|
|
35
|
+
*
|
|
36
|
+
* <p>When using capabilities, be aware of these corner cases:</p>
|
|
37
|
+
* <ul>
|
|
38
|
+
* <li>
|
|
39
|
+
* <p>You can't set <code>content</code> capabilities to <code>SendReceive</code> or <code>Receive</code> unless you also set <code>video</code> capabilities to <code>SendReceive</code>
|
|
40
|
+
* or <code>Receive</code>. If you don't set the <code>video</code> capability to receive, the response will contain an HTTP 400 Bad Request status code. However, you can set your <code>video</code> capability
|
|
41
|
+
* to receive and you set your <code>content</code> capability to not receive.</p>
|
|
42
|
+
* </li>
|
|
43
|
+
* <li>
|
|
44
|
+
* <p>When you change an <code>audio</code> capability from <code>None</code> or <code>Receive</code> to <code>Send</code> or <code>SendReceive</code> ,
|
|
45
|
+
* and if the attendee left their microphone unmuted, audio will flow from the attendee to the other meeting participants.</p>
|
|
46
|
+
* </li>
|
|
47
|
+
* <li>
|
|
48
|
+
* <p>When you change a <code>video</code> or <code>content</code> capability from <code>None</code> or <code>Receive</code> to <code>Send</code> or <code>SendReceive</code> ,
|
|
49
|
+
* and if the attendee turned on their video or content streams, remote attendess can receive those streams, but only after media renegotiation between the client and the Amazon Chime back-end server.</p>
|
|
50
|
+
* </li>
|
|
51
|
+
* </ul>
|
|
30
52
|
*/
|
|
31
53
|
batchUpdateAttendeeCapabilitiesExcept(args: BatchUpdateAttendeeCapabilitiesExceptCommandInput, options?: __HttpHandlerOptions): Promise<BatchUpdateAttendeeCapabilitiesExceptCommandOutput>;
|
|
32
54
|
batchUpdateAttendeeCapabilitiesExcept(args: BatchUpdateAttendeeCapabilitiesExceptCommandInput, cb: (err: any, data?: BatchUpdateAttendeeCapabilitiesExceptCommandOutput) => void): void;
|
|
@@ -126,6 +148,27 @@ export declare class ChimeSDKMeetings extends ChimeSDKMeetingsClient {
|
|
|
126
148
|
stopMeetingTranscription(args: StopMeetingTranscriptionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopMeetingTranscriptionCommandOutput) => void): void;
|
|
127
149
|
/**
|
|
128
150
|
* <p>The capabilties that you want to update.</p>
|
|
151
|
+
* <note>
|
|
152
|
+
* <p>You use the capabilities with a set of values that control what the capabilities can do, such as <code>SendReceive</code> data. For more information about those values, see
|
|
153
|
+
* .</p>
|
|
154
|
+
* </note>
|
|
155
|
+
*
|
|
156
|
+
* <p>When using capabilities, be aware of these corner cases:</p>
|
|
157
|
+
* <ul>
|
|
158
|
+
* <li>
|
|
159
|
+
* <p>You can't set <code>content</code> capabilities to <code>SendReceive</code> or <code>Receive</code> unless you also set <code>video</code> capabilities to <code>SendReceive</code>
|
|
160
|
+
* or <code>Receive</code>. If you don't set the <code>video</code> capability to receive, the response will contain an HTTP 400 Bad Request status code. However, you can set your <code>video</code> capability
|
|
161
|
+
* to receive and you set your <code>content</code> capability to not receive.</p>
|
|
162
|
+
* </li>
|
|
163
|
+
* <li>
|
|
164
|
+
* <p>When you change an <code>audio</code> capability from <code>None</code> or <code>Receive</code> to <code>Send</code> or <code>SendReceive</code> ,
|
|
165
|
+
* and if the attendee left their microphone unmuted, audio will flow from the attendee to the other meeting participants.</p>
|
|
166
|
+
* </li>
|
|
167
|
+
* <li>
|
|
168
|
+
* <p>When you change a <code>video</code> or <code>content</code> capability from <code>None</code> or <code>Receive</code> to <code>Send</code> or <code>SendReceive</code> ,
|
|
169
|
+
* and if the attendee turned on their video or content streams, remote attendess can receive those streams, but only after media renegotiation between the client and the Amazon Chime back-end server.</p>
|
|
170
|
+
* </li>
|
|
171
|
+
* </ul>
|
|
129
172
|
*/
|
|
130
173
|
updateAttendeeCapabilities(args: UpdateAttendeeCapabilitiesCommandInput, options?: __HttpHandlerOptions): Promise<UpdateAttendeeCapabilitiesCommandOutput>;
|
|
131
174
|
updateAttendeeCapabilities(args: UpdateAttendeeCapabilitiesCommandInput, cb: (err: any, data?: UpdateAttendeeCapabilitiesCommandOutput) => void): void;
|
|
@@ -8,6 +8,28 @@ export interface BatchUpdateAttendeeCapabilitiesExceptCommandOutput extends __Me
|
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
10
|
* <p>Updates <code>AttendeeCapabilities</code> except the capabilities listed in an <code>ExcludedAttendeeIds</code> table.</p>
|
|
11
|
+
*
|
|
12
|
+
* <note>
|
|
13
|
+
* <p>You use the capabilities with a set of values that control what the capabilities can do, such as <code>SendReceive</code> data. For more information about those values, see
|
|
14
|
+
* .</p>
|
|
15
|
+
* </note>
|
|
16
|
+
*
|
|
17
|
+
* <p>When using capabilities, be aware of these corner cases:</p>
|
|
18
|
+
* <ul>
|
|
19
|
+
* <li>
|
|
20
|
+
* <p>You can't set <code>content</code> capabilities to <code>SendReceive</code> or <code>Receive</code> unless you also set <code>video</code> capabilities to <code>SendReceive</code>
|
|
21
|
+
* or <code>Receive</code>. If you don't set the <code>video</code> capability to receive, the response will contain an HTTP 400 Bad Request status code. However, you can set your <code>video</code> capability
|
|
22
|
+
* to receive and you set your <code>content</code> capability to not receive.</p>
|
|
23
|
+
* </li>
|
|
24
|
+
* <li>
|
|
25
|
+
* <p>When you change an <code>audio</code> capability from <code>None</code> or <code>Receive</code> to <code>Send</code> or <code>SendReceive</code> ,
|
|
26
|
+
* and if the attendee left their microphone unmuted, audio will flow from the attendee to the other meeting participants.</p>
|
|
27
|
+
* </li>
|
|
28
|
+
* <li>
|
|
29
|
+
* <p>When you change a <code>video</code> or <code>content</code> capability from <code>None</code> or <code>Receive</code> to <code>Send</code> or <code>SendReceive</code> ,
|
|
30
|
+
* and if the attendee turned on their video or content streams, remote attendess can receive those streams, but only after media renegotiation between the client and the Amazon Chime back-end server.</p>
|
|
31
|
+
* </li>
|
|
32
|
+
* </ul>
|
|
11
33
|
* @example
|
|
12
34
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
35
|
* ```javascript
|
|
@@ -8,6 +8,27 @@ export interface UpdateAttendeeCapabilitiesCommandOutput extends UpdateAttendeeC
|
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
10
|
* <p>The capabilties that you want to update.</p>
|
|
11
|
+
* <note>
|
|
12
|
+
* <p>You use the capabilities with a set of values that control what the capabilities can do, such as <code>SendReceive</code> data. For more information about those values, see
|
|
13
|
+
* .</p>
|
|
14
|
+
* </note>
|
|
15
|
+
*
|
|
16
|
+
* <p>When using capabilities, be aware of these corner cases:</p>
|
|
17
|
+
* <ul>
|
|
18
|
+
* <li>
|
|
19
|
+
* <p>You can't set <code>content</code> capabilities to <code>SendReceive</code> or <code>Receive</code> unless you also set <code>video</code> capabilities to <code>SendReceive</code>
|
|
20
|
+
* or <code>Receive</code>. If you don't set the <code>video</code> capability to receive, the response will contain an HTTP 400 Bad Request status code. However, you can set your <code>video</code> capability
|
|
21
|
+
* to receive and you set your <code>content</code> capability to not receive.</p>
|
|
22
|
+
* </li>
|
|
23
|
+
* <li>
|
|
24
|
+
* <p>When you change an <code>audio</code> capability from <code>None</code> or <code>Receive</code> to <code>Send</code> or <code>SendReceive</code> ,
|
|
25
|
+
* and if the attendee left their microphone unmuted, audio will flow from the attendee to the other meeting participants.</p>
|
|
26
|
+
* </li>
|
|
27
|
+
* <li>
|
|
28
|
+
* <p>When you change a <code>video</code> or <code>content</code> capability from <code>None</code> or <code>Receive</code> to <code>Send</code> or <code>SendReceive</code> ,
|
|
29
|
+
* and if the attendee turned on their video or content streams, remote attendess can receive those streams, but only after media renegotiation between the client and the Amazon Chime back-end server.</p>
|
|
30
|
+
* </li>
|
|
31
|
+
* </ul>
|
|
11
32
|
* @example
|
|
12
33
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
34
|
* ```javascript
|
|
@@ -7,7 +7,28 @@ export declare enum MediaCapabilities {
|
|
|
7
7
|
SEND_RECEIVE = "SendReceive"
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>The media capabilities of an attendee
|
|
10
|
+
* <p>The media capabilities of an attendee: audio, video, or content. </p>
|
|
11
|
+
* <note>
|
|
12
|
+
* <p>You use the capabilities with a set of values that control what the capabilities can do, such as <code>SendReceive</code> data. For more information about those values, see
|
|
13
|
+
* .</p>
|
|
14
|
+
* </note>
|
|
15
|
+
*
|
|
16
|
+
* <p>When using capabilities, be aware of these corner cases:</p>
|
|
17
|
+
* <ul>
|
|
18
|
+
* <li>
|
|
19
|
+
* <p>You can't set <code>content</code> capabilities to <code>SendReceive</code> or <code>Receive</code> unless you also set <code>video</code> capabilities to <code>SendReceive</code>
|
|
20
|
+
* or <code>Receive</code>. If you don't set the <code>video</code> capability to receive, the response will contain an HTTP 400 Bad Request status code. However, you can set your <code>video</code> capability
|
|
21
|
+
* to receive and you set your <code>content</code> capability to not receive.</p>
|
|
22
|
+
* </li>
|
|
23
|
+
* <li>
|
|
24
|
+
* <p>When you change an <code>audio</code> capability from <code>None</code> or <code>Receive</code> to <code>Send</code> or <code>SendReceive</code> ,
|
|
25
|
+
* and if the attendee left their microphone unmuted, audio will flow from the attendee to the other meeting participants.</p>
|
|
26
|
+
* </li>
|
|
27
|
+
* <li>
|
|
28
|
+
* <p>When you change a <code>video</code> or <code>content</code> capability from <code>None</code> or <code>Receive</code> to <code>Send</code> or <code>SendReceive</code> ,
|
|
29
|
+
* and if the attendee turned on their video or content streams, remote attendess can receive those streams, but only after media renegotiation between the client and the Amazon Chime back-end server.</p>
|
|
30
|
+
* </li>
|
|
31
|
+
* </ul>
|
|
11
32
|
*/
|
|
12
33
|
export interface AttendeeCapabilities {
|
|
13
34
|
/**
|
|
@@ -58,7 +79,28 @@ export interface Attendee {
|
|
|
58
79
|
*/
|
|
59
80
|
JoinToken?: string;
|
|
60
81
|
/**
|
|
61
|
-
* <p>The capabilities
|
|
82
|
+
* <p>The capabilities assigned to an attendee: audio, video, or content.</p>
|
|
83
|
+
* <note>
|
|
84
|
+
* <p>You use the capabilities with a set of values that control what the capabilities can do, such as <code>SendReceive</code> data. For more information about those values, see
|
|
85
|
+
* .</p>
|
|
86
|
+
* </note>
|
|
87
|
+
*
|
|
88
|
+
* <p>When using capabilities, be aware of these corner cases:</p>
|
|
89
|
+
* <ul>
|
|
90
|
+
* <li>
|
|
91
|
+
* <p>You can't set <code>content</code> capabilities to <code>SendReceive</code> or <code>Receive</code> unless you also set <code>video</code> capabilities to <code>SendReceive</code>
|
|
92
|
+
* or <code>Receive</code>. If you don't set the <code>video</code> capability to receive, the response will contain an HTTP 400 Bad Request status code. However, you can set your <code>video</code> capability
|
|
93
|
+
* to receive and you set your <code>content</code> capability to not receive.</p>
|
|
94
|
+
* </li>
|
|
95
|
+
* <li>
|
|
96
|
+
* <p>When you change an <code>audio</code> capability from <code>None</code> or <code>Receive</code> to <code>Send</code> or <code>SendReceive</code> ,
|
|
97
|
+
* and if the attendee left their microphone unmuted, audio will flow from the attendee to the other meeting participants.</p>
|
|
98
|
+
* </li>
|
|
99
|
+
* <li>
|
|
100
|
+
* <p>When you change a <code>video</code> or <code>content</code> capability from <code>None</code> or <code>Receive</code> to <code>Send</code> or <code>SendReceive</code> ,
|
|
101
|
+
* and if the attendee turned on their video or content streams, remote attendess can receive those streams, but only after media renegotiation between the client and the Amazon Chime back-end server.</p>
|
|
102
|
+
* </li>
|
|
103
|
+
* </ul>
|
|
62
104
|
*/
|
|
63
105
|
Capabilities?: AttendeeCapabilities;
|
|
64
106
|
}
|
|
@@ -245,7 +287,7 @@ export declare class NotFoundException extends __BaseException {
|
|
|
245
287
|
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
246
288
|
}
|
|
247
289
|
/**
|
|
248
|
-
* <p>The service
|
|
290
|
+
* <p>The service encountered an unexpected error.</p>
|
|
249
291
|
*/
|
|
250
292
|
export declare class ServiceFailureException extends __BaseException {
|
|
251
293
|
readonly name: "ServiceFailureException";
|
|
@@ -280,7 +322,7 @@ export declare class ServiceUnavailableException extends __BaseException {
|
|
|
280
322
|
constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
|
|
281
323
|
}
|
|
282
324
|
/**
|
|
283
|
-
* <p>The number of requests exceeds the limit.</p>
|
|
325
|
+
* <p>The number of customer requests exceeds the request rate limit.</p>
|
|
284
326
|
*/
|
|
285
327
|
export declare class ThrottlingException extends __BaseException {
|
|
286
328
|
readonly name: "ThrottlingException";
|
|
@@ -373,6 +415,28 @@ export interface CreateAttendeeRequest {
|
|
|
373
415
|
/**
|
|
374
416
|
* <p>The capabilities (<code>audio</code>, <code>video</code>, or <code>content</code>) that you want to grant an attendee. If you don't specify capabilities, all users have send and receive capabilities on
|
|
375
417
|
* all media channels by default.</p>
|
|
418
|
+
*
|
|
419
|
+
* <note>
|
|
420
|
+
* <p>You use the capabilities with a set of values that control what the capabilities can do, such as <code>SendReceive</code> data. For more information about those values, see
|
|
421
|
+
* .</p>
|
|
422
|
+
* </note>
|
|
423
|
+
*
|
|
424
|
+
* <p>When using capabilities, be aware of these corner cases:</p>
|
|
425
|
+
* <ul>
|
|
426
|
+
* <li>
|
|
427
|
+
* <p>You can't set <code>content</code> capabilities to <code>SendReceive</code> or <code>Receive</code> unless you also set <code>video</code> capabilities to <code>SendReceive</code>
|
|
428
|
+
* or <code>Receive</code>. If you don't set the <code>video</code> capability to receive, the response will contain an HTTP 400 Bad Request status code. However, you can set your <code>video</code> capability
|
|
429
|
+
* to receive and you set your <code>content</code> capability to not receive.</p>
|
|
430
|
+
* </li>
|
|
431
|
+
* <li>
|
|
432
|
+
* <p>When you change an <code>audio</code> capability from <code>None</code> or <code>Receive</code> to <code>Send</code> or <code>SendReceive</code> ,
|
|
433
|
+
* and if the attendee left their microphone unmuted, audio will flow from the attendee to the other meeting participants.</p>
|
|
434
|
+
* </li>
|
|
435
|
+
* <li>
|
|
436
|
+
* <p>When you change a <code>video</code> or <code>content</code> capability from <code>None</code> or <code>Receive</code> to <code>Send</code> or <code>SendReceive</code> ,
|
|
437
|
+
* and if the attendee turned on their video or content streams, remote attendess can receive those streams, but only after media renegotiation between the client and the Amazon Chime back-end server.</p>
|
|
438
|
+
* </li>
|
|
439
|
+
* </ul>
|
|
376
440
|
*/
|
|
377
441
|
Capabilities?: AttendeeCapabilities;
|
|
378
442
|
}
|
|
@@ -484,6 +548,10 @@ export interface CreateMeetingRequest {
|
|
|
484
548
|
* <p>When specified, replicates the media from the primary meeting to the new meeting.</p>
|
|
485
549
|
*/
|
|
486
550
|
PrimaryMeetingId?: string;
|
|
551
|
+
/**
|
|
552
|
+
* <p>A consistent and opaque identifier, created and maintained by the builder to represent a segment of their users.</p>
|
|
553
|
+
*/
|
|
554
|
+
TenantIds?: string[];
|
|
487
555
|
}
|
|
488
556
|
export declare namespace CreateMeetingRequest {
|
|
489
557
|
/**
|
|
@@ -572,6 +640,10 @@ export interface Meeting {
|
|
|
572
640
|
* <p>When specified, replicates the media from the primary meeting to this meeting.</p>
|
|
573
641
|
*/
|
|
574
642
|
PrimaryMeetingId?: string;
|
|
643
|
+
/**
|
|
644
|
+
* <p>Array of strings.</p>
|
|
645
|
+
*/
|
|
646
|
+
TenantIds?: string[];
|
|
575
647
|
}
|
|
576
648
|
export declare namespace Meeting {
|
|
577
649
|
/**
|
|
@@ -648,6 +720,10 @@ export interface CreateMeetingWithAttendeesRequest {
|
|
|
648
720
|
* <p>When specified, replicates the media from the primary meeting to the new meeting.</p>
|
|
649
721
|
*/
|
|
650
722
|
PrimaryMeetingId?: string;
|
|
723
|
+
/**
|
|
724
|
+
* <p>A consistent and opaque identifier, created and maintained by the builder to represent a segment of their users.</p>
|
|
725
|
+
*/
|
|
726
|
+
TenantIds?: string[];
|
|
651
727
|
}
|
|
652
728
|
export declare namespace CreateMeetingWithAttendeesRequest {
|
|
653
729
|
/**
|
|
@@ -840,7 +916,7 @@ export interface EngineTranscribeMedicalSettings {
|
|
|
840
916
|
*/
|
|
841
917
|
VocabularyName?: string;
|
|
842
918
|
/**
|
|
843
|
-
* <p>The AWS Region passed to Amazon Transcribe Medical. If you don't specify a Region, Amazon Chime uses the meeting's Region
|
|
919
|
+
* <p>The AWS Region passed to Amazon Transcribe Medical. If you don't specify a Region, Amazon Chime uses the meeting's Region. </p>
|
|
844
920
|
*/
|
|
845
921
|
Region?: TranscribeMedicalRegion | string;
|
|
846
922
|
/**
|
|
@@ -1046,19 +1122,7 @@ export declare namespace UpdateAttendeeCapabilitiesRequest {
|
|
|
1046
1122
|
}
|
|
1047
1123
|
export interface UpdateAttendeeCapabilitiesResponse {
|
|
1048
1124
|
/**
|
|
1049
|
-
* <p>
|
|
1050
|
-
* <code>AttendeeId</code> and <code>JoinToken</code>. The
|
|
1051
|
-
* <code>JoinToken</code>
|
|
1052
|
-
* allows a client to authenticate and join as the specified attendee. The
|
|
1053
|
-
* <code>JoinToken</code>
|
|
1054
|
-
* expires when the meeting ends, or when
|
|
1055
|
-
* <a>DeleteAttendee</a>
|
|
1056
|
-
* is called. After that, the attendee is unable to join the meeting.
|
|
1057
|
-
* </p>
|
|
1058
|
-
*
|
|
1059
|
-
* <p>We recommend securely transferring each <code>JoinToken</code> from your server application
|
|
1060
|
-
* to the client so that no other client has access to the token except for the one
|
|
1061
|
-
* authorized to represent the attendee.</p>
|
|
1125
|
+
* <p>The updated attendee data.</p>
|
|
1062
1126
|
*/
|
|
1063
1127
|
Attendee?: Attendee;
|
|
1064
1128
|
}
|
|
@@ -278,6 +278,8 @@ export interface CreateMeetingRequest {
|
|
|
278
278
|
MeetingFeatures?: MeetingFeaturesConfiguration;
|
|
279
279
|
|
|
280
280
|
PrimaryMeetingId?: string;
|
|
281
|
+
|
|
282
|
+
TenantIds?: string[];
|
|
281
283
|
}
|
|
282
284
|
export declare namespace CreateMeetingRequest {
|
|
283
285
|
|
|
@@ -322,6 +324,8 @@ export interface Meeting {
|
|
|
322
324
|
MeetingFeatures?: MeetingFeaturesConfiguration;
|
|
323
325
|
|
|
324
326
|
PrimaryMeetingId?: string;
|
|
327
|
+
|
|
328
|
+
TenantIds?: string[];
|
|
325
329
|
}
|
|
326
330
|
export declare namespace Meeting {
|
|
327
331
|
|
|
@@ -352,6 +356,8 @@ export interface CreateMeetingWithAttendeesRequest {
|
|
|
352
356
|
Attendees: CreateAttendeeRequestItem[] | undefined;
|
|
353
357
|
|
|
354
358
|
PrimaryMeetingId?: string;
|
|
359
|
+
|
|
360
|
+
TenantIds?: string[];
|
|
355
361
|
}
|
|
356
362
|
export declare namespace CreateMeetingWithAttendeesRequest {
|
|
357
363
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-chime-sdk-meetings",
|
|
3
3
|
"description": "AWS SDK for JavaScript Chime Sdk Meetings Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.125.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|