@aws-sdk/client-chime-sdk-meetings 3.315.0 → 3.316.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/dist-cjs/ChimeSDKMeetings.js +20 -224
- package/dist-cjs/protocols/Aws_restJson1.js +2 -2
- package/dist-es/ChimeSDKMeetings.js +20 -224
- package/dist-es/protocols/Aws_restJson1.js +2 -2
- package/dist-types/ChimeSDKMeetings.d.ts +25 -146
- package/dist-types/ts3.4/ChimeSDKMeetings.d.ts +4 -1
- package/package.json +6 -6
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.ChimeSDKMeetings = void 0;
|
|
4
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
4
5
|
const ChimeSDKMeetingsClient_1 = require("./ChimeSDKMeetingsClient");
|
|
5
6
|
const BatchCreateAttendeeCommand_1 = require("./commands/BatchCreateAttendeeCommand");
|
|
6
7
|
const BatchUpdateAttendeeCapabilitiesExceptCommand_1 = require("./commands/BatchUpdateAttendeeCapabilitiesExceptCommand");
|
|
@@ -18,230 +19,25 @@ const StopMeetingTranscriptionCommand_1 = require("./commands/StopMeetingTranscr
|
|
|
18
19
|
const TagResourceCommand_1 = require("./commands/TagResourceCommand");
|
|
19
20
|
const UntagResourceCommand_1 = require("./commands/UntagResourceCommand");
|
|
20
21
|
const UpdateAttendeeCapabilitiesCommand_1 = require("./commands/UpdateAttendeeCapabilitiesCommand");
|
|
22
|
+
const commands = {
|
|
23
|
+
BatchCreateAttendeeCommand: BatchCreateAttendeeCommand_1.BatchCreateAttendeeCommand,
|
|
24
|
+
BatchUpdateAttendeeCapabilitiesExceptCommand: BatchUpdateAttendeeCapabilitiesExceptCommand_1.BatchUpdateAttendeeCapabilitiesExceptCommand,
|
|
25
|
+
CreateAttendeeCommand: CreateAttendeeCommand_1.CreateAttendeeCommand,
|
|
26
|
+
CreateMeetingCommand: CreateMeetingCommand_1.CreateMeetingCommand,
|
|
27
|
+
CreateMeetingWithAttendeesCommand: CreateMeetingWithAttendeesCommand_1.CreateMeetingWithAttendeesCommand,
|
|
28
|
+
DeleteAttendeeCommand: DeleteAttendeeCommand_1.DeleteAttendeeCommand,
|
|
29
|
+
DeleteMeetingCommand: DeleteMeetingCommand_1.DeleteMeetingCommand,
|
|
30
|
+
GetAttendeeCommand: GetAttendeeCommand_1.GetAttendeeCommand,
|
|
31
|
+
GetMeetingCommand: GetMeetingCommand_1.GetMeetingCommand,
|
|
32
|
+
ListAttendeesCommand: ListAttendeesCommand_1.ListAttendeesCommand,
|
|
33
|
+
ListTagsForResourceCommand: ListTagsForResourceCommand_1.ListTagsForResourceCommand,
|
|
34
|
+
StartMeetingTranscriptionCommand: StartMeetingTranscriptionCommand_1.StartMeetingTranscriptionCommand,
|
|
35
|
+
StopMeetingTranscriptionCommand: StopMeetingTranscriptionCommand_1.StopMeetingTranscriptionCommand,
|
|
36
|
+
TagResourceCommand: TagResourceCommand_1.TagResourceCommand,
|
|
37
|
+
UntagResourceCommand: UntagResourceCommand_1.UntagResourceCommand,
|
|
38
|
+
UpdateAttendeeCapabilitiesCommand: UpdateAttendeeCapabilitiesCommand_1.UpdateAttendeeCapabilitiesCommand,
|
|
39
|
+
};
|
|
21
40
|
class ChimeSDKMeetings extends ChimeSDKMeetingsClient_1.ChimeSDKMeetingsClient {
|
|
22
|
-
batchCreateAttendee(args, optionsOrCb, cb) {
|
|
23
|
-
const command = new BatchCreateAttendeeCommand_1.BatchCreateAttendeeCommand(args);
|
|
24
|
-
if (typeof optionsOrCb === "function") {
|
|
25
|
-
this.send(command, optionsOrCb);
|
|
26
|
-
}
|
|
27
|
-
else if (typeof cb === "function") {
|
|
28
|
-
if (typeof optionsOrCb !== "object")
|
|
29
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
30
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
31
|
-
}
|
|
32
|
-
else {
|
|
33
|
-
return this.send(command, optionsOrCb);
|
|
34
|
-
}
|
|
35
|
-
}
|
|
36
|
-
batchUpdateAttendeeCapabilitiesExcept(args, optionsOrCb, cb) {
|
|
37
|
-
const command = new BatchUpdateAttendeeCapabilitiesExceptCommand_1.BatchUpdateAttendeeCapabilitiesExceptCommand(args);
|
|
38
|
-
if (typeof optionsOrCb === "function") {
|
|
39
|
-
this.send(command, optionsOrCb);
|
|
40
|
-
}
|
|
41
|
-
else if (typeof cb === "function") {
|
|
42
|
-
if (typeof optionsOrCb !== "object")
|
|
43
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
44
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
45
|
-
}
|
|
46
|
-
else {
|
|
47
|
-
return this.send(command, optionsOrCb);
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
|
-
createAttendee(args, optionsOrCb, cb) {
|
|
51
|
-
const command = new CreateAttendeeCommand_1.CreateAttendeeCommand(args);
|
|
52
|
-
if (typeof optionsOrCb === "function") {
|
|
53
|
-
this.send(command, optionsOrCb);
|
|
54
|
-
}
|
|
55
|
-
else if (typeof cb === "function") {
|
|
56
|
-
if (typeof optionsOrCb !== "object")
|
|
57
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
58
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
59
|
-
}
|
|
60
|
-
else {
|
|
61
|
-
return this.send(command, optionsOrCb);
|
|
62
|
-
}
|
|
63
|
-
}
|
|
64
|
-
createMeeting(args, optionsOrCb, cb) {
|
|
65
|
-
const command = new CreateMeetingCommand_1.CreateMeetingCommand(args);
|
|
66
|
-
if (typeof optionsOrCb === "function") {
|
|
67
|
-
this.send(command, optionsOrCb);
|
|
68
|
-
}
|
|
69
|
-
else if (typeof cb === "function") {
|
|
70
|
-
if (typeof optionsOrCb !== "object")
|
|
71
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
72
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
73
|
-
}
|
|
74
|
-
else {
|
|
75
|
-
return this.send(command, optionsOrCb);
|
|
76
|
-
}
|
|
77
|
-
}
|
|
78
|
-
createMeetingWithAttendees(args, optionsOrCb, cb) {
|
|
79
|
-
const command = new CreateMeetingWithAttendeesCommand_1.CreateMeetingWithAttendeesCommand(args);
|
|
80
|
-
if (typeof optionsOrCb === "function") {
|
|
81
|
-
this.send(command, optionsOrCb);
|
|
82
|
-
}
|
|
83
|
-
else if (typeof cb === "function") {
|
|
84
|
-
if (typeof optionsOrCb !== "object")
|
|
85
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
86
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
87
|
-
}
|
|
88
|
-
else {
|
|
89
|
-
return this.send(command, optionsOrCb);
|
|
90
|
-
}
|
|
91
|
-
}
|
|
92
|
-
deleteAttendee(args, optionsOrCb, cb) {
|
|
93
|
-
const command = new DeleteAttendeeCommand_1.DeleteAttendeeCommand(args);
|
|
94
|
-
if (typeof optionsOrCb === "function") {
|
|
95
|
-
this.send(command, optionsOrCb);
|
|
96
|
-
}
|
|
97
|
-
else if (typeof cb === "function") {
|
|
98
|
-
if (typeof optionsOrCb !== "object")
|
|
99
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
100
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
101
|
-
}
|
|
102
|
-
else {
|
|
103
|
-
return this.send(command, optionsOrCb);
|
|
104
|
-
}
|
|
105
|
-
}
|
|
106
|
-
deleteMeeting(args, optionsOrCb, cb) {
|
|
107
|
-
const command = new DeleteMeetingCommand_1.DeleteMeetingCommand(args);
|
|
108
|
-
if (typeof optionsOrCb === "function") {
|
|
109
|
-
this.send(command, optionsOrCb);
|
|
110
|
-
}
|
|
111
|
-
else if (typeof cb === "function") {
|
|
112
|
-
if (typeof optionsOrCb !== "object")
|
|
113
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
114
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
115
|
-
}
|
|
116
|
-
else {
|
|
117
|
-
return this.send(command, optionsOrCb);
|
|
118
|
-
}
|
|
119
|
-
}
|
|
120
|
-
getAttendee(args, optionsOrCb, cb) {
|
|
121
|
-
const command = new GetAttendeeCommand_1.GetAttendeeCommand(args);
|
|
122
|
-
if (typeof optionsOrCb === "function") {
|
|
123
|
-
this.send(command, optionsOrCb);
|
|
124
|
-
}
|
|
125
|
-
else if (typeof cb === "function") {
|
|
126
|
-
if (typeof optionsOrCb !== "object")
|
|
127
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
128
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
129
|
-
}
|
|
130
|
-
else {
|
|
131
|
-
return this.send(command, optionsOrCb);
|
|
132
|
-
}
|
|
133
|
-
}
|
|
134
|
-
getMeeting(args, optionsOrCb, cb) {
|
|
135
|
-
const command = new GetMeetingCommand_1.GetMeetingCommand(args);
|
|
136
|
-
if (typeof optionsOrCb === "function") {
|
|
137
|
-
this.send(command, optionsOrCb);
|
|
138
|
-
}
|
|
139
|
-
else if (typeof cb === "function") {
|
|
140
|
-
if (typeof optionsOrCb !== "object")
|
|
141
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
142
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
143
|
-
}
|
|
144
|
-
else {
|
|
145
|
-
return this.send(command, optionsOrCb);
|
|
146
|
-
}
|
|
147
|
-
}
|
|
148
|
-
listAttendees(args, optionsOrCb, cb) {
|
|
149
|
-
const command = new ListAttendeesCommand_1.ListAttendeesCommand(args);
|
|
150
|
-
if (typeof optionsOrCb === "function") {
|
|
151
|
-
this.send(command, optionsOrCb);
|
|
152
|
-
}
|
|
153
|
-
else if (typeof cb === "function") {
|
|
154
|
-
if (typeof optionsOrCb !== "object")
|
|
155
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
156
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
157
|
-
}
|
|
158
|
-
else {
|
|
159
|
-
return this.send(command, optionsOrCb);
|
|
160
|
-
}
|
|
161
|
-
}
|
|
162
|
-
listTagsForResource(args, optionsOrCb, cb) {
|
|
163
|
-
const command = new ListTagsForResourceCommand_1.ListTagsForResourceCommand(args);
|
|
164
|
-
if (typeof optionsOrCb === "function") {
|
|
165
|
-
this.send(command, optionsOrCb);
|
|
166
|
-
}
|
|
167
|
-
else if (typeof cb === "function") {
|
|
168
|
-
if (typeof optionsOrCb !== "object")
|
|
169
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
170
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
171
|
-
}
|
|
172
|
-
else {
|
|
173
|
-
return this.send(command, optionsOrCb);
|
|
174
|
-
}
|
|
175
|
-
}
|
|
176
|
-
startMeetingTranscription(args, optionsOrCb, cb) {
|
|
177
|
-
const command = new StartMeetingTranscriptionCommand_1.StartMeetingTranscriptionCommand(args);
|
|
178
|
-
if (typeof optionsOrCb === "function") {
|
|
179
|
-
this.send(command, optionsOrCb);
|
|
180
|
-
}
|
|
181
|
-
else if (typeof cb === "function") {
|
|
182
|
-
if (typeof optionsOrCb !== "object")
|
|
183
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
184
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
185
|
-
}
|
|
186
|
-
else {
|
|
187
|
-
return this.send(command, optionsOrCb);
|
|
188
|
-
}
|
|
189
|
-
}
|
|
190
|
-
stopMeetingTranscription(args, optionsOrCb, cb) {
|
|
191
|
-
const command = new StopMeetingTranscriptionCommand_1.StopMeetingTranscriptionCommand(args);
|
|
192
|
-
if (typeof optionsOrCb === "function") {
|
|
193
|
-
this.send(command, optionsOrCb);
|
|
194
|
-
}
|
|
195
|
-
else if (typeof cb === "function") {
|
|
196
|
-
if (typeof optionsOrCb !== "object")
|
|
197
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
198
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
199
|
-
}
|
|
200
|
-
else {
|
|
201
|
-
return this.send(command, optionsOrCb);
|
|
202
|
-
}
|
|
203
|
-
}
|
|
204
|
-
tagResource(args, optionsOrCb, cb) {
|
|
205
|
-
const command = new TagResourceCommand_1.TagResourceCommand(args);
|
|
206
|
-
if (typeof optionsOrCb === "function") {
|
|
207
|
-
this.send(command, optionsOrCb);
|
|
208
|
-
}
|
|
209
|
-
else if (typeof cb === "function") {
|
|
210
|
-
if (typeof optionsOrCb !== "object")
|
|
211
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
212
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
213
|
-
}
|
|
214
|
-
else {
|
|
215
|
-
return this.send(command, optionsOrCb);
|
|
216
|
-
}
|
|
217
|
-
}
|
|
218
|
-
untagResource(args, optionsOrCb, cb) {
|
|
219
|
-
const command = new UntagResourceCommand_1.UntagResourceCommand(args);
|
|
220
|
-
if (typeof optionsOrCb === "function") {
|
|
221
|
-
this.send(command, optionsOrCb);
|
|
222
|
-
}
|
|
223
|
-
else if (typeof cb === "function") {
|
|
224
|
-
if (typeof optionsOrCb !== "object")
|
|
225
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
226
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
227
|
-
}
|
|
228
|
-
else {
|
|
229
|
-
return this.send(command, optionsOrCb);
|
|
230
|
-
}
|
|
231
|
-
}
|
|
232
|
-
updateAttendeeCapabilities(args, optionsOrCb, cb) {
|
|
233
|
-
const command = new UpdateAttendeeCapabilitiesCommand_1.UpdateAttendeeCapabilitiesCommand(args);
|
|
234
|
-
if (typeof optionsOrCb === "function") {
|
|
235
|
-
this.send(command, optionsOrCb);
|
|
236
|
-
}
|
|
237
|
-
else if (typeof cb === "function") {
|
|
238
|
-
if (typeof optionsOrCb !== "object")
|
|
239
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
240
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
241
|
-
}
|
|
242
|
-
else {
|
|
243
|
-
return this.send(command, optionsOrCb);
|
|
244
|
-
}
|
|
245
|
-
}
|
|
246
41
|
}
|
|
247
42
|
exports.ChimeSDKMeetings = ChimeSDKMeetings;
|
|
43
|
+
(0, smithy_client_1.createAggregatedClient)(commands, ChimeSDKMeetings);
|
|
@@ -91,7 +91,7 @@ const se_CreateMeetingCommand = async (input, context) => {
|
|
|
91
91
|
const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/meetings";
|
|
92
92
|
let body;
|
|
93
93
|
body = JSON.stringify((0, smithy_client_1.take)(input, {
|
|
94
|
-
ClientRequestToken: (_) => _ ?? (0, uuid_1.v4)(),
|
|
94
|
+
ClientRequestToken: [true, (_) => _ ?? (0, uuid_1.v4)()],
|
|
95
95
|
ExternalMeetingId: [],
|
|
96
96
|
MediaRegion: [],
|
|
97
97
|
MeetingFeatures: (_) => (0, smithy_client_1._json)(_),
|
|
@@ -124,7 +124,7 @@ const se_CreateMeetingWithAttendeesCommand = async (input, context) => {
|
|
|
124
124
|
let body;
|
|
125
125
|
body = JSON.stringify((0, smithy_client_1.take)(input, {
|
|
126
126
|
Attendees: (_) => (0, smithy_client_1._json)(_),
|
|
127
|
-
ClientRequestToken: (_) => _ ?? (0, uuid_1.v4)(),
|
|
127
|
+
ClientRequestToken: [true, (_) => _ ?? (0, uuid_1.v4)()],
|
|
128
128
|
ExternalMeetingId: [],
|
|
129
129
|
MediaRegion: [],
|
|
130
130
|
MeetingFeatures: (_) => (0, smithy_client_1._json)(_),
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { createAggregatedClient } from "@aws-sdk/smithy-client";
|
|
1
2
|
import { ChimeSDKMeetingsClient } from "./ChimeSDKMeetingsClient";
|
|
2
3
|
import { BatchCreateAttendeeCommand, } from "./commands/BatchCreateAttendeeCommand";
|
|
3
4
|
import { BatchUpdateAttendeeCapabilitiesExceptCommand, } from "./commands/BatchUpdateAttendeeCapabilitiesExceptCommand";
|
|
@@ -15,229 +16,24 @@ import { StopMeetingTranscriptionCommand, } from "./commands/StopMeetingTranscri
|
|
|
15
16
|
import { TagResourceCommand } from "./commands/TagResourceCommand";
|
|
16
17
|
import { UntagResourceCommand, } from "./commands/UntagResourceCommand";
|
|
17
18
|
import { UpdateAttendeeCapabilitiesCommand, } from "./commands/UpdateAttendeeCapabilitiesCommand";
|
|
19
|
+
const commands = {
|
|
20
|
+
BatchCreateAttendeeCommand,
|
|
21
|
+
BatchUpdateAttendeeCapabilitiesExceptCommand,
|
|
22
|
+
CreateAttendeeCommand,
|
|
23
|
+
CreateMeetingCommand,
|
|
24
|
+
CreateMeetingWithAttendeesCommand,
|
|
25
|
+
DeleteAttendeeCommand,
|
|
26
|
+
DeleteMeetingCommand,
|
|
27
|
+
GetAttendeeCommand,
|
|
28
|
+
GetMeetingCommand,
|
|
29
|
+
ListAttendeesCommand,
|
|
30
|
+
ListTagsForResourceCommand,
|
|
31
|
+
StartMeetingTranscriptionCommand,
|
|
32
|
+
StopMeetingTranscriptionCommand,
|
|
33
|
+
TagResourceCommand,
|
|
34
|
+
UntagResourceCommand,
|
|
35
|
+
UpdateAttendeeCapabilitiesCommand,
|
|
36
|
+
};
|
|
18
37
|
export class ChimeSDKMeetings extends ChimeSDKMeetingsClient {
|
|
19
|
-
batchCreateAttendee(args, optionsOrCb, cb) {
|
|
20
|
-
const command = new BatchCreateAttendeeCommand(args);
|
|
21
|
-
if (typeof optionsOrCb === "function") {
|
|
22
|
-
this.send(command, optionsOrCb);
|
|
23
|
-
}
|
|
24
|
-
else if (typeof cb === "function") {
|
|
25
|
-
if (typeof optionsOrCb !== "object")
|
|
26
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
27
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
28
|
-
}
|
|
29
|
-
else {
|
|
30
|
-
return this.send(command, optionsOrCb);
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
batchUpdateAttendeeCapabilitiesExcept(args, optionsOrCb, cb) {
|
|
34
|
-
const command = new BatchUpdateAttendeeCapabilitiesExceptCommand(args);
|
|
35
|
-
if (typeof optionsOrCb === "function") {
|
|
36
|
-
this.send(command, optionsOrCb);
|
|
37
|
-
}
|
|
38
|
-
else if (typeof cb === "function") {
|
|
39
|
-
if (typeof optionsOrCb !== "object")
|
|
40
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
41
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
42
|
-
}
|
|
43
|
-
else {
|
|
44
|
-
return this.send(command, optionsOrCb);
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
createAttendee(args, optionsOrCb, cb) {
|
|
48
|
-
const command = new CreateAttendeeCommand(args);
|
|
49
|
-
if (typeof optionsOrCb === "function") {
|
|
50
|
-
this.send(command, optionsOrCb);
|
|
51
|
-
}
|
|
52
|
-
else if (typeof cb === "function") {
|
|
53
|
-
if (typeof optionsOrCb !== "object")
|
|
54
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
55
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
56
|
-
}
|
|
57
|
-
else {
|
|
58
|
-
return this.send(command, optionsOrCb);
|
|
59
|
-
}
|
|
60
|
-
}
|
|
61
|
-
createMeeting(args, optionsOrCb, cb) {
|
|
62
|
-
const command = new CreateMeetingCommand(args);
|
|
63
|
-
if (typeof optionsOrCb === "function") {
|
|
64
|
-
this.send(command, optionsOrCb);
|
|
65
|
-
}
|
|
66
|
-
else if (typeof cb === "function") {
|
|
67
|
-
if (typeof optionsOrCb !== "object")
|
|
68
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
69
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
70
|
-
}
|
|
71
|
-
else {
|
|
72
|
-
return this.send(command, optionsOrCb);
|
|
73
|
-
}
|
|
74
|
-
}
|
|
75
|
-
createMeetingWithAttendees(args, optionsOrCb, cb) {
|
|
76
|
-
const command = new CreateMeetingWithAttendeesCommand(args);
|
|
77
|
-
if (typeof optionsOrCb === "function") {
|
|
78
|
-
this.send(command, optionsOrCb);
|
|
79
|
-
}
|
|
80
|
-
else if (typeof cb === "function") {
|
|
81
|
-
if (typeof optionsOrCb !== "object")
|
|
82
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
83
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
84
|
-
}
|
|
85
|
-
else {
|
|
86
|
-
return this.send(command, optionsOrCb);
|
|
87
|
-
}
|
|
88
|
-
}
|
|
89
|
-
deleteAttendee(args, optionsOrCb, cb) {
|
|
90
|
-
const command = new DeleteAttendeeCommand(args);
|
|
91
|
-
if (typeof optionsOrCb === "function") {
|
|
92
|
-
this.send(command, optionsOrCb);
|
|
93
|
-
}
|
|
94
|
-
else if (typeof cb === "function") {
|
|
95
|
-
if (typeof optionsOrCb !== "object")
|
|
96
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
97
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
98
|
-
}
|
|
99
|
-
else {
|
|
100
|
-
return this.send(command, optionsOrCb);
|
|
101
|
-
}
|
|
102
|
-
}
|
|
103
|
-
deleteMeeting(args, optionsOrCb, cb) {
|
|
104
|
-
const command = new DeleteMeetingCommand(args);
|
|
105
|
-
if (typeof optionsOrCb === "function") {
|
|
106
|
-
this.send(command, optionsOrCb);
|
|
107
|
-
}
|
|
108
|
-
else if (typeof cb === "function") {
|
|
109
|
-
if (typeof optionsOrCb !== "object")
|
|
110
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
111
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
112
|
-
}
|
|
113
|
-
else {
|
|
114
|
-
return this.send(command, optionsOrCb);
|
|
115
|
-
}
|
|
116
|
-
}
|
|
117
|
-
getAttendee(args, optionsOrCb, cb) {
|
|
118
|
-
const command = new GetAttendeeCommand(args);
|
|
119
|
-
if (typeof optionsOrCb === "function") {
|
|
120
|
-
this.send(command, optionsOrCb);
|
|
121
|
-
}
|
|
122
|
-
else if (typeof cb === "function") {
|
|
123
|
-
if (typeof optionsOrCb !== "object")
|
|
124
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
125
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
126
|
-
}
|
|
127
|
-
else {
|
|
128
|
-
return this.send(command, optionsOrCb);
|
|
129
|
-
}
|
|
130
|
-
}
|
|
131
|
-
getMeeting(args, optionsOrCb, cb) {
|
|
132
|
-
const command = new GetMeetingCommand(args);
|
|
133
|
-
if (typeof optionsOrCb === "function") {
|
|
134
|
-
this.send(command, optionsOrCb);
|
|
135
|
-
}
|
|
136
|
-
else if (typeof cb === "function") {
|
|
137
|
-
if (typeof optionsOrCb !== "object")
|
|
138
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
139
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
140
|
-
}
|
|
141
|
-
else {
|
|
142
|
-
return this.send(command, optionsOrCb);
|
|
143
|
-
}
|
|
144
|
-
}
|
|
145
|
-
listAttendees(args, optionsOrCb, cb) {
|
|
146
|
-
const command = new ListAttendeesCommand(args);
|
|
147
|
-
if (typeof optionsOrCb === "function") {
|
|
148
|
-
this.send(command, optionsOrCb);
|
|
149
|
-
}
|
|
150
|
-
else if (typeof cb === "function") {
|
|
151
|
-
if (typeof optionsOrCb !== "object")
|
|
152
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
153
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
154
|
-
}
|
|
155
|
-
else {
|
|
156
|
-
return this.send(command, optionsOrCb);
|
|
157
|
-
}
|
|
158
|
-
}
|
|
159
|
-
listTagsForResource(args, optionsOrCb, cb) {
|
|
160
|
-
const command = new ListTagsForResourceCommand(args);
|
|
161
|
-
if (typeof optionsOrCb === "function") {
|
|
162
|
-
this.send(command, optionsOrCb);
|
|
163
|
-
}
|
|
164
|
-
else if (typeof cb === "function") {
|
|
165
|
-
if (typeof optionsOrCb !== "object")
|
|
166
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
167
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
168
|
-
}
|
|
169
|
-
else {
|
|
170
|
-
return this.send(command, optionsOrCb);
|
|
171
|
-
}
|
|
172
|
-
}
|
|
173
|
-
startMeetingTranscription(args, optionsOrCb, cb) {
|
|
174
|
-
const command = new StartMeetingTranscriptionCommand(args);
|
|
175
|
-
if (typeof optionsOrCb === "function") {
|
|
176
|
-
this.send(command, optionsOrCb);
|
|
177
|
-
}
|
|
178
|
-
else if (typeof cb === "function") {
|
|
179
|
-
if (typeof optionsOrCb !== "object")
|
|
180
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
181
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
182
|
-
}
|
|
183
|
-
else {
|
|
184
|
-
return this.send(command, optionsOrCb);
|
|
185
|
-
}
|
|
186
|
-
}
|
|
187
|
-
stopMeetingTranscription(args, optionsOrCb, cb) {
|
|
188
|
-
const command = new StopMeetingTranscriptionCommand(args);
|
|
189
|
-
if (typeof optionsOrCb === "function") {
|
|
190
|
-
this.send(command, optionsOrCb);
|
|
191
|
-
}
|
|
192
|
-
else if (typeof cb === "function") {
|
|
193
|
-
if (typeof optionsOrCb !== "object")
|
|
194
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
195
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
196
|
-
}
|
|
197
|
-
else {
|
|
198
|
-
return this.send(command, optionsOrCb);
|
|
199
|
-
}
|
|
200
|
-
}
|
|
201
|
-
tagResource(args, optionsOrCb, cb) {
|
|
202
|
-
const command = new TagResourceCommand(args);
|
|
203
|
-
if (typeof optionsOrCb === "function") {
|
|
204
|
-
this.send(command, optionsOrCb);
|
|
205
|
-
}
|
|
206
|
-
else if (typeof cb === "function") {
|
|
207
|
-
if (typeof optionsOrCb !== "object")
|
|
208
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
209
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
210
|
-
}
|
|
211
|
-
else {
|
|
212
|
-
return this.send(command, optionsOrCb);
|
|
213
|
-
}
|
|
214
|
-
}
|
|
215
|
-
untagResource(args, optionsOrCb, cb) {
|
|
216
|
-
const command = new UntagResourceCommand(args);
|
|
217
|
-
if (typeof optionsOrCb === "function") {
|
|
218
|
-
this.send(command, optionsOrCb);
|
|
219
|
-
}
|
|
220
|
-
else if (typeof cb === "function") {
|
|
221
|
-
if (typeof optionsOrCb !== "object")
|
|
222
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
223
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
224
|
-
}
|
|
225
|
-
else {
|
|
226
|
-
return this.send(command, optionsOrCb);
|
|
227
|
-
}
|
|
228
|
-
}
|
|
229
|
-
updateAttendeeCapabilities(args, optionsOrCb, cb) {
|
|
230
|
-
const command = new UpdateAttendeeCapabilitiesCommand(args);
|
|
231
|
-
if (typeof optionsOrCb === "function") {
|
|
232
|
-
this.send(command, optionsOrCb);
|
|
233
|
-
}
|
|
234
|
-
else if (typeof cb === "function") {
|
|
235
|
-
if (typeof optionsOrCb !== "object")
|
|
236
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
237
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
238
|
-
}
|
|
239
|
-
else {
|
|
240
|
-
return this.send(command, optionsOrCb);
|
|
241
|
-
}
|
|
242
|
-
}
|
|
243
38
|
}
|
|
39
|
+
createAggregatedClient(commands, ChimeSDKMeetings);
|
|
@@ -85,7 +85,7 @@ export const se_CreateMeetingCommand = async (input, context) => {
|
|
|
85
85
|
const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/meetings";
|
|
86
86
|
let body;
|
|
87
87
|
body = JSON.stringify(take(input, {
|
|
88
|
-
ClientRequestToken: (_) => _ ?? generateIdempotencyToken(),
|
|
88
|
+
ClientRequestToken: [true, (_) => _ ?? generateIdempotencyToken()],
|
|
89
89
|
ExternalMeetingId: [],
|
|
90
90
|
MediaRegion: [],
|
|
91
91
|
MeetingFeatures: (_) => _json(_),
|
|
@@ -117,7 +117,7 @@ export const se_CreateMeetingWithAttendeesCommand = async (input, context) => {
|
|
|
117
117
|
let body;
|
|
118
118
|
body = JSON.stringify(take(input, {
|
|
119
119
|
Attendees: (_) => _json(_),
|
|
120
|
-
ClientRequestToken: (_) => _ ?? generateIdempotencyToken(),
|
|
120
|
+
ClientRequestToken: [true, (_) => _ ?? generateIdempotencyToken()],
|
|
121
121
|
ExternalMeetingId: [],
|
|
122
122
|
MediaRegion: [],
|
|
123
123
|
MeetingFeatures: (_) => _json(_),
|
|
@@ -16,230 +16,109 @@ import { StopMeetingTranscriptionCommandInput, StopMeetingTranscriptionCommandOu
|
|
|
16
16
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
17
17
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
18
18
|
import { UpdateAttendeeCapabilitiesCommandInput, UpdateAttendeeCapabilitiesCommandOutput } from "./commands/UpdateAttendeeCapabilitiesCommand";
|
|
19
|
-
|
|
20
|
-
* @public
|
|
21
|
-
* <p>The Amazon Chime SDK meetings APIs in this section allow software developers to create Amazon Chime SDK meetings, set the AWS Regions for meetings, create and manage users, and send and
|
|
22
|
-
* receive meeting notifications. For more information about the meeting APIs, see
|
|
23
|
-
* <a href="https://docs.aws.amazon.com/chime/latest/APIReference/API_Operations_Amazon_Chime_SDK_Meetings.html">Amazon Chime SDK meetings</a>.</p>
|
|
24
|
-
*/
|
|
25
|
-
export declare class ChimeSDKMeetings extends ChimeSDKMeetingsClient {
|
|
19
|
+
export interface ChimeSDKMeetings {
|
|
26
20
|
/**
|
|
27
|
-
* @
|
|
28
|
-
* <p>Creates up to 100 attendees for an active Amazon Chime SDK meeting. For more information about the Amazon Chime SDK, see
|
|
29
|
-
* <a href="https://docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html">Using the Amazon Chime SDK</a> in the <i>Amazon Chime Developer Guide</i>.</p>
|
|
21
|
+
* @see {@link BatchCreateAttendeeCommand}
|
|
30
22
|
*/
|
|
31
23
|
batchCreateAttendee(args: BatchCreateAttendeeCommandInput, options?: __HttpHandlerOptions): Promise<BatchCreateAttendeeCommandOutput>;
|
|
32
24
|
batchCreateAttendee(args: BatchCreateAttendeeCommandInput, cb: (err: any, data?: BatchCreateAttendeeCommandOutput) => void): void;
|
|
33
25
|
batchCreateAttendee(args: BatchCreateAttendeeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchCreateAttendeeCommandOutput) => void): void;
|
|
34
26
|
/**
|
|
35
|
-
* @
|
|
36
|
-
* <p>Updates <code>AttendeeCapabilities</code> except the capabilities listed in an <code>ExcludedAttendeeIds</code> table.</p>
|
|
37
|
-
* <note>
|
|
38
|
-
* <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
|
|
39
|
-
* .</p>
|
|
40
|
-
* </note>
|
|
41
|
-
* <p>When using capabilities, be aware of these corner cases:</p>
|
|
42
|
-
* <ul>
|
|
43
|
-
* <li>
|
|
44
|
-
* <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>
|
|
45
|
-
* 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
|
|
46
|
-
* to receive and you set your <code>content</code> capability to not receive.</p>
|
|
47
|
-
* </li>
|
|
48
|
-
* <li>
|
|
49
|
-
* <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> ,
|
|
50
|
-
* and if the attendee left their microphone unmuted, audio will flow from the attendee to the other meeting participants.</p>
|
|
51
|
-
* </li>
|
|
52
|
-
* <li>
|
|
53
|
-
* <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> ,
|
|
54
|
-
* 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>
|
|
55
|
-
* </li>
|
|
56
|
-
* </ul>
|
|
27
|
+
* @see {@link BatchUpdateAttendeeCapabilitiesExceptCommand}
|
|
57
28
|
*/
|
|
58
29
|
batchUpdateAttendeeCapabilitiesExcept(args: BatchUpdateAttendeeCapabilitiesExceptCommandInput, options?: __HttpHandlerOptions): Promise<BatchUpdateAttendeeCapabilitiesExceptCommandOutput>;
|
|
59
30
|
batchUpdateAttendeeCapabilitiesExcept(args: BatchUpdateAttendeeCapabilitiesExceptCommandInput, cb: (err: any, data?: BatchUpdateAttendeeCapabilitiesExceptCommandOutput) => void): void;
|
|
60
31
|
batchUpdateAttendeeCapabilitiesExcept(args: BatchUpdateAttendeeCapabilitiesExceptCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchUpdateAttendeeCapabilitiesExceptCommandOutput) => void): void;
|
|
61
32
|
/**
|
|
62
|
-
* @
|
|
63
|
-
* <p>
|
|
64
|
-
* Creates a new attendee for an active Amazon Chime SDK meeting. For more information about the Amazon Chime SDK, see
|
|
65
|
-
* <a href="https://docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html">Using the Amazon Chime SDK</a>
|
|
66
|
-
* in the
|
|
67
|
-
* <i>Amazon Chime Developer Guide</i>.
|
|
68
|
-
* </p>
|
|
33
|
+
* @see {@link CreateAttendeeCommand}
|
|
69
34
|
*/
|
|
70
35
|
createAttendee(args: CreateAttendeeCommandInput, options?: __HttpHandlerOptions): Promise<CreateAttendeeCommandOutput>;
|
|
71
36
|
createAttendee(args: CreateAttendeeCommandInput, cb: (err: any, data?: CreateAttendeeCommandOutput) => void): void;
|
|
72
37
|
createAttendee(args: CreateAttendeeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateAttendeeCommandOutput) => void): void;
|
|
73
38
|
/**
|
|
74
|
-
* @
|
|
75
|
-
* <p>Creates a new Amazon Chime SDK meeting in the specified media Region with no initial attendees. For more information about specifying media Regions, see
|
|
76
|
-
* <a href="https://docs.aws.amazon.com/chime/latest/dg/chime-sdk-meetings-regions.html">Amazon Chime SDK Media Regions</a>
|
|
77
|
-
* in the <i>Amazon Chime Developer Guide</i>. For more information about the Amazon Chime SDK, see
|
|
78
|
-
* <a href="https://docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html">Using the Amazon Chime SDK</a>
|
|
79
|
-
* in the
|
|
80
|
-
* <i>Amazon Chime Developer Guide</i>.
|
|
81
|
-
* </p>
|
|
39
|
+
* @see {@link CreateMeetingCommand}
|
|
82
40
|
*/
|
|
83
41
|
createMeeting(args: CreateMeetingCommandInput, options?: __HttpHandlerOptions): Promise<CreateMeetingCommandOutput>;
|
|
84
42
|
createMeeting(args: CreateMeetingCommandInput, cb: (err: any, data?: CreateMeetingCommandOutput) => void): void;
|
|
85
43
|
createMeeting(args: CreateMeetingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateMeetingCommandOutput) => void): void;
|
|
86
44
|
/**
|
|
87
|
-
* @
|
|
88
|
-
* <p>
|
|
89
|
-
* Creates a new Amazon Chime SDK meeting in the specified media Region, with attendees. For more information about specifying media Regions, see
|
|
90
|
-
* <a href="https://docs.aws.amazon.com/chime/latest/dg/chime-sdk-meetings-regions.html">Amazon Chime SDK Media Regions</a>
|
|
91
|
-
* in the <i>Amazon Chime Developer Guide</i>. For more information about the Amazon Chime SDK, see
|
|
92
|
-
* <a href="https://docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html">Using the Amazon Chime SDK</a>
|
|
93
|
-
* in the <i>Amazon Chime Developer Guide</i>.
|
|
94
|
-
* </p>
|
|
45
|
+
* @see {@link CreateMeetingWithAttendeesCommand}
|
|
95
46
|
*/
|
|
96
47
|
createMeetingWithAttendees(args: CreateMeetingWithAttendeesCommandInput, options?: __HttpHandlerOptions): Promise<CreateMeetingWithAttendeesCommandOutput>;
|
|
97
48
|
createMeetingWithAttendees(args: CreateMeetingWithAttendeesCommandInput, cb: (err: any, data?: CreateMeetingWithAttendeesCommandOutput) => void): void;
|
|
98
49
|
createMeetingWithAttendees(args: CreateMeetingWithAttendeesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateMeetingWithAttendeesCommandOutput) => void): void;
|
|
99
50
|
/**
|
|
100
|
-
* @
|
|
101
|
-
* <p>Deletes an attendee from the specified Amazon Chime SDK meeting and deletes their
|
|
102
|
-
* <code>JoinToken</code>. Attendees are automatically deleted when a Amazon Chime SDK meeting is deleted. For more information about the Amazon Chime SDK, see
|
|
103
|
-
* <a href="https://docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html">Using the Amazon Chime SDK</a>
|
|
104
|
-
* in the <i>Amazon Chime Developer Guide</i>.</p>
|
|
51
|
+
* @see {@link DeleteAttendeeCommand}
|
|
105
52
|
*/
|
|
106
53
|
deleteAttendee(args: DeleteAttendeeCommandInput, options?: __HttpHandlerOptions): Promise<DeleteAttendeeCommandOutput>;
|
|
107
54
|
deleteAttendee(args: DeleteAttendeeCommandInput, cb: (err: any, data?: DeleteAttendeeCommandOutput) => void): void;
|
|
108
55
|
deleteAttendee(args: DeleteAttendeeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteAttendeeCommandOutput) => void): void;
|
|
109
56
|
/**
|
|
110
|
-
* @
|
|
111
|
-
* <p>Deletes the specified Amazon Chime SDK meeting. The operation deletes all attendees, disconnects all clients, and prevents new clients from
|
|
112
|
-
* joining the meeting. For more information about the Amazon Chime SDK, see
|
|
113
|
-
* <a href="https://docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html">Using the Amazon Chime SDK</a> in the
|
|
114
|
-
* <i>Amazon Chime Developer Guide</i>.</p>
|
|
57
|
+
* @see {@link DeleteMeetingCommand}
|
|
115
58
|
*/
|
|
116
59
|
deleteMeeting(args: DeleteMeetingCommandInput, options?: __HttpHandlerOptions): Promise<DeleteMeetingCommandOutput>;
|
|
117
60
|
deleteMeeting(args: DeleteMeetingCommandInput, cb: (err: any, data?: DeleteMeetingCommandOutput) => void): void;
|
|
118
61
|
deleteMeeting(args: DeleteMeetingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteMeetingCommandOutput) => void): void;
|
|
119
62
|
/**
|
|
120
|
-
* @
|
|
121
|
-
* <p>
|
|
122
|
-
* Gets the Amazon Chime SDK attendee details for a specified meeting ID and attendee ID. For more information about the Amazon Chime SDK, see
|
|
123
|
-
* <a href="https://docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html">Using the Amazon Chime SDK</a>
|
|
124
|
-
* in the <i>Amazon Chime Developer Guide</i>.
|
|
125
|
-
* </p>
|
|
63
|
+
* @see {@link GetAttendeeCommand}
|
|
126
64
|
*/
|
|
127
65
|
getAttendee(args: GetAttendeeCommandInput, options?: __HttpHandlerOptions): Promise<GetAttendeeCommandOutput>;
|
|
128
66
|
getAttendee(args: GetAttendeeCommandInput, cb: (err: any, data?: GetAttendeeCommandOutput) => void): void;
|
|
129
67
|
getAttendee(args: GetAttendeeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAttendeeCommandOutput) => void): void;
|
|
130
68
|
/**
|
|
131
|
-
* @
|
|
132
|
-
* <p>Gets the Amazon Chime SDK meeting details for the specified meeting ID. For more information about the Amazon Chime SDK, see
|
|
133
|
-
* <a href="https://docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html">Using the Amazon Chime SDK</a>
|
|
134
|
-
* in the <i>Amazon Chime Developer Guide</i>.</p>
|
|
69
|
+
* @see {@link GetMeetingCommand}
|
|
135
70
|
*/
|
|
136
71
|
getMeeting(args: GetMeetingCommandInput, options?: __HttpHandlerOptions): Promise<GetMeetingCommandOutput>;
|
|
137
72
|
getMeeting(args: GetMeetingCommandInput, cb: (err: any, data?: GetMeetingCommandOutput) => void): void;
|
|
138
73
|
getMeeting(args: GetMeetingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetMeetingCommandOutput) => void): void;
|
|
139
74
|
/**
|
|
140
|
-
* @
|
|
141
|
-
* <p>
|
|
142
|
-
* Lists the attendees for the specified Amazon Chime SDK meeting. For more information about the Amazon Chime SDK, see
|
|
143
|
-
* <a href="https://docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html">Using the Amazon Chime SDK</a>
|
|
144
|
-
* in the <i>Amazon Chime Developer Guide</i>.
|
|
145
|
-
* </p>
|
|
75
|
+
* @see {@link ListAttendeesCommand}
|
|
146
76
|
*/
|
|
147
77
|
listAttendees(args: ListAttendeesCommandInput, options?: __HttpHandlerOptions): Promise<ListAttendeesCommandOutput>;
|
|
148
78
|
listAttendees(args: ListAttendeesCommandInput, cb: (err: any, data?: ListAttendeesCommandOutput) => void): void;
|
|
149
79
|
listAttendees(args: ListAttendeesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAttendeesCommandOutput) => void): void;
|
|
150
80
|
/**
|
|
151
|
-
* @
|
|
152
|
-
* <p>Returns a list of the tags available for the specified resource.</p>
|
|
81
|
+
* @see {@link ListTagsForResourceCommand}
|
|
153
82
|
*/
|
|
154
83
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
155
84
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
156
85
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
157
86
|
/**
|
|
158
|
-
* @
|
|
159
|
-
* <p>Starts transcription for the specified <code>meetingId</code>. For more information, refer to <a href="https://docs.aws.amazon.com/chime-sdk/latest/dg/meeting-transcription.html">
|
|
160
|
-
* Using Amazon Chime SDK live transcription
|
|
161
|
-
* </a> in the <i>Amazon Chime SDK Developer Guide</i>.</p>
|
|
162
|
-
* <important>
|
|
163
|
-
* <p>Amazon Chime SDK live transcription is powered by Amazon Transcribe. Use of Amazon Transcribe is subject to the
|
|
164
|
-
* <a href="https://aws.amazon.com/service-terms/">AWS Service Terms</a>, including the terms specific to the AWS Machine Learning and Artificial Intelligence Services.</p>
|
|
165
|
-
* </important>
|
|
87
|
+
* @see {@link StartMeetingTranscriptionCommand}
|
|
166
88
|
*/
|
|
167
89
|
startMeetingTranscription(args: StartMeetingTranscriptionCommandInput, options?: __HttpHandlerOptions): Promise<StartMeetingTranscriptionCommandOutput>;
|
|
168
90
|
startMeetingTranscription(args: StartMeetingTranscriptionCommandInput, cb: (err: any, data?: StartMeetingTranscriptionCommandOutput) => void): void;
|
|
169
91
|
startMeetingTranscription(args: StartMeetingTranscriptionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartMeetingTranscriptionCommandOutput) => void): void;
|
|
170
92
|
/**
|
|
171
|
-
* @
|
|
172
|
-
* <p>Stops transcription for the specified <code>meetingId</code>. For more information, refer to <a href="https://docs.aws.amazon.com/chime-sdk/latest/dg/meeting-transcription.html">
|
|
173
|
-
* Using Amazon Chime SDK live transcription
|
|
174
|
-
* </a> in the <i>Amazon Chime SDK Developer Guide</i>.</p>
|
|
175
|
-
* <important>
|
|
176
|
-
* <p>Amazon Chime SDK live transcription is powered by Amazon Transcribe. Use of Amazon Transcribe is subject to the
|
|
177
|
-
* <a href="https://aws.amazon.com/service-terms/">AWS Service Terms</a>, including the terms specific to the AWS Machine Learning and Artificial Intelligence Services.</p>
|
|
178
|
-
* </important>
|
|
93
|
+
* @see {@link StopMeetingTranscriptionCommand}
|
|
179
94
|
*/
|
|
180
95
|
stopMeetingTranscription(args: StopMeetingTranscriptionCommandInput, options?: __HttpHandlerOptions): Promise<StopMeetingTranscriptionCommandOutput>;
|
|
181
96
|
stopMeetingTranscription(args: StopMeetingTranscriptionCommandInput, cb: (err: any, data?: StopMeetingTranscriptionCommandOutput) => void): void;
|
|
182
97
|
stopMeetingTranscription(args: StopMeetingTranscriptionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopMeetingTranscriptionCommandOutput) => void): void;
|
|
183
98
|
/**
|
|
184
|
-
* @
|
|
185
|
-
* <p>The resource that supports tags.</p>
|
|
99
|
+
* @see {@link TagResourceCommand}
|
|
186
100
|
*/
|
|
187
101
|
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
188
102
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
189
103
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
190
104
|
/**
|
|
191
|
-
* @
|
|
192
|
-
* <p>Removes the specified tags from the specified resources. When you specify a tag key, the action removes both that key and its associated value. The operation succeeds even if you
|
|
193
|
-
* attempt to remove tags from a resource that were already removed. Note the following:</p>
|
|
194
|
-
* <ul>
|
|
195
|
-
* <li>
|
|
196
|
-
* <p>To remove tags from a resource, you need the necessary permissions for the service that the resource belongs to as well as permissions for removing tags. For more information,
|
|
197
|
-
* see the documentation for the service whose resource you want to untag.</p>
|
|
198
|
-
* </li>
|
|
199
|
-
* <li>
|
|
200
|
-
* <p>You can only tag resources that are located in the specified AWS Region for the calling AWS account.</p>
|
|
201
|
-
* </li>
|
|
202
|
-
* </ul>
|
|
203
|
-
* <p>
|
|
204
|
-
* <b>Minimum permissions</b>
|
|
205
|
-
* </p>
|
|
206
|
-
* <p>In addition to the <code>tag:UntagResources</code> permission required by this operation, you must also have the remove tags permission defined by the service that created the resource.
|
|
207
|
-
* For example, to remove the tags from an Amazon EC2 instance using the <code>UntagResources</code> operation, you must have both of the following permissions:</p>
|
|
208
|
-
* <p>
|
|
209
|
-
* <code>tag:UntagResource</code>
|
|
210
|
-
* </p>
|
|
211
|
-
* <p>
|
|
212
|
-
* <code>ChimeSDKMeetings:DeleteTags</code>
|
|
213
|
-
* </p>
|
|
105
|
+
* @see {@link UntagResourceCommand}
|
|
214
106
|
*/
|
|
215
107
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
216
108
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
217
109
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
218
110
|
/**
|
|
219
|
-
* @
|
|
220
|
-
* <p>The capabilties that you want to update.</p>
|
|
221
|
-
* <note>
|
|
222
|
-
* <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
|
|
223
|
-
* .</p>
|
|
224
|
-
* </note>
|
|
225
|
-
* <p>When using capabilities, be aware of these corner cases:</p>
|
|
226
|
-
* <ul>
|
|
227
|
-
* <li>
|
|
228
|
-
* <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>
|
|
229
|
-
* 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
|
|
230
|
-
* to receive and you set your <code>content</code> capability to not receive.</p>
|
|
231
|
-
* </li>
|
|
232
|
-
* <li>
|
|
233
|
-
* <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> ,
|
|
234
|
-
* and if the attendee left their microphone unmuted, audio will flow from the attendee to the other meeting participants.</p>
|
|
235
|
-
* </li>
|
|
236
|
-
* <li>
|
|
237
|
-
* <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> ,
|
|
238
|
-
* 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>
|
|
239
|
-
* </li>
|
|
240
|
-
* </ul>
|
|
111
|
+
* @see {@link UpdateAttendeeCapabilitiesCommand}
|
|
241
112
|
*/
|
|
242
113
|
updateAttendeeCapabilities(args: UpdateAttendeeCapabilitiesCommandInput, options?: __HttpHandlerOptions): Promise<UpdateAttendeeCapabilitiesCommandOutput>;
|
|
243
114
|
updateAttendeeCapabilities(args: UpdateAttendeeCapabilitiesCommandInput, cb: (err: any, data?: UpdateAttendeeCapabilitiesCommandOutput) => void): void;
|
|
244
115
|
updateAttendeeCapabilities(args: UpdateAttendeeCapabilitiesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateAttendeeCapabilitiesCommandOutput) => void): void;
|
|
245
116
|
}
|
|
117
|
+
/**
|
|
118
|
+
* @public
|
|
119
|
+
* <p>The Amazon Chime SDK meetings APIs in this section allow software developers to create Amazon Chime SDK meetings, set the AWS Regions for meetings, create and manage users, and send and
|
|
120
|
+
* receive meeting notifications. For more information about the meeting APIs, see
|
|
121
|
+
* <a href="https://docs.aws.amazon.com/chime/latest/APIReference/API_Operations_Amazon_Chime_SDK_Meetings.html">Amazon Chime SDK meetings</a>.</p>
|
|
122
|
+
*/
|
|
123
|
+
export declare class ChimeSDKMeetings extends ChimeSDKMeetingsClient implements ChimeSDKMeetings {
|
|
124
|
+
}
|
|
@@ -64,7 +64,7 @@ import {
|
|
|
64
64
|
UpdateAttendeeCapabilitiesCommandInput,
|
|
65
65
|
UpdateAttendeeCapabilitiesCommandOutput,
|
|
66
66
|
} from "./commands/UpdateAttendeeCapabilitiesCommand";
|
|
67
|
-
export
|
|
67
|
+
export interface ChimeSDKMeetings {
|
|
68
68
|
batchCreateAttendee(
|
|
69
69
|
args: BatchCreateAttendeeCommandInput,
|
|
70
70
|
options?: __HttpHandlerOptions
|
|
@@ -280,3 +280,6 @@ export declare class ChimeSDKMeetings extends ChimeSDKMeetingsClient {
|
|
|
280
280
|
cb: (err: any, data?: UpdateAttendeeCapabilitiesCommandOutput) => void
|
|
281
281
|
): void;
|
|
282
282
|
}
|
|
283
|
+
export declare class ChimeSDKMeetings
|
|
284
|
+
extends ChimeSDKMeetingsClient
|
|
285
|
+
implements ChimeSDKMeetings {}
|
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.316.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",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.316.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.316.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
@@ -40,14 +40,14 @@
|
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.310.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
+
"@aws-sdk/smithy-client": "3.316.0",
|
|
44
44
|
"@aws-sdk/types": "3.310.0",
|
|
45
45
|
"@aws-sdk/url-parser": "3.310.0",
|
|
46
46
|
"@aws-sdk/util-base64": "3.310.0",
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.316.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.316.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.310.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.310.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|