@aws-sdk/client-chime-sdk-meetings 3.315.0 → 3.317.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/endpoint/ruleset.js +3 -3
- package/dist-cjs/models/models_0.js +2 -0
- package/dist-cjs/protocols/Aws_restJson1.js +2 -2
- package/dist-es/ChimeSDKMeetings.js +20 -224
- package/dist-es/endpoint/ruleset.js +3 -3
- package/dist-es/models/models_0.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +2 -2
- package/dist-types/ChimeSDKMeetings.d.ts +25 -146
- package/dist-types/commands/BatchUpdateAttendeeCapabilitiesExceptCommand.d.ts +1 -1
- package/dist-types/commands/StartMeetingTranscriptionCommand.d.ts +8 -2
- package/dist-types/commands/UpdateAttendeeCapabilitiesCommand.d.ts +2 -2
- package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +79 -26
- package/dist-types/ts3.4/ChimeSDKMeetings.d.ts +4 -1
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +4 -0
- 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);
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.ruleSet = void 0;
|
|
4
|
-
const q = "
|
|
5
|
-
const a =
|
|
6
|
-
const _data = { version: "1.0", parameters: { Region:
|
|
4
|
+
const q = "required", r = "fn", s = "argv", t = "ref";
|
|
5
|
+
const a = "isSet", b = "tree", c = "error", d = "endpoint", e = "PartitionResult", f = { [q]: false, "type": "String" }, g = { [q]: true, "default": false, "type": "Boolean" }, h = { [t]: "Endpoint" }, i = { [r]: "booleanEquals", [s]: [{ [t]: "UseFIPS" }, true] }, j = { [r]: "booleanEquals", [s]: [{ [t]: "UseDualStack" }, true] }, k = {}, l = { [r]: "booleanEquals", [s]: [true, { [r]: "getAttr", [s]: [{ [t]: e }, "supportsFIPS"] }] }, m = { [r]: "booleanEquals", [s]: [true, { [r]: "getAttr", [s]: [{ [t]: e }, "supportsDualStack"] }] }, n = [i], o = [j], p = [{ [t]: "Region" }];
|
|
6
|
+
const _data = { version: "1.0", parameters: { Region: f, UseDualStack: g, UseFIPS: g, Endpoint: f }, rules: [{ conditions: [{ [r]: a, [s]: [h] }], type: b, rules: [{ conditions: n, error: "Invalid Configuration: FIPS and custom endpoint are not supported", type: c }, { type: b, rules: [{ conditions: o, error: "Invalid Configuration: Dualstack and custom endpoint are not supported", type: c }, { endpoint: { url: h, properties: k, headers: k }, type: d }] }] }, { type: b, rules: [{ conditions: [{ [r]: a, [s]: p }], type: b, rules: [{ conditions: [{ [r]: "aws.partition", [s]: p, assign: e }], type: b, rules: [{ conditions: [i, j], type: b, rules: [{ conditions: [l, m], type: b, rules: [{ type: b, rules: [{ endpoint: { url: "https://meetings-chime-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", properties: k, headers: k }, type: d }] }] }, { error: "FIPS and DualStack are enabled, but this partition does not support one or both", type: c }] }, { conditions: n, type: b, rules: [{ conditions: [l], type: b, rules: [{ type: b, rules: [{ endpoint: { url: "https://meetings-chime-fips.{Region}.{PartitionResult#dnsSuffix}", properties: k, headers: k }, type: d }] }] }, { error: "FIPS is enabled but this partition does not support FIPS", type: c }] }, { conditions: o, type: b, rules: [{ conditions: [m], type: b, rules: [{ type: b, rules: [{ endpoint: { url: "https://meetings-chime.{Region}.{PartitionResult#dualStackDnsSuffix}", properties: k, headers: k }, type: d }] }] }, { error: "DualStack is enabled but this partition does not support DualStack", type: c }] }, { type: b, rules: [{ endpoint: { url: "https://meetings-chime.{Region}.{PartitionResult#dnsSuffix}", properties: k, headers: k }, type: d }] }] }] }, { error: "Invalid Configuration: Missing Region", type: c }] }] };
|
|
7
7
|
exports.ruleSet = _data;
|
|
@@ -232,10 +232,12 @@ exports.TranscribeLanguageCode = {
|
|
|
232
232
|
ES_US: "es-US",
|
|
233
233
|
FR_CA: "fr-CA",
|
|
234
234
|
FR_FR: "fr-FR",
|
|
235
|
+
HI_IN: "hi-IN",
|
|
235
236
|
IT_IT: "it-IT",
|
|
236
237
|
JA_JP: "ja-JP",
|
|
237
238
|
KO_KR: "ko-KR",
|
|
238
239
|
PT_BR: "pt-BR",
|
|
240
|
+
TH_TH: "th-TH",
|
|
239
241
|
ZH_CN: "zh-CN",
|
|
240
242
|
};
|
|
241
243
|
exports.TranscribePartialResultsStability = {
|
|
@@ -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);
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
const q = "
|
|
2
|
-
const a =
|
|
3
|
-
const _data = { version: "1.0", parameters: { Region:
|
|
1
|
+
const q = "required", r = "fn", s = "argv", t = "ref";
|
|
2
|
+
const a = "isSet", b = "tree", c = "error", d = "endpoint", e = "PartitionResult", f = { [q]: false, "type": "String" }, g = { [q]: true, "default": false, "type": "Boolean" }, h = { [t]: "Endpoint" }, i = { [r]: "booleanEquals", [s]: [{ [t]: "UseFIPS" }, true] }, j = { [r]: "booleanEquals", [s]: [{ [t]: "UseDualStack" }, true] }, k = {}, l = { [r]: "booleanEquals", [s]: [true, { [r]: "getAttr", [s]: [{ [t]: e }, "supportsFIPS"] }] }, m = { [r]: "booleanEquals", [s]: [true, { [r]: "getAttr", [s]: [{ [t]: e }, "supportsDualStack"] }] }, n = [i], o = [j], p = [{ [t]: "Region" }];
|
|
3
|
+
const _data = { version: "1.0", parameters: { Region: f, UseDualStack: g, UseFIPS: g, Endpoint: f }, rules: [{ conditions: [{ [r]: a, [s]: [h] }], type: b, rules: [{ conditions: n, error: "Invalid Configuration: FIPS and custom endpoint are not supported", type: c }, { type: b, rules: [{ conditions: o, error: "Invalid Configuration: Dualstack and custom endpoint are not supported", type: c }, { endpoint: { url: h, properties: k, headers: k }, type: d }] }] }, { type: b, rules: [{ conditions: [{ [r]: a, [s]: p }], type: b, rules: [{ conditions: [{ [r]: "aws.partition", [s]: p, assign: e }], type: b, rules: [{ conditions: [i, j], type: b, rules: [{ conditions: [l, m], type: b, rules: [{ type: b, rules: [{ endpoint: { url: "https://meetings-chime-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", properties: k, headers: k }, type: d }] }] }, { error: "FIPS and DualStack are enabled, but this partition does not support one or both", type: c }] }, { conditions: n, type: b, rules: [{ conditions: [l], type: b, rules: [{ type: b, rules: [{ endpoint: { url: "https://meetings-chime-fips.{Region}.{PartitionResult#dnsSuffix}", properties: k, headers: k }, type: d }] }] }, { error: "FIPS is enabled but this partition does not support FIPS", type: c }] }, { conditions: o, type: b, rules: [{ conditions: [m], type: b, rules: [{ type: b, rules: [{ endpoint: { url: "https://meetings-chime.{Region}.{PartitionResult#dualStackDnsSuffix}", properties: k, headers: k }, type: d }] }] }, { error: "DualStack is enabled but this partition does not support DualStack", type: c }] }, { type: b, rules: [{ endpoint: { url: "https://meetings-chime.{Region}.{PartitionResult#dnsSuffix}", properties: k, headers: k }, type: d }] }] }] }, { error: "Invalid Configuration: Missing Region", type: c }] }] };
|
|
4
4
|
export const ruleSet = _data;
|
|
@@ -218,10 +218,12 @@ export const TranscribeLanguageCode = {
|
|
|
218
218
|
ES_US: "es-US",
|
|
219
219
|
FR_CA: "fr-CA",
|
|
220
220
|
FR_FR: "fr-FR",
|
|
221
|
+
HI_IN: "hi-IN",
|
|
221
222
|
IT_IT: "it-IT",
|
|
222
223
|
JA_JP: "ja-JP",
|
|
223
224
|
KO_KR: "ko-KR",
|
|
224
225
|
PT_BR: "pt-BR",
|
|
226
|
+
TH_TH: "th-TH",
|
|
225
227
|
ZH_CN: "zh-CN",
|
|
226
228
|
};
|
|
227
229
|
export const TranscribePartialResultsStability = {
|
|
@@ -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
|
+
}
|
|
@@ -37,7 +37,7 @@ export interface BatchUpdateAttendeeCapabilitiesExceptCommandOutput extends __Me
|
|
|
37
37
|
* </li>
|
|
38
38
|
* <li>
|
|
39
39
|
* <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> ,
|
|
40
|
-
* and if the attendee turned on their video or content streams, remote
|
|
40
|
+
* and if the attendee turned on their video or content streams, remote attendees can receive those streams, but only after media renegotiation between the client and the Amazon Chime back-end server.</p>
|
|
41
41
|
* </li>
|
|
42
42
|
* </ul>
|
|
43
43
|
* @example
|
|
@@ -22,6 +22,10 @@ export interface StartMeetingTranscriptionCommandOutput extends __MetadataBearer
|
|
|
22
22
|
* <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">
|
|
23
23
|
* Using Amazon Chime SDK live transcription
|
|
24
24
|
* </a> in the <i>Amazon Chime SDK Developer Guide</i>.</p>
|
|
25
|
+
* <p>If you specify an invalid configuration, a <code>TranscriptFailed</code> event will be sent with the contents of the <code>BadRequestException</code> generated by Amazon Transcribe.
|
|
26
|
+
* For more information on each parameter and which combinations are valid, refer to the
|
|
27
|
+
* <a href="https://docs.aws.amazon.com/transcribe/latest/APIReference/API_streaming_StartStreamTranscription.html">StartStreamTranscription</a> API in the
|
|
28
|
+
* <i>Amazon Transcribe Developer Guide</i>.</p>
|
|
25
29
|
* <important>
|
|
26
30
|
* <p>Amazon Chime SDK live transcription is powered by Amazon Transcribe. Use of Amazon Transcribe is subject to the
|
|
27
31
|
* <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>
|
|
@@ -36,7 +40,7 @@ export interface StartMeetingTranscriptionCommandOutput extends __MetadataBearer
|
|
|
36
40
|
* MeetingId: "STRING_VALUE", // required
|
|
37
41
|
* TranscriptionConfiguration: { // TranscriptionConfiguration
|
|
38
42
|
* EngineTranscribeSettings: { // EngineTranscribeSettings
|
|
39
|
-
* LanguageCode: "en-US" || "en-GB" || "es-US" || "fr-CA" || "fr-FR" || "en-AU" || "it-IT" || "de-DE" || "pt-BR" || "ja-JP" || "ko-KR" || "zh-CN",
|
|
43
|
+
* LanguageCode: "en-US" || "en-GB" || "es-US" || "fr-CA" || "fr-FR" || "en-AU" || "it-IT" || "de-DE" || "pt-BR" || "ja-JP" || "ko-KR" || "zh-CN" || "th-TH" || "hi-IN",
|
|
40
44
|
* VocabularyFilterMethod: "remove" || "mask" || "tag",
|
|
41
45
|
* VocabularyFilterName: "STRING_VALUE",
|
|
42
46
|
* VocabularyName: "STRING_VALUE",
|
|
@@ -49,7 +53,9 @@ export interface StartMeetingTranscriptionCommandOutput extends __MetadataBearer
|
|
|
49
53
|
* LanguageModelName: "STRING_VALUE",
|
|
50
54
|
* IdentifyLanguage: true || false,
|
|
51
55
|
* LanguageOptions: "STRING_VALUE",
|
|
52
|
-
* PreferredLanguage: "en-US" || "en-GB" || "es-US" || "fr-CA" || "fr-FR" || "en-AU" || "it-IT" || "de-DE" || "pt-BR" || "ja-JP" || "ko-KR" || "zh-CN",
|
|
56
|
+
* PreferredLanguage: "en-US" || "en-GB" || "es-US" || "fr-CA" || "fr-FR" || "en-AU" || "it-IT" || "de-DE" || "pt-BR" || "ja-JP" || "ko-KR" || "zh-CN" || "th-TH" || "hi-IN",
|
|
57
|
+
* VocabularyNames: "STRING_VALUE",
|
|
58
|
+
* VocabularyFilterNames: "STRING_VALUE",
|
|
53
59
|
* },
|
|
54
60
|
* EngineTranscribeMedicalSettings: { // EngineTranscribeMedicalSettings
|
|
55
61
|
* LanguageCode: "en-US", // required
|
|
@@ -19,7 +19,7 @@ export interface UpdateAttendeeCapabilitiesCommandOutput extends UpdateAttendeeC
|
|
|
19
19
|
}
|
|
20
20
|
/**
|
|
21
21
|
* @public
|
|
22
|
-
* <p>The
|
|
22
|
+
* <p>The capabilities that you want to update.</p>
|
|
23
23
|
* <note>
|
|
24
24
|
* <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
|
|
25
25
|
* .</p>
|
|
@@ -37,7 +37,7 @@ export interface UpdateAttendeeCapabilitiesCommandOutput extends UpdateAttendeeC
|
|
|
37
37
|
* </li>
|
|
38
38
|
* <li>
|
|
39
39
|
* <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> ,
|
|
40
|
-
* and if the attendee turned on their video or content streams, remote
|
|
40
|
+
* and if the attendee turned on their video or content streams, remote attendees can receive those streams, but only after media renegotiation between the client and the Amazon Chime back-end server.</p>
|
|
41
41
|
* </li>
|
|
42
42
|
* </ul>
|
|
43
43
|
* @example
|
|
@@ -12,7 +12,7 @@ export declare const resolveClientEndpointParameters: <T>(options: T & ClientInp
|
|
|
12
12
|
defaultSigningName: string;
|
|
13
13
|
};
|
|
14
14
|
export interface EndpointParameters extends __EndpointParameters {
|
|
15
|
-
Region
|
|
15
|
+
Region?: string;
|
|
16
16
|
UseDualStack?: boolean;
|
|
17
17
|
UseFIPS?: boolean;
|
|
18
18
|
Endpoint?: string;
|
|
@@ -34,7 +34,7 @@ export type MediaCapabilities = (typeof MediaCapabilities)[keyof typeof MediaCap
|
|
|
34
34
|
* </li>
|
|
35
35
|
* <li>
|
|
36
36
|
* <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> ,
|
|
37
|
-
* and if the attendee turned on their video or content streams, remote
|
|
37
|
+
* and if the attendee turned on their video or content streams, remote attendees can receive those streams, but only after media renegotiation between the client and the Amazon Chime back-end server.</p>
|
|
38
38
|
* </li>
|
|
39
39
|
* </ul>
|
|
40
40
|
*/
|
|
@@ -103,7 +103,7 @@ export interface Attendee {
|
|
|
103
103
|
* </li>
|
|
104
104
|
* <li>
|
|
105
105
|
* <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> ,
|
|
106
|
-
* and if the attendee turned on their video or content streams, remote
|
|
106
|
+
* and if the attendee turned on their video or content streams, remote attendees can receive those streams, but only after media renegotiation between the client and the Amazon Chime back-end server.</p>
|
|
107
107
|
* </li>
|
|
108
108
|
* </ul>
|
|
109
109
|
*/
|
|
@@ -444,7 +444,7 @@ export interface CreateAttendeeRequest {
|
|
|
444
444
|
* </li>
|
|
445
445
|
* <li>
|
|
446
446
|
* <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> ,
|
|
447
|
-
* and if the attendee turned on their video or content streams, remote
|
|
447
|
+
* and if the attendee turned on their video or content streams, remote attendees can receive those streams, but only after media renegotiation between the client and the Amazon Chime back-end server.</p>
|
|
448
448
|
* </li>
|
|
449
449
|
* </ul>
|
|
450
450
|
*/
|
|
@@ -1057,10 +1057,12 @@ export declare const TranscribeLanguageCode: {
|
|
|
1057
1057
|
readonly ES_US: "es-US";
|
|
1058
1058
|
readonly FR_CA: "fr-CA";
|
|
1059
1059
|
readonly FR_FR: "fr-FR";
|
|
1060
|
+
readonly HI_IN: "hi-IN";
|
|
1060
1061
|
readonly IT_IT: "it-IT";
|
|
1061
1062
|
readonly JA_JP: "ja-JP";
|
|
1062
1063
|
readonly KO_KR: "ko-KR";
|
|
1063
1064
|
readonly PT_BR: "pt-BR";
|
|
1065
|
+
readonly TH_TH: "th-TH";
|
|
1064
1066
|
readonly ZH_CN: "zh-CN";
|
|
1065
1067
|
};
|
|
1066
1068
|
/**
|
|
@@ -1118,72 +1120,123 @@ export declare const TranscribeVocabularyFilterMethod: {
|
|
|
1118
1120
|
export type TranscribeVocabularyFilterMethod = (typeof TranscribeVocabularyFilterMethod)[keyof typeof TranscribeVocabularyFilterMethod];
|
|
1119
1121
|
/**
|
|
1120
1122
|
* @public
|
|
1121
|
-
* <p>Settings specific
|
|
1123
|
+
* <p>Settings specific for Amazon Transcribe as the live transcription engine. </p>
|
|
1124
|
+
* <p>If you specify an invalid combination of parameters, a <code>TranscriptFailed</code> event will be sent with the contents of the
|
|
1125
|
+
* <code>BadRequestException</code> generated by Amazon Transcribe. For more information on each parameter and which combinations are valid, refer to the
|
|
1126
|
+
* <a href="https://docs.aws.amazon.com/transcribe/latest/APIReference/API_streaming_StartStreamTranscription.html">StartStreamTranscription</a> API in the
|
|
1127
|
+
* <i>Amazon Transcribe Developer Guide</i>.</p>
|
|
1122
1128
|
*/
|
|
1123
1129
|
export interface EngineTranscribeSettings {
|
|
1124
1130
|
/**
|
|
1125
|
-
* <p>
|
|
1131
|
+
* <p>Specify the language code that represents the language spoken.</p>
|
|
1132
|
+
* <p>If you're unsure of the language spoken in your audio, consider using <code>IdentifyLanguage</code> to enable automatic language identification.</p>
|
|
1126
1133
|
*/
|
|
1127
1134
|
LanguageCode?: TranscribeLanguageCode | string;
|
|
1128
1135
|
/**
|
|
1129
|
-
* <p>
|
|
1136
|
+
* <p>Specify how you want your vocabulary filter applied to your transcript.</p>
|
|
1137
|
+
* <p>To replace words with <code>***</code>, choose <code>mask</code>.</p>
|
|
1138
|
+
* <p>To delete words, choose <code>remove</code>.</p>
|
|
1139
|
+
* <p>To flag words without changing them, choose <code>tag</code>.</p>
|
|
1130
1140
|
*/
|
|
1131
1141
|
VocabularyFilterMethod?: TranscribeVocabularyFilterMethod | string;
|
|
1132
1142
|
/**
|
|
1133
|
-
* <p>
|
|
1143
|
+
* <p>Specify the name of the custom vocabulary filter that you want to use when processing your transcription. Note that vocabulary filter names are case sensitive. </p>
|
|
1144
|
+
* <p>If you use Amazon Transcribe in multiple Regions, the vocabulary filter must be available in Amazon Transcribe in each Region.</p>
|
|
1145
|
+
* <p>If you include <code>IdentifyLanguage</code> and want to use one or more vocabulary filters with your transcription, use the <code>VocabularyFilterNames</code> parameter instead.</p>
|
|
1134
1146
|
*/
|
|
1135
1147
|
VocabularyFilterName?: string;
|
|
1136
1148
|
/**
|
|
1137
|
-
* <p>
|
|
1149
|
+
* <p>Specify the name of the custom vocabulary that you want to use when processing your transcription. Note that vocabulary names are case sensitive.</p>
|
|
1150
|
+
* <p>If you use Amazon Transcribe multiple Regions, the vocabulary must be available in Amazon Transcribe in each Region.</p>
|
|
1151
|
+
* <p>If you include <code>IdentifyLanguage</code> and want to use one or more custom vocabularies with your transcription, use the <code>VocabularyNames</code>
|
|
1152
|
+
* parameter instead.</p>
|
|
1138
1153
|
*/
|
|
1139
1154
|
VocabularyName?: string;
|
|
1140
1155
|
/**
|
|
1141
|
-
* <p>The AWS Region
|
|
1156
|
+
* <p>The AWS Region in which to use Amazon Transcribe.</p>
|
|
1157
|
+
* <p>If you don't specify a Region, then the <a href="https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_meeting-chime_CreateMeeting.html">MediaRegion</a> of the meeting is used.
|
|
1158
|
+
* However, if Amazon Transcribe is not available in the <code>MediaRegion</code>, then a <code>TranscriptFailed</code> event is sent.</p>
|
|
1159
|
+
* <p>Use <code>auto</code> to use Amazon Transcribe in a Region near the meeting’s <code>MediaRegion</code>. For more information, refer to
|
|
1160
|
+
* <a href="https://docs.aws.amazon.com/chime-sdk/latest/dg/transcription-options.html#choose-region">Choosing a transcription Region</a> in the
|
|
1161
|
+
* <i>Amazon Chime SDK Developer Guide</i>.</p>
|
|
1142
1162
|
*/
|
|
1143
1163
|
Region?: TranscribeRegion | string;
|
|
1144
1164
|
/**
|
|
1145
|
-
* <p>
|
|
1165
|
+
* <p>Enables partial result stabilization for your transcription. Partial result stabilization can reduce latency in your output, but may impact accuracy.</p>
|
|
1146
1166
|
*/
|
|
1147
1167
|
EnablePartialResultsStabilization?: boolean;
|
|
1148
1168
|
/**
|
|
1149
|
-
* <p>
|
|
1169
|
+
* <p>Specify the level of stability to use when you enable partial results stabilization (<code>EnablePartialResultsStabilization</code>).</p>
|
|
1170
|
+
* <p>Low stability provides the highest accuracy. High stability transcribes faster, but with slightly lower accuracy.</p>
|
|
1150
1171
|
*/
|
|
1151
1172
|
PartialResultsStability?: TranscribePartialResultsStability | string;
|
|
1152
1173
|
/**
|
|
1153
|
-
* <p>
|
|
1174
|
+
* <p>Labels all personally identifiable information (PII) identified in your transcript. If you don't include <code>PiiEntityTypes</code>, all PII is identified.</p>
|
|
1175
|
+
* <note>
|
|
1176
|
+
* <p>You can’t set <code>ContentIdentificationType</code> and <code>ContentRedactionType</code>.</p>
|
|
1177
|
+
* </note>
|
|
1154
1178
|
*/
|
|
1155
1179
|
ContentIdentificationType?: TranscribeContentIdentificationType | string;
|
|
1156
1180
|
/**
|
|
1157
|
-
* <p>
|
|
1158
|
-
* <
|
|
1181
|
+
* <p>Content redaction is performed at the segment level. If you don't include <code>PiiEntityTypes</code>, all PII is redacted.</p>
|
|
1182
|
+
* <note>
|
|
1183
|
+
* <p>You can’t set <code>ContentRedactionType</code> and <code>ContentIdentificationType</code>.</p>
|
|
1184
|
+
* </note>
|
|
1159
1185
|
*/
|
|
1160
1186
|
ContentRedactionType?: TranscribeContentRedactionType | string;
|
|
1161
1187
|
/**
|
|
1162
|
-
* <p>
|
|
1163
|
-
* <p>
|
|
1164
|
-
* <code>
|
|
1165
|
-
*
|
|
1166
|
-
*
|
|
1167
|
-
* <p>
|
|
1168
|
-
* <code>PiiEntityTypes</code> is an optional parameter with a default value of <code>ALL</code>.</p>
|
|
1188
|
+
* <p>Specify which types of personally identifiable information (PII) you want to redact in your transcript. You can include as many types as you'd like, or you can select <code>ALL</code>.</p>
|
|
1189
|
+
* <p>Values must be comma-separated and can include: <code>ADDRESS</code>, <code>BANK_ACCOUNT_NUMBER</code>, <code>BANK_ROUTING</code>, <code>CREDIT_DEBIT_CVV</code>, <code>CREDIT_DEBIT_EXPIRY</code>
|
|
1190
|
+
* <code>CREDIT_DEBIT_NUMBER</code>, <code>EMAIL</code>,<code>NAME</code>, <code>PHONE</code>, <code>PIN</code>,
|
|
1191
|
+
* <code>SSN</code>, or <code>ALL</code>.</p>
|
|
1192
|
+
* <p>Note that if you include <code>PiiEntityTypes</code>, you must also include <code>ContentIdentificationType</code> or <code>ContentRedactionType</code>.</p>
|
|
1193
|
+
* <p>If you include <code>ContentRedactionType</code> or <code>ContentIdentificationType</code>, but do not include PiiEntityTypes, all PII is redacted or identified.</p>
|
|
1169
1194
|
*/
|
|
1170
1195
|
PiiEntityTypes?: string;
|
|
1171
1196
|
/**
|
|
1172
|
-
* <p>
|
|
1197
|
+
* <p>Specify the name of the custom language model that you want to use when processing your transcription. Note that language model names are case sensitive.</p>
|
|
1198
|
+
* <p>The language of the specified language model must match the language code. If the languages don't match, the custom language model isn't applied. There are no errors or warnings associated with
|
|
1199
|
+
* a language mismatch.</p>
|
|
1200
|
+
* <p>If you use Amazon Transcribe in multiple Regions, the custom language model must be available in Amazon Transcribe in each Region.</p>
|
|
1173
1201
|
*/
|
|
1174
1202
|
LanguageModelName?: string;
|
|
1175
1203
|
/**
|
|
1176
|
-
* <p>
|
|
1204
|
+
* <p>Enables automatic language identification for your transcription.</p>
|
|
1205
|
+
* <p>If you include <code>IdentifyLanguage</code>, you can optionally use <code>LanguageOptions</code> to include a list of language codes that you think may be present in your audio stream.
|
|
1206
|
+
* Including language options can improve transcription accuracy.</p>
|
|
1207
|
+
* <p>You can also use <code>PreferredLanguage</code> to include a preferred language. Doing so can help Amazon Transcribe identify the language faster.</p>
|
|
1208
|
+
* <p>You must include either <code>LanguageCode</code> or <code>IdentifyLanguage</code>.</p>
|
|
1209
|
+
* <p>Language identification can't be combined with custom language models or redaction.</p>
|
|
1177
1210
|
*/
|
|
1178
1211
|
IdentifyLanguage?: boolean;
|
|
1179
1212
|
/**
|
|
1180
|
-
* <p>
|
|
1213
|
+
* <p>Specify two or more language codes that represent the languages you think may be present in your media; including more than five is not recommended. If you're unsure what languages
|
|
1214
|
+
* are present, do not include this parameter.</p>
|
|
1215
|
+
* <p>Including language options can improve the accuracy of language identification.</p>
|
|
1216
|
+
* <p>If you include <code>LanguageOptions</code>, you must also include <code>IdentifyLanguage</code>.</p>
|
|
1217
|
+
* <important>
|
|
1218
|
+
* <p>You can only include one language dialect per language. For example, you cannot include <code>en-US</code> and <code>en-AU</code>.</p>
|
|
1219
|
+
* </important>
|
|
1181
1220
|
*/
|
|
1182
1221
|
LanguageOptions?: string;
|
|
1183
1222
|
/**
|
|
1184
|
-
* <p>
|
|
1223
|
+
* <p>Specify a preferred language from the subset of languages codes you specified in <code>LanguageOptions</code>.</p>
|
|
1224
|
+
* <p>You can only use this parameter if you include <code>IdentifyLanguage</code> and <code>LanguageOptions</code>.</p>
|
|
1185
1225
|
*/
|
|
1186
1226
|
PreferredLanguage?: TranscribeLanguageCode | string;
|
|
1227
|
+
/**
|
|
1228
|
+
* <p>Specify the names of the custom vocabularies that you want to use when processing your transcription. Note that vocabulary names are case sensitive.</p>
|
|
1229
|
+
* <p>If you use Amazon Transcribe in multiple Regions, the vocabulary must be available in Amazon Transcribe in each Region.</p>
|
|
1230
|
+
* <p>If you don't include <code>IdentifyLanguage</code> and want to use a custom vocabulary with your transcription, use the <code>VocabularyName</code> parameter instead.</p>
|
|
1231
|
+
*/
|
|
1232
|
+
VocabularyNames?: string;
|
|
1233
|
+
/**
|
|
1234
|
+
* <p>Specify the names of the custom vocabulary filters that you want to use when processing your transcription. Note that vocabulary filter names are case sensitive.</p>
|
|
1235
|
+
* <p>If you use Amazon Transcribe in multiple Regions, the vocabulary filter must be available in Amazon Transcribe in each Region.</p>
|
|
1236
|
+
* <p> If you're <i>not</i> including <code>IdentifyLanguage</code> and want to use a custom vocabulary filter with your transcription, use the <code>VocabularyFilterName</code>
|
|
1237
|
+
* parameter instead.</p>
|
|
1238
|
+
*/
|
|
1239
|
+
VocabularyFilterNames?: string;
|
|
1187
1240
|
}
|
|
1188
1241
|
/**
|
|
1189
1242
|
* @public
|
|
@@ -1293,7 +1346,7 @@ export interface UpdateAttendeeCapabilitiesRequest {
|
|
|
1293
1346
|
*/
|
|
1294
1347
|
AttendeeId: string | undefined;
|
|
1295
1348
|
/**
|
|
1296
|
-
* <p>The
|
|
1349
|
+
* <p>The capabilities that you want to update.</p>
|
|
1297
1350
|
*/
|
|
1298
1351
|
Capabilities: AttendeeCapabilities | undefined;
|
|
1299
1352
|
}
|
|
@@ -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 {}
|
|
@@ -26,7 +26,7 @@ export declare const resolveClientEndpointParameters: <T>(
|
|
|
26
26
|
defaultSigningName: string;
|
|
27
27
|
};
|
|
28
28
|
export interface EndpointParameters extends __EndpointParameters {
|
|
29
|
-
Region
|
|
29
|
+
Region?: string;
|
|
30
30
|
UseDualStack?: boolean;
|
|
31
31
|
UseFIPS?: boolean;
|
|
32
32
|
Endpoint?: string;
|
|
@@ -331,10 +331,12 @@ export declare const TranscribeLanguageCode: {
|
|
|
331
331
|
readonly ES_US: "es-US";
|
|
332
332
|
readonly FR_CA: "fr-CA";
|
|
333
333
|
readonly FR_FR: "fr-FR";
|
|
334
|
+
readonly HI_IN: "hi-IN";
|
|
334
335
|
readonly IT_IT: "it-IT";
|
|
335
336
|
readonly JA_JP: "ja-JP";
|
|
336
337
|
readonly KO_KR: "ko-KR";
|
|
337
338
|
readonly PT_BR: "pt-BR";
|
|
339
|
+
readonly TH_TH: "th-TH";
|
|
338
340
|
readonly ZH_CN: "zh-CN";
|
|
339
341
|
};
|
|
340
342
|
export type TranscribeLanguageCode =
|
|
@@ -385,6 +387,8 @@ export interface EngineTranscribeSettings {
|
|
|
385
387
|
IdentifyLanguage?: boolean;
|
|
386
388
|
LanguageOptions?: string;
|
|
387
389
|
PreferredLanguage?: TranscribeLanguageCode | string;
|
|
390
|
+
VocabularyNames?: string;
|
|
391
|
+
VocabularyFilterNames?: string;
|
|
388
392
|
}
|
|
389
393
|
export interface TranscriptionConfiguration {
|
|
390
394
|
EngineTranscribeSettings?: EngineTranscribeSettings;
|
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.317.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",
|