@aws-sdk/client-chime-sdk-meetings 3.100.0 → 3.108.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +33 -0
- package/dist-cjs/ChimeSDKMeetings.js +30 -0
- package/dist-cjs/ChimeSDKMeetingsClient.js +2 -0
- package/dist-cjs/commands/BatchUpdateAttendeeCapabilitiesExceptCommand.js +36 -0
- package/dist-cjs/commands/UpdateAttendeeCapabilitiesCommand.js +36 -0
- package/dist-cjs/commands/index.js +2 -0
- package/dist-cjs/models/models_0.js +57 -1
- package/dist-cjs/protocols/Aws_restJson1.js +247 -1
- package/dist-es/ChimeSDKMeetings.js +30 -0
- package/dist-es/ChimeSDKMeetingsClient.js +2 -0
- package/dist-es/commands/BatchUpdateAttendeeCapabilitiesExceptCommand.js +39 -0
- package/dist-es/commands/UpdateAttendeeCapabilitiesCommand.js +39 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/models_0.js +43 -0
- package/dist-es/protocols/Aws_restJson1.js +292 -3
- package/dist-types/ChimeSDKMeetings.d.ts +14 -0
- package/dist-types/ChimeSDKMeetingsClient.d.ts +4 -2
- package/dist-types/commands/BatchUpdateAttendeeCapabilitiesExceptCommand.d.ts +35 -0
- package/dist-types/commands/UpdateAttendeeCapabilitiesCommand.d.ts +35 -0
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +139 -3
- package/dist-types/protocols/Aws_restJson1.d.ts +6 -0
- package/dist-types/ts3.4/ChimeSDKMeetings.d.ts +10 -0
- package/dist-types/ts3.4/ChimeSDKMeetingsClient.d.ts +4 -2
- package/dist-types/ts3.4/commands/BatchUpdateAttendeeCapabilitiesExceptCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateAttendeeCapabilitiesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +77 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +6 -0
- package/package.json +4 -3
|
@@ -7,6 +7,7 @@ import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
|
7
7
|
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
8
|
import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
9
|
import { BatchCreateAttendeeCommandInput, BatchCreateAttendeeCommandOutput } from "./commands/BatchCreateAttendeeCommand";
|
|
10
|
+
import { BatchUpdateAttendeeCapabilitiesExceptCommandInput, BatchUpdateAttendeeCapabilitiesExceptCommandOutput } from "./commands/BatchUpdateAttendeeCapabilitiesExceptCommand";
|
|
10
11
|
import { CreateAttendeeCommandInput, CreateAttendeeCommandOutput } from "./commands/CreateAttendeeCommand";
|
|
11
12
|
import { CreateMeetingCommandInput, CreateMeetingCommandOutput } from "./commands/CreateMeetingCommand";
|
|
12
13
|
import { CreateMeetingWithAttendeesCommandInput, CreateMeetingWithAttendeesCommandOutput } from "./commands/CreateMeetingWithAttendeesCommand";
|
|
@@ -17,8 +18,9 @@ import { GetMeetingCommandInput, GetMeetingCommandOutput } from "./commands/GetM
|
|
|
17
18
|
import { ListAttendeesCommandInput, ListAttendeesCommandOutput } from "./commands/ListAttendeesCommand";
|
|
18
19
|
import { StartMeetingTranscriptionCommandInput, StartMeetingTranscriptionCommandOutput } from "./commands/StartMeetingTranscriptionCommand";
|
|
19
20
|
import { StopMeetingTranscriptionCommandInput, StopMeetingTranscriptionCommandOutput } from "./commands/StopMeetingTranscriptionCommand";
|
|
20
|
-
|
|
21
|
-
export declare type
|
|
21
|
+
import { UpdateAttendeeCapabilitiesCommandInput, UpdateAttendeeCapabilitiesCommandOutput } from "./commands/UpdateAttendeeCapabilitiesCommand";
|
|
22
|
+
export declare type ServiceInputTypes = BatchCreateAttendeeCommandInput | BatchUpdateAttendeeCapabilitiesExceptCommandInput | CreateAttendeeCommandInput | CreateMeetingCommandInput | CreateMeetingWithAttendeesCommandInput | DeleteAttendeeCommandInput | DeleteMeetingCommandInput | GetAttendeeCommandInput | GetMeetingCommandInput | ListAttendeesCommandInput | StartMeetingTranscriptionCommandInput | StopMeetingTranscriptionCommandInput | UpdateAttendeeCapabilitiesCommandInput;
|
|
23
|
+
export declare type ServiceOutputTypes = BatchCreateAttendeeCommandOutput | BatchUpdateAttendeeCapabilitiesExceptCommandOutput | CreateAttendeeCommandOutput | CreateMeetingCommandOutput | CreateMeetingWithAttendeesCommandOutput | DeleteAttendeeCommandOutput | DeleteMeetingCommandOutput | GetAttendeeCommandOutput | GetMeetingCommandOutput | ListAttendeesCommandOutput | StartMeetingTranscriptionCommandOutput | StopMeetingTranscriptionCommandOutput | UpdateAttendeeCapabilitiesCommandOutput;
|
|
22
24
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
23
25
|
/**
|
|
24
26
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { ChimeSDKMeetingsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKMeetingsClient";
|
|
4
|
+
import { BatchUpdateAttendeeCapabilitiesExceptRequest } from "../models/models_0";
|
|
5
|
+
export interface BatchUpdateAttendeeCapabilitiesExceptCommandInput extends BatchUpdateAttendeeCapabilitiesExceptRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface BatchUpdateAttendeeCapabilitiesExceptCommandOutput extends __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* <p>Updates <code>AttendeeCapabilities</code> except the capabilities listed in an <code>ExcludedAttendeeIds</code> table.</p>
|
|
11
|
+
* @example
|
|
12
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
13
|
+
* ```javascript
|
|
14
|
+
* import { ChimeSDKMeetingsClient, BatchUpdateAttendeeCapabilitiesExceptCommand } from "@aws-sdk/client-chime-sdk-meetings"; // ES Modules import
|
|
15
|
+
* // const { ChimeSDKMeetingsClient, BatchUpdateAttendeeCapabilitiesExceptCommand } = require("@aws-sdk/client-chime-sdk-meetings"); // CommonJS import
|
|
16
|
+
* const client = new ChimeSDKMeetingsClient(config);
|
|
17
|
+
* const command = new BatchUpdateAttendeeCapabilitiesExceptCommand(input);
|
|
18
|
+
* const response = await client.send(command);
|
|
19
|
+
* ```
|
|
20
|
+
*
|
|
21
|
+
* @see {@link BatchUpdateAttendeeCapabilitiesExceptCommandInput} for command's `input` shape.
|
|
22
|
+
* @see {@link BatchUpdateAttendeeCapabilitiesExceptCommandOutput} for command's `response` shape.
|
|
23
|
+
* @see {@link ChimeSDKMeetingsClientResolvedConfig | config} for ChimeSDKMeetingsClient's `config` shape.
|
|
24
|
+
*
|
|
25
|
+
*/
|
|
26
|
+
export declare class BatchUpdateAttendeeCapabilitiesExceptCommand extends $Command<BatchUpdateAttendeeCapabilitiesExceptCommandInput, BatchUpdateAttendeeCapabilitiesExceptCommandOutput, ChimeSDKMeetingsClientResolvedConfig> {
|
|
27
|
+
readonly input: BatchUpdateAttendeeCapabilitiesExceptCommandInput;
|
|
28
|
+
constructor(input: BatchUpdateAttendeeCapabilitiesExceptCommandInput);
|
|
29
|
+
/**
|
|
30
|
+
* @internal
|
|
31
|
+
*/
|
|
32
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ChimeSDKMeetingsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<BatchUpdateAttendeeCapabilitiesExceptCommandInput, BatchUpdateAttendeeCapabilitiesExceptCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { ChimeSDKMeetingsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKMeetingsClient";
|
|
4
|
+
import { UpdateAttendeeCapabilitiesRequest, UpdateAttendeeCapabilitiesResponse } from "../models/models_0";
|
|
5
|
+
export interface UpdateAttendeeCapabilitiesCommandInput extends UpdateAttendeeCapabilitiesRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface UpdateAttendeeCapabilitiesCommandOutput extends UpdateAttendeeCapabilitiesResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* <p>The capabilties that you want to update.</p>
|
|
11
|
+
* @example
|
|
12
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
13
|
+
* ```javascript
|
|
14
|
+
* import { ChimeSDKMeetingsClient, UpdateAttendeeCapabilitiesCommand } from "@aws-sdk/client-chime-sdk-meetings"; // ES Modules import
|
|
15
|
+
* // const { ChimeSDKMeetingsClient, UpdateAttendeeCapabilitiesCommand } = require("@aws-sdk/client-chime-sdk-meetings"); // CommonJS import
|
|
16
|
+
* const client = new ChimeSDKMeetingsClient(config);
|
|
17
|
+
* const command = new UpdateAttendeeCapabilitiesCommand(input);
|
|
18
|
+
* const response = await client.send(command);
|
|
19
|
+
* ```
|
|
20
|
+
*
|
|
21
|
+
* @see {@link UpdateAttendeeCapabilitiesCommandInput} for command's `input` shape.
|
|
22
|
+
* @see {@link UpdateAttendeeCapabilitiesCommandOutput} for command's `response` shape.
|
|
23
|
+
* @see {@link ChimeSDKMeetingsClientResolvedConfig | config} for ChimeSDKMeetingsClient's `config` shape.
|
|
24
|
+
*
|
|
25
|
+
*/
|
|
26
|
+
export declare class UpdateAttendeeCapabilitiesCommand extends $Command<UpdateAttendeeCapabilitiesCommandInput, UpdateAttendeeCapabilitiesCommandOutput, ChimeSDKMeetingsClientResolvedConfig> {
|
|
27
|
+
readonly input: UpdateAttendeeCapabilitiesCommandInput;
|
|
28
|
+
constructor(input: UpdateAttendeeCapabilitiesCommandInput);
|
|
29
|
+
/**
|
|
30
|
+
* @internal
|
|
31
|
+
*/
|
|
32
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ChimeSDKMeetingsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateAttendeeCapabilitiesCommandInput, UpdateAttendeeCapabilitiesCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export * from "./BatchCreateAttendeeCommand";
|
|
2
|
+
export * from "./BatchUpdateAttendeeCapabilitiesExceptCommand";
|
|
2
3
|
export * from "./CreateAttendeeCommand";
|
|
3
4
|
export * from "./CreateMeetingCommand";
|
|
4
5
|
export * from "./CreateMeetingWithAttendeesCommand";
|
|
@@ -9,3 +10,4 @@ export * from "./GetMeetingCommand";
|
|
|
9
10
|
export * from "./ListAttendeesCommand";
|
|
10
11
|
export * from "./StartMeetingTranscriptionCommand";
|
|
11
12
|
export * from "./StopMeetingTranscriptionCommand";
|
|
13
|
+
export * from "./UpdateAttendeeCapabilitiesCommand";
|
|
@@ -1,5 +1,34 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { ChimeSDKMeetingsServiceException as __BaseException } from "./ChimeSDKMeetingsServiceException";
|
|
3
|
+
export declare enum MediaCapabilities {
|
|
4
|
+
NONE = "None",
|
|
5
|
+
RECEIVE = "Receive",
|
|
6
|
+
SEND = "Send",
|
|
7
|
+
SEND_RECEIVE = "SendReceive"
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* <p>The media capabilities of an attendee, including audio, video and content. </p>
|
|
11
|
+
*/
|
|
12
|
+
export interface AttendeeCapabilities {
|
|
13
|
+
/**
|
|
14
|
+
* <p>The audio capability assigned to an attendee.</p>
|
|
15
|
+
*/
|
|
16
|
+
Audio: MediaCapabilities | string | undefined;
|
|
17
|
+
/**
|
|
18
|
+
* <p>The video capability assigned to an attendee.</p>
|
|
19
|
+
*/
|
|
20
|
+
Video: MediaCapabilities | string | undefined;
|
|
21
|
+
/**
|
|
22
|
+
* <p>The content capability assigned to an attendee.</p>
|
|
23
|
+
*/
|
|
24
|
+
Content: MediaCapabilities | string | undefined;
|
|
25
|
+
}
|
|
26
|
+
export declare namespace AttendeeCapabilities {
|
|
27
|
+
/**
|
|
28
|
+
* @internal
|
|
29
|
+
*/
|
|
30
|
+
const filterSensitiveLog: (obj: AttendeeCapabilities) => any;
|
|
31
|
+
}
|
|
3
32
|
/**
|
|
4
33
|
* <p>An Amazon Chime SDK meeting attendee. Includes a unique
|
|
5
34
|
* <code>AttendeeId</code> and <code>JoinToken</code>. The
|
|
@@ -28,6 +57,10 @@ export interface Attendee {
|
|
|
28
57
|
* <p>The join token used by the Amazon Chime SDK attendee.</p>
|
|
29
58
|
*/
|
|
30
59
|
JoinToken?: string;
|
|
60
|
+
/**
|
|
61
|
+
* <p>The capabilities (audio, video, or content) assigned to an attendee.</p>
|
|
62
|
+
*/
|
|
63
|
+
Capabilities?: AttendeeCapabilities;
|
|
31
64
|
}
|
|
32
65
|
export declare namespace Attendee {
|
|
33
66
|
/**
|
|
@@ -35,6 +68,21 @@ export declare namespace Attendee {
|
|
|
35
68
|
*/
|
|
36
69
|
const filterSensitiveLog: (obj: Attendee) => any;
|
|
37
70
|
}
|
|
71
|
+
/**
|
|
72
|
+
* <p>A structure that contains one or more attendee IDs.</p>
|
|
73
|
+
*/
|
|
74
|
+
export interface AttendeeIdItem {
|
|
75
|
+
/**
|
|
76
|
+
* <p>A list of one or more attendee IDs.</p>
|
|
77
|
+
*/
|
|
78
|
+
AttendeeId: string | undefined;
|
|
79
|
+
}
|
|
80
|
+
export declare namespace AttendeeIdItem {
|
|
81
|
+
/**
|
|
82
|
+
* @internal
|
|
83
|
+
*/
|
|
84
|
+
const filterSensitiveLog: (obj: AttendeeIdItem) => any;
|
|
85
|
+
}
|
|
38
86
|
export declare enum MeetingFeatureStatus {
|
|
39
87
|
AVAILABLE = "AVAILABLE",
|
|
40
88
|
UNAVAILABLE = "UNAVAILABLE"
|
|
@@ -79,6 +127,10 @@ export interface CreateAttendeeRequestItem {
|
|
|
79
127
|
* <p>The Amazon Chime SDK external user ID. An idempotency token. Links the attendee to an identity managed by a builder application.</p>
|
|
80
128
|
*/
|
|
81
129
|
ExternalUserId: string | undefined;
|
|
130
|
+
/**
|
|
131
|
+
* <p>A list of one or more capabilities.</p>
|
|
132
|
+
*/
|
|
133
|
+
Capabilities?: AttendeeCapabilities;
|
|
82
134
|
}
|
|
83
135
|
export declare namespace CreateAttendeeRequestItem {
|
|
84
136
|
/**
|
|
@@ -184,7 +236,7 @@ export declare class NotFoundException extends __BaseException {
|
|
|
184
236
|
Code?: string;
|
|
185
237
|
Message?: string;
|
|
186
238
|
/**
|
|
187
|
-
* <p>The request
|
|
239
|
+
* <p>The request ID associated with the call responsible for the exception.</p>
|
|
188
240
|
*/
|
|
189
241
|
RequestId?: string;
|
|
190
242
|
/**
|
|
@@ -193,7 +245,7 @@ export declare class NotFoundException extends __BaseException {
|
|
|
193
245
|
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
194
246
|
}
|
|
195
247
|
/**
|
|
196
|
-
* <p>The service
|
|
248
|
+
* <p>The service is currently unavailable.</p>
|
|
197
249
|
*/
|
|
198
250
|
export declare class ServiceFailureException extends __BaseException {
|
|
199
251
|
readonly name: "ServiceFailureException";
|
|
@@ -228,7 +280,7 @@ export declare class ServiceUnavailableException extends __BaseException {
|
|
|
228
280
|
constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
|
|
229
281
|
}
|
|
230
282
|
/**
|
|
231
|
-
* <p>The number of
|
|
283
|
+
* <p>The number of requests exceeds the limit.</p>
|
|
232
284
|
*/
|
|
233
285
|
export declare class ThrottlingException extends __BaseException {
|
|
234
286
|
readonly name: "ThrottlingException";
|
|
@@ -275,6 +327,40 @@ export declare class UnprocessableEntityException extends __BaseException {
|
|
|
275
327
|
*/
|
|
276
328
|
constructor(opts: __ExceptionOptionType<UnprocessableEntityException, __BaseException>);
|
|
277
329
|
}
|
|
330
|
+
export interface BatchUpdateAttendeeCapabilitiesExceptRequest {
|
|
331
|
+
/**
|
|
332
|
+
* <p>The ID of the meeting associated with the update request.</p>
|
|
333
|
+
*/
|
|
334
|
+
MeetingId: string | undefined;
|
|
335
|
+
/**
|
|
336
|
+
* <p>The <code>AttendeeIDs</code> that you want to exclude from one or more capabilities.</p>
|
|
337
|
+
*/
|
|
338
|
+
ExcludedAttendeeIds: AttendeeIdItem[] | undefined;
|
|
339
|
+
/**
|
|
340
|
+
* <p>The capabilities (<code>audio</code>, <code>video</code>, or <code>content</code>) that you want to update.</p>
|
|
341
|
+
*/
|
|
342
|
+
Capabilities: AttendeeCapabilities | undefined;
|
|
343
|
+
}
|
|
344
|
+
export declare namespace BatchUpdateAttendeeCapabilitiesExceptRequest {
|
|
345
|
+
/**
|
|
346
|
+
* @internal
|
|
347
|
+
*/
|
|
348
|
+
const filterSensitiveLog: (obj: BatchUpdateAttendeeCapabilitiesExceptRequest) => any;
|
|
349
|
+
}
|
|
350
|
+
/**
|
|
351
|
+
* <p>Multiple instances of the same request have been made simultaneously.</p>
|
|
352
|
+
*/
|
|
353
|
+
export declare class ConflictException extends __BaseException {
|
|
354
|
+
readonly name: "ConflictException";
|
|
355
|
+
readonly $fault: "client";
|
|
356
|
+
Code?: string;
|
|
357
|
+
Message?: string;
|
|
358
|
+
RequestId?: string;
|
|
359
|
+
/**
|
|
360
|
+
* @internal
|
|
361
|
+
*/
|
|
362
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
363
|
+
}
|
|
278
364
|
export interface CreateAttendeeRequest {
|
|
279
365
|
/**
|
|
280
366
|
* <p>The unique ID of the meeting.</p>
|
|
@@ -284,6 +370,11 @@ export interface CreateAttendeeRequest {
|
|
|
284
370
|
* <p>The Amazon Chime SDK external user ID. An idempotency token. Links the attendee to an identity managed by a builder application.</p>
|
|
285
371
|
*/
|
|
286
372
|
ExternalUserId: string | undefined;
|
|
373
|
+
/**
|
|
374
|
+
* <p>The capabilities (<code>audio</code>, <code>video</code>, or <code>content</code>) that you want to grant an attendee. If you don't specify capabilities, all users have send and receive capabilities on
|
|
375
|
+
* all media channels by default.</p>
|
|
376
|
+
*/
|
|
377
|
+
Capabilities?: AttendeeCapabilities;
|
|
287
378
|
}
|
|
288
379
|
export declare namespace CreateAttendeeRequest {
|
|
289
380
|
/**
|
|
@@ -800,6 +891,7 @@ export declare enum TranscribeRegion {
|
|
|
800
891
|
SA_EAST_1 = "sa-east-1",
|
|
801
892
|
US_EAST_1 = "us-east-1",
|
|
802
893
|
US_EAST_2 = "us-east-2",
|
|
894
|
+
US_GOV_WEST_1 = "us-gov-west-1",
|
|
803
895
|
US_WEST_2 = "us-west-2"
|
|
804
896
|
}
|
|
805
897
|
export declare enum TranscribeVocabularyFilterMethod {
|
|
@@ -932,3 +1024,47 @@ export declare namespace StopMeetingTranscriptionRequest {
|
|
|
932
1024
|
*/
|
|
933
1025
|
const filterSensitiveLog: (obj: StopMeetingTranscriptionRequest) => any;
|
|
934
1026
|
}
|
|
1027
|
+
export interface UpdateAttendeeCapabilitiesRequest {
|
|
1028
|
+
/**
|
|
1029
|
+
* <p>The ID of the meeting associated with the update request.</p>
|
|
1030
|
+
*/
|
|
1031
|
+
MeetingId: string | undefined;
|
|
1032
|
+
/**
|
|
1033
|
+
* <p>The ID of the attendee associated with the update request.</p>
|
|
1034
|
+
*/
|
|
1035
|
+
AttendeeId: string | undefined;
|
|
1036
|
+
/**
|
|
1037
|
+
* <p>The capabilties that you want to update.</p>
|
|
1038
|
+
*/
|
|
1039
|
+
Capabilities: AttendeeCapabilities | undefined;
|
|
1040
|
+
}
|
|
1041
|
+
export declare namespace UpdateAttendeeCapabilitiesRequest {
|
|
1042
|
+
/**
|
|
1043
|
+
* @internal
|
|
1044
|
+
*/
|
|
1045
|
+
const filterSensitiveLog: (obj: UpdateAttendeeCapabilitiesRequest) => any;
|
|
1046
|
+
}
|
|
1047
|
+
export interface UpdateAttendeeCapabilitiesResponse {
|
|
1048
|
+
/**
|
|
1049
|
+
* <p>An Amazon Chime SDK meeting attendee. Includes a unique
|
|
1050
|
+
* <code>AttendeeId</code> and <code>JoinToken</code>. The
|
|
1051
|
+
* <code>JoinToken</code>
|
|
1052
|
+
* allows a client to authenticate and join as the specified attendee. The
|
|
1053
|
+
* <code>JoinToken</code>
|
|
1054
|
+
* expires when the meeting ends, or when
|
|
1055
|
+
* <a>DeleteAttendee</a>
|
|
1056
|
+
* is called. After that, the attendee is unable to join the meeting.
|
|
1057
|
+
* </p>
|
|
1058
|
+
*
|
|
1059
|
+
* <p>We recommend securely transferring each <code>JoinToken</code> from your server application
|
|
1060
|
+
* to the client so that no other client has access to the token except for the one
|
|
1061
|
+
* authorized to represent the attendee.</p>
|
|
1062
|
+
*/
|
|
1063
|
+
Attendee?: Attendee;
|
|
1064
|
+
}
|
|
1065
|
+
export declare namespace UpdateAttendeeCapabilitiesResponse {
|
|
1066
|
+
/**
|
|
1067
|
+
* @internal
|
|
1068
|
+
*/
|
|
1069
|
+
const filterSensitiveLog: (obj: UpdateAttendeeCapabilitiesResponse) => any;
|
|
1070
|
+
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
|
|
2
2
|
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
3
3
|
import { BatchCreateAttendeeCommandInput, BatchCreateAttendeeCommandOutput } from "../commands/BatchCreateAttendeeCommand";
|
|
4
|
+
import { BatchUpdateAttendeeCapabilitiesExceptCommandInput, BatchUpdateAttendeeCapabilitiesExceptCommandOutput } from "../commands/BatchUpdateAttendeeCapabilitiesExceptCommand";
|
|
4
5
|
import { CreateAttendeeCommandInput, CreateAttendeeCommandOutput } from "../commands/CreateAttendeeCommand";
|
|
5
6
|
import { CreateMeetingCommandInput, CreateMeetingCommandOutput } from "../commands/CreateMeetingCommand";
|
|
6
7
|
import { CreateMeetingWithAttendeesCommandInput, CreateMeetingWithAttendeesCommandOutput } from "../commands/CreateMeetingWithAttendeesCommand";
|
|
@@ -11,7 +12,9 @@ import { GetMeetingCommandInput, GetMeetingCommandOutput } from "../commands/Get
|
|
|
11
12
|
import { ListAttendeesCommandInput, ListAttendeesCommandOutput } from "../commands/ListAttendeesCommand";
|
|
12
13
|
import { StartMeetingTranscriptionCommandInput, StartMeetingTranscriptionCommandOutput } from "../commands/StartMeetingTranscriptionCommand";
|
|
13
14
|
import { StopMeetingTranscriptionCommandInput, StopMeetingTranscriptionCommandOutput } from "../commands/StopMeetingTranscriptionCommand";
|
|
15
|
+
import { UpdateAttendeeCapabilitiesCommandInput, UpdateAttendeeCapabilitiesCommandOutput } from "../commands/UpdateAttendeeCapabilitiesCommand";
|
|
14
16
|
export declare const serializeAws_restJson1BatchCreateAttendeeCommand: (input: BatchCreateAttendeeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
17
|
+
export declare const serializeAws_restJson1BatchUpdateAttendeeCapabilitiesExceptCommand: (input: BatchUpdateAttendeeCapabilitiesExceptCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
15
18
|
export declare const serializeAws_restJson1CreateAttendeeCommand: (input: CreateAttendeeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
16
19
|
export declare const serializeAws_restJson1CreateMeetingCommand: (input: CreateMeetingCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
17
20
|
export declare const serializeAws_restJson1CreateMeetingWithAttendeesCommand: (input: CreateMeetingWithAttendeesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -22,7 +25,9 @@ export declare const serializeAws_restJson1GetMeetingCommand: (input: GetMeeting
|
|
|
22
25
|
export declare const serializeAws_restJson1ListAttendeesCommand: (input: ListAttendeesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
23
26
|
export declare const serializeAws_restJson1StartMeetingTranscriptionCommand: (input: StartMeetingTranscriptionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
24
27
|
export declare const serializeAws_restJson1StopMeetingTranscriptionCommand: (input: StopMeetingTranscriptionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
28
|
+
export declare const serializeAws_restJson1UpdateAttendeeCapabilitiesCommand: (input: UpdateAttendeeCapabilitiesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
25
29
|
export declare const deserializeAws_restJson1BatchCreateAttendeeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<BatchCreateAttendeeCommandOutput>;
|
|
30
|
+
export declare const deserializeAws_restJson1BatchUpdateAttendeeCapabilitiesExceptCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<BatchUpdateAttendeeCapabilitiesExceptCommandOutput>;
|
|
26
31
|
export declare const deserializeAws_restJson1CreateAttendeeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateAttendeeCommandOutput>;
|
|
27
32
|
export declare const deserializeAws_restJson1CreateMeetingCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateMeetingCommandOutput>;
|
|
28
33
|
export declare const deserializeAws_restJson1CreateMeetingWithAttendeesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateMeetingWithAttendeesCommandOutput>;
|
|
@@ -33,3 +38,4 @@ export declare const deserializeAws_restJson1GetMeetingCommand: (output: __HttpR
|
|
|
33
38
|
export declare const deserializeAws_restJson1ListAttendeesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAttendeesCommandOutput>;
|
|
34
39
|
export declare const deserializeAws_restJson1StartMeetingTranscriptionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartMeetingTranscriptionCommandOutput>;
|
|
35
40
|
export declare const deserializeAws_restJson1StopMeetingTranscriptionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopMeetingTranscriptionCommandOutput>;
|
|
41
|
+
export declare const deserializeAws_restJson1UpdateAttendeeCapabilitiesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateAttendeeCapabilitiesCommandOutput>;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
2
|
import { ChimeSDKMeetingsClient } from "./ChimeSDKMeetingsClient";
|
|
3
3
|
import { BatchCreateAttendeeCommandInput, BatchCreateAttendeeCommandOutput } from "./commands/BatchCreateAttendeeCommand";
|
|
4
|
+
import { BatchUpdateAttendeeCapabilitiesExceptCommandInput, BatchUpdateAttendeeCapabilitiesExceptCommandOutput } from "./commands/BatchUpdateAttendeeCapabilitiesExceptCommand";
|
|
4
5
|
import { CreateAttendeeCommandInput, CreateAttendeeCommandOutput } from "./commands/CreateAttendeeCommand";
|
|
5
6
|
import { CreateMeetingCommandInput, CreateMeetingCommandOutput } from "./commands/CreateMeetingCommand";
|
|
6
7
|
import { CreateMeetingWithAttendeesCommandInput, CreateMeetingWithAttendeesCommandOutput } from "./commands/CreateMeetingWithAttendeesCommand";
|
|
@@ -11,6 +12,7 @@ import { GetMeetingCommandInput, GetMeetingCommandOutput } from "./commands/GetM
|
|
|
11
12
|
import { ListAttendeesCommandInput, ListAttendeesCommandOutput } from "./commands/ListAttendeesCommand";
|
|
12
13
|
import { StartMeetingTranscriptionCommandInput, StartMeetingTranscriptionCommandOutput } from "./commands/StartMeetingTranscriptionCommand";
|
|
13
14
|
import { StopMeetingTranscriptionCommandInput, StopMeetingTranscriptionCommandOutput } from "./commands/StopMeetingTranscriptionCommand";
|
|
15
|
+
import { UpdateAttendeeCapabilitiesCommandInput, UpdateAttendeeCapabilitiesCommandOutput } from "./commands/UpdateAttendeeCapabilitiesCommand";
|
|
14
16
|
|
|
15
17
|
export declare class ChimeSDKMeetings extends ChimeSDKMeetingsClient {
|
|
16
18
|
|
|
@@ -18,6 +20,10 @@ export declare class ChimeSDKMeetings extends ChimeSDKMeetingsClient {
|
|
|
18
20
|
batchCreateAttendee(args: BatchCreateAttendeeCommandInput, cb: (err: any, data?: BatchCreateAttendeeCommandOutput) => void): void;
|
|
19
21
|
batchCreateAttendee(args: BatchCreateAttendeeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchCreateAttendeeCommandOutput) => void): void;
|
|
20
22
|
|
|
23
|
+
batchUpdateAttendeeCapabilitiesExcept(args: BatchUpdateAttendeeCapabilitiesExceptCommandInput, options?: __HttpHandlerOptions): Promise<BatchUpdateAttendeeCapabilitiesExceptCommandOutput>;
|
|
24
|
+
batchUpdateAttendeeCapabilitiesExcept(args: BatchUpdateAttendeeCapabilitiesExceptCommandInput, cb: (err: any, data?: BatchUpdateAttendeeCapabilitiesExceptCommandOutput) => void): void;
|
|
25
|
+
batchUpdateAttendeeCapabilitiesExcept(args: BatchUpdateAttendeeCapabilitiesExceptCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchUpdateAttendeeCapabilitiesExceptCommandOutput) => void): void;
|
|
26
|
+
|
|
21
27
|
createAttendee(args: CreateAttendeeCommandInput, options?: __HttpHandlerOptions): Promise<CreateAttendeeCommandOutput>;
|
|
22
28
|
createAttendee(args: CreateAttendeeCommandInput, cb: (err: any, data?: CreateAttendeeCommandOutput) => void): void;
|
|
23
29
|
createAttendee(args: CreateAttendeeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateAttendeeCommandOutput) => void): void;
|
|
@@ -57,4 +63,8 @@ export declare class ChimeSDKMeetings extends ChimeSDKMeetingsClient {
|
|
|
57
63
|
stopMeetingTranscription(args: StopMeetingTranscriptionCommandInput, options?: __HttpHandlerOptions): Promise<StopMeetingTranscriptionCommandOutput>;
|
|
58
64
|
stopMeetingTranscription(args: StopMeetingTranscriptionCommandInput, cb: (err: any, data?: StopMeetingTranscriptionCommandOutput) => void): void;
|
|
59
65
|
stopMeetingTranscription(args: StopMeetingTranscriptionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopMeetingTranscriptionCommandOutput) => void): void;
|
|
66
|
+
|
|
67
|
+
updateAttendeeCapabilities(args: UpdateAttendeeCapabilitiesCommandInput, options?: __HttpHandlerOptions): Promise<UpdateAttendeeCapabilitiesCommandOutput>;
|
|
68
|
+
updateAttendeeCapabilities(args: UpdateAttendeeCapabilitiesCommandInput, cb: (err: any, data?: UpdateAttendeeCapabilitiesCommandOutput) => void): void;
|
|
69
|
+
updateAttendeeCapabilities(args: UpdateAttendeeCapabilitiesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateAttendeeCapabilitiesCommandOutput) => void): void;
|
|
60
70
|
}
|
|
@@ -7,6 +7,7 @@ import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
|
7
7
|
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
8
|
import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
9
|
import { BatchCreateAttendeeCommandInput, BatchCreateAttendeeCommandOutput } from "./commands/BatchCreateAttendeeCommand";
|
|
10
|
+
import { BatchUpdateAttendeeCapabilitiesExceptCommandInput, BatchUpdateAttendeeCapabilitiesExceptCommandOutput } from "./commands/BatchUpdateAttendeeCapabilitiesExceptCommand";
|
|
10
11
|
import { CreateAttendeeCommandInput, CreateAttendeeCommandOutput } from "./commands/CreateAttendeeCommand";
|
|
11
12
|
import { CreateMeetingCommandInput, CreateMeetingCommandOutput } from "./commands/CreateMeetingCommand";
|
|
12
13
|
import { CreateMeetingWithAttendeesCommandInput, CreateMeetingWithAttendeesCommandOutput } from "./commands/CreateMeetingWithAttendeesCommand";
|
|
@@ -17,8 +18,9 @@ import { GetMeetingCommandInput, GetMeetingCommandOutput } from "./commands/GetM
|
|
|
17
18
|
import { ListAttendeesCommandInput, ListAttendeesCommandOutput } from "./commands/ListAttendeesCommand";
|
|
18
19
|
import { StartMeetingTranscriptionCommandInput, StartMeetingTranscriptionCommandOutput } from "./commands/StartMeetingTranscriptionCommand";
|
|
19
20
|
import { StopMeetingTranscriptionCommandInput, StopMeetingTranscriptionCommandOutput } from "./commands/StopMeetingTranscriptionCommand";
|
|
20
|
-
|
|
21
|
-
export declare type
|
|
21
|
+
import { UpdateAttendeeCapabilitiesCommandInput, UpdateAttendeeCapabilitiesCommandOutput } from "./commands/UpdateAttendeeCapabilitiesCommand";
|
|
22
|
+
export declare type ServiceInputTypes = BatchCreateAttendeeCommandInput | BatchUpdateAttendeeCapabilitiesExceptCommandInput | CreateAttendeeCommandInput | CreateMeetingCommandInput | CreateMeetingWithAttendeesCommandInput | DeleteAttendeeCommandInput | DeleteMeetingCommandInput | GetAttendeeCommandInput | GetMeetingCommandInput | ListAttendeesCommandInput | StartMeetingTranscriptionCommandInput | StopMeetingTranscriptionCommandInput | UpdateAttendeeCapabilitiesCommandInput;
|
|
23
|
+
export declare type ServiceOutputTypes = BatchCreateAttendeeCommandOutput | BatchUpdateAttendeeCapabilitiesExceptCommandOutput | CreateAttendeeCommandOutput | CreateMeetingCommandOutput | CreateMeetingWithAttendeesCommandOutput | DeleteAttendeeCommandOutput | DeleteMeetingCommandOutput | GetAttendeeCommandOutput | GetMeetingCommandOutput | ListAttendeesCommandOutput | StartMeetingTranscriptionCommandOutput | StopMeetingTranscriptionCommandOutput | UpdateAttendeeCapabilitiesCommandOutput;
|
|
22
24
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
23
25
|
|
|
24
26
|
requestHandler?: __HttpHandler;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { ChimeSDKMeetingsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKMeetingsClient";
|
|
4
|
+
import { BatchUpdateAttendeeCapabilitiesExceptRequest } from "../models/models_0";
|
|
5
|
+
export interface BatchUpdateAttendeeCapabilitiesExceptCommandInput extends BatchUpdateAttendeeCapabilitiesExceptRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface BatchUpdateAttendeeCapabilitiesExceptCommandOutput extends __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class BatchUpdateAttendeeCapabilitiesExceptCommand extends $Command<BatchUpdateAttendeeCapabilitiesExceptCommandInput, BatchUpdateAttendeeCapabilitiesExceptCommandOutput, ChimeSDKMeetingsClientResolvedConfig> {
|
|
11
|
+
readonly input: BatchUpdateAttendeeCapabilitiesExceptCommandInput;
|
|
12
|
+
constructor(input: BatchUpdateAttendeeCapabilitiesExceptCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ChimeSDKMeetingsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<BatchUpdateAttendeeCapabilitiesExceptCommandInput, BatchUpdateAttendeeCapabilitiesExceptCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { ChimeSDKMeetingsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKMeetingsClient";
|
|
4
|
+
import { UpdateAttendeeCapabilitiesRequest, UpdateAttendeeCapabilitiesResponse } from "../models/models_0";
|
|
5
|
+
export interface UpdateAttendeeCapabilitiesCommandInput extends UpdateAttendeeCapabilitiesRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface UpdateAttendeeCapabilitiesCommandOutput extends UpdateAttendeeCapabilitiesResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class UpdateAttendeeCapabilitiesCommand extends $Command<UpdateAttendeeCapabilitiesCommandInput, UpdateAttendeeCapabilitiesCommandOutput, ChimeSDKMeetingsClientResolvedConfig> {
|
|
11
|
+
readonly input: UpdateAttendeeCapabilitiesCommandInput;
|
|
12
|
+
constructor(input: UpdateAttendeeCapabilitiesCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ChimeSDKMeetingsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateAttendeeCapabilitiesCommandInput, UpdateAttendeeCapabilitiesCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export * from "./BatchCreateAttendeeCommand";
|
|
2
|
+
export * from "./BatchUpdateAttendeeCapabilitiesExceptCommand";
|
|
2
3
|
export * from "./CreateAttendeeCommand";
|
|
3
4
|
export * from "./CreateMeetingCommand";
|
|
4
5
|
export * from "./CreateMeetingWithAttendeesCommand";
|
|
@@ -9,3 +10,4 @@ export * from "./GetMeetingCommand";
|
|
|
9
10
|
export * from "./ListAttendeesCommand";
|
|
10
11
|
export * from "./StartMeetingTranscriptionCommand";
|
|
11
12
|
export * from "./StopMeetingTranscriptionCommand";
|
|
13
|
+
export * from "./UpdateAttendeeCapabilitiesCommand";
|
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { ChimeSDKMeetingsServiceException as __BaseException } from "./ChimeSDKMeetingsServiceException";
|
|
3
|
+
export declare enum MediaCapabilities {
|
|
4
|
+
NONE = "None",
|
|
5
|
+
RECEIVE = "Receive",
|
|
6
|
+
SEND = "Send",
|
|
7
|
+
SEND_RECEIVE = "SendReceive"
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export interface AttendeeCapabilities {
|
|
11
|
+
|
|
12
|
+
Audio: MediaCapabilities | string | undefined;
|
|
13
|
+
|
|
14
|
+
Video: MediaCapabilities | string | undefined;
|
|
15
|
+
|
|
16
|
+
Content: MediaCapabilities | string | undefined;
|
|
17
|
+
}
|
|
18
|
+
export declare namespace AttendeeCapabilities {
|
|
19
|
+
|
|
20
|
+
const filterSensitiveLog: (obj: AttendeeCapabilities) => any;
|
|
21
|
+
}
|
|
3
22
|
|
|
4
23
|
export interface Attendee {
|
|
5
24
|
|
|
@@ -8,11 +27,22 @@ export interface Attendee {
|
|
|
8
27
|
AttendeeId?: string;
|
|
9
28
|
|
|
10
29
|
JoinToken?: string;
|
|
30
|
+
|
|
31
|
+
Capabilities?: AttendeeCapabilities;
|
|
11
32
|
}
|
|
12
33
|
export declare namespace Attendee {
|
|
13
34
|
|
|
14
35
|
const filterSensitiveLog: (obj: Attendee) => any;
|
|
15
36
|
}
|
|
37
|
+
|
|
38
|
+
export interface AttendeeIdItem {
|
|
39
|
+
|
|
40
|
+
AttendeeId: string | undefined;
|
|
41
|
+
}
|
|
42
|
+
export declare namespace AttendeeIdItem {
|
|
43
|
+
|
|
44
|
+
const filterSensitiveLog: (obj: AttendeeIdItem) => any;
|
|
45
|
+
}
|
|
16
46
|
export declare enum MeetingFeatureStatus {
|
|
17
47
|
AVAILABLE = "AVAILABLE",
|
|
18
48
|
UNAVAILABLE = "UNAVAILABLE"
|
|
@@ -41,6 +71,8 @@ export declare class BadRequestException extends __BaseException {
|
|
|
41
71
|
export interface CreateAttendeeRequestItem {
|
|
42
72
|
|
|
43
73
|
ExternalUserId: string | undefined;
|
|
74
|
+
|
|
75
|
+
Capabilities?: AttendeeCapabilities;
|
|
44
76
|
}
|
|
45
77
|
export declare namespace CreateAttendeeRequestItem {
|
|
46
78
|
|
|
@@ -167,11 +199,35 @@ export declare class UnprocessableEntityException extends __BaseException {
|
|
|
167
199
|
|
|
168
200
|
constructor(opts: __ExceptionOptionType<UnprocessableEntityException, __BaseException>);
|
|
169
201
|
}
|
|
202
|
+
export interface BatchUpdateAttendeeCapabilitiesExceptRequest {
|
|
203
|
+
|
|
204
|
+
MeetingId: string | undefined;
|
|
205
|
+
|
|
206
|
+
ExcludedAttendeeIds: AttendeeIdItem[] | undefined;
|
|
207
|
+
|
|
208
|
+
Capabilities: AttendeeCapabilities | undefined;
|
|
209
|
+
}
|
|
210
|
+
export declare namespace BatchUpdateAttendeeCapabilitiesExceptRequest {
|
|
211
|
+
|
|
212
|
+
const filterSensitiveLog: (obj: BatchUpdateAttendeeCapabilitiesExceptRequest) => any;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
export declare class ConflictException extends __BaseException {
|
|
216
|
+
readonly name: "ConflictException";
|
|
217
|
+
readonly $fault: "client";
|
|
218
|
+
Code?: string;
|
|
219
|
+
Message?: string;
|
|
220
|
+
RequestId?: string;
|
|
221
|
+
|
|
222
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
223
|
+
}
|
|
170
224
|
export interface CreateAttendeeRequest {
|
|
171
225
|
|
|
172
226
|
MeetingId: string | undefined;
|
|
173
227
|
|
|
174
228
|
ExternalUserId: string | undefined;
|
|
229
|
+
|
|
230
|
+
Capabilities?: AttendeeCapabilities;
|
|
175
231
|
}
|
|
176
232
|
export declare namespace CreateAttendeeRequest {
|
|
177
233
|
|
|
@@ -470,6 +526,7 @@ export declare enum TranscribeRegion {
|
|
|
470
526
|
SA_EAST_1 = "sa-east-1",
|
|
471
527
|
US_EAST_1 = "us-east-1",
|
|
472
528
|
US_EAST_2 = "us-east-2",
|
|
529
|
+
US_GOV_WEST_1 = "us-gov-west-1",
|
|
473
530
|
US_WEST_2 = "us-west-2"
|
|
474
531
|
}
|
|
475
532
|
export declare enum TranscribeVocabularyFilterMethod {
|
|
@@ -541,3 +598,23 @@ export declare namespace StopMeetingTranscriptionRequest {
|
|
|
541
598
|
|
|
542
599
|
const filterSensitiveLog: (obj: StopMeetingTranscriptionRequest) => any;
|
|
543
600
|
}
|
|
601
|
+
export interface UpdateAttendeeCapabilitiesRequest {
|
|
602
|
+
|
|
603
|
+
MeetingId: string | undefined;
|
|
604
|
+
|
|
605
|
+
AttendeeId: string | undefined;
|
|
606
|
+
|
|
607
|
+
Capabilities: AttendeeCapabilities | undefined;
|
|
608
|
+
}
|
|
609
|
+
export declare namespace UpdateAttendeeCapabilitiesRequest {
|
|
610
|
+
|
|
611
|
+
const filterSensitiveLog: (obj: UpdateAttendeeCapabilitiesRequest) => any;
|
|
612
|
+
}
|
|
613
|
+
export interface UpdateAttendeeCapabilitiesResponse {
|
|
614
|
+
|
|
615
|
+
Attendee?: Attendee;
|
|
616
|
+
}
|
|
617
|
+
export declare namespace UpdateAttendeeCapabilitiesResponse {
|
|
618
|
+
|
|
619
|
+
const filterSensitiveLog: (obj: UpdateAttendeeCapabilitiesResponse) => any;
|
|
620
|
+
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
|
|
2
2
|
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
3
3
|
import { BatchCreateAttendeeCommandInput, BatchCreateAttendeeCommandOutput } from "../commands/BatchCreateAttendeeCommand";
|
|
4
|
+
import { BatchUpdateAttendeeCapabilitiesExceptCommandInput, BatchUpdateAttendeeCapabilitiesExceptCommandOutput } from "../commands/BatchUpdateAttendeeCapabilitiesExceptCommand";
|
|
4
5
|
import { CreateAttendeeCommandInput, CreateAttendeeCommandOutput } from "../commands/CreateAttendeeCommand";
|
|
5
6
|
import { CreateMeetingCommandInput, CreateMeetingCommandOutput } from "../commands/CreateMeetingCommand";
|
|
6
7
|
import { CreateMeetingWithAttendeesCommandInput, CreateMeetingWithAttendeesCommandOutput } from "../commands/CreateMeetingWithAttendeesCommand";
|
|
@@ -11,7 +12,9 @@ import { GetMeetingCommandInput, GetMeetingCommandOutput } from "../commands/Get
|
|
|
11
12
|
import { ListAttendeesCommandInput, ListAttendeesCommandOutput } from "../commands/ListAttendeesCommand";
|
|
12
13
|
import { StartMeetingTranscriptionCommandInput, StartMeetingTranscriptionCommandOutput } from "../commands/StartMeetingTranscriptionCommand";
|
|
13
14
|
import { StopMeetingTranscriptionCommandInput, StopMeetingTranscriptionCommandOutput } from "../commands/StopMeetingTranscriptionCommand";
|
|
15
|
+
import { UpdateAttendeeCapabilitiesCommandInput, UpdateAttendeeCapabilitiesCommandOutput } from "../commands/UpdateAttendeeCapabilitiesCommand";
|
|
14
16
|
export declare const serializeAws_restJson1BatchCreateAttendeeCommand: (input: BatchCreateAttendeeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
17
|
+
export declare const serializeAws_restJson1BatchUpdateAttendeeCapabilitiesExceptCommand: (input: BatchUpdateAttendeeCapabilitiesExceptCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
15
18
|
export declare const serializeAws_restJson1CreateAttendeeCommand: (input: CreateAttendeeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
16
19
|
export declare const serializeAws_restJson1CreateMeetingCommand: (input: CreateMeetingCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
17
20
|
export declare const serializeAws_restJson1CreateMeetingWithAttendeesCommand: (input: CreateMeetingWithAttendeesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -22,7 +25,9 @@ export declare const serializeAws_restJson1GetMeetingCommand: (input: GetMeeting
|
|
|
22
25
|
export declare const serializeAws_restJson1ListAttendeesCommand: (input: ListAttendeesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
23
26
|
export declare const serializeAws_restJson1StartMeetingTranscriptionCommand: (input: StartMeetingTranscriptionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
24
27
|
export declare const serializeAws_restJson1StopMeetingTranscriptionCommand: (input: StopMeetingTranscriptionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
28
|
+
export declare const serializeAws_restJson1UpdateAttendeeCapabilitiesCommand: (input: UpdateAttendeeCapabilitiesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
25
29
|
export declare const deserializeAws_restJson1BatchCreateAttendeeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<BatchCreateAttendeeCommandOutput>;
|
|
30
|
+
export declare const deserializeAws_restJson1BatchUpdateAttendeeCapabilitiesExceptCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<BatchUpdateAttendeeCapabilitiesExceptCommandOutput>;
|
|
26
31
|
export declare const deserializeAws_restJson1CreateAttendeeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateAttendeeCommandOutput>;
|
|
27
32
|
export declare const deserializeAws_restJson1CreateMeetingCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateMeetingCommandOutput>;
|
|
28
33
|
export declare const deserializeAws_restJson1CreateMeetingWithAttendeesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateMeetingWithAttendeesCommandOutput>;
|
|
@@ -33,3 +38,4 @@ export declare const deserializeAws_restJson1GetMeetingCommand: (output: __HttpR
|
|
|
33
38
|
export declare const deserializeAws_restJson1ListAttendeesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAttendeesCommandOutput>;
|
|
34
39
|
export declare const deserializeAws_restJson1StartMeetingTranscriptionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartMeetingTranscriptionCommandOutput>;
|
|
35
40
|
export declare const deserializeAws_restJson1StopMeetingTranscriptionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopMeetingTranscriptionCommandOutput>;
|
|
41
|
+
export declare const deserializeAws_restJson1UpdateAttendeeCapabilitiesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateAttendeeCapabilitiesCommandOutput>;
|