@aws-sdk/client-chime-sdk-meetings 3.312.0 → 3.316.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/ChimeSDKMeetings.js +20 -224
- package/dist-cjs/protocols/Aws_restJson1.js +216 -515
- package/dist-es/ChimeSDKMeetings.js +20 -224
- package/dist-es/protocols/Aws_restJson1.js +180 -479
- package/dist-types/ChimeSDKMeetings.d.ts +25 -146
- package/dist-types/ts3.4/ChimeSDKMeetings.d.ts +4 -1
- package/package.json +6 -6
|
@@ -16,230 +16,109 @@ import { StopMeetingTranscriptionCommandInput, StopMeetingTranscriptionCommandOu
|
|
|
16
16
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
17
17
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
18
18
|
import { UpdateAttendeeCapabilitiesCommandInput, UpdateAttendeeCapabilitiesCommandOutput } from "./commands/UpdateAttendeeCapabilitiesCommand";
|
|
19
|
-
|
|
20
|
-
* @public
|
|
21
|
-
* <p>The Amazon Chime SDK meetings APIs in this section allow software developers to create Amazon Chime SDK meetings, set the AWS Regions for meetings, create and manage users, and send and
|
|
22
|
-
* receive meeting notifications. For more information about the meeting APIs, see
|
|
23
|
-
* <a href="https://docs.aws.amazon.com/chime/latest/APIReference/API_Operations_Amazon_Chime_SDK_Meetings.html">Amazon Chime SDK meetings</a>.</p>
|
|
24
|
-
*/
|
|
25
|
-
export declare class ChimeSDKMeetings extends ChimeSDKMeetingsClient {
|
|
19
|
+
export interface ChimeSDKMeetings {
|
|
26
20
|
/**
|
|
27
|
-
* @
|
|
28
|
-
* <p>Creates up to 100 attendees for an active Amazon Chime SDK meeting. For more information about the Amazon Chime SDK, see
|
|
29
|
-
* <a href="https://docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html">Using the Amazon Chime SDK</a> in the <i>Amazon Chime Developer Guide</i>.</p>
|
|
21
|
+
* @see {@link BatchCreateAttendeeCommand}
|
|
30
22
|
*/
|
|
31
23
|
batchCreateAttendee(args: BatchCreateAttendeeCommandInput, options?: __HttpHandlerOptions): Promise<BatchCreateAttendeeCommandOutput>;
|
|
32
24
|
batchCreateAttendee(args: BatchCreateAttendeeCommandInput, cb: (err: any, data?: BatchCreateAttendeeCommandOutput) => void): void;
|
|
33
25
|
batchCreateAttendee(args: BatchCreateAttendeeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchCreateAttendeeCommandOutput) => void): void;
|
|
34
26
|
/**
|
|
35
|
-
* @
|
|
36
|
-
* <p>Updates <code>AttendeeCapabilities</code> except the capabilities listed in an <code>ExcludedAttendeeIds</code> table.</p>
|
|
37
|
-
* <note>
|
|
38
|
-
* <p>You use the capabilities with a set of values that control what the capabilities can do, such as <code>SendReceive</code> data. For more information about those values, see
|
|
39
|
-
* .</p>
|
|
40
|
-
* </note>
|
|
41
|
-
* <p>When using capabilities, be aware of these corner cases:</p>
|
|
42
|
-
* <ul>
|
|
43
|
-
* <li>
|
|
44
|
-
* <p>You can't set <code>content</code> capabilities to <code>SendReceive</code> or <code>Receive</code> unless you also set <code>video</code> capabilities to <code>SendReceive</code>
|
|
45
|
-
* or <code>Receive</code>. If you don't set the <code>video</code> capability to receive, the response will contain an HTTP 400 Bad Request status code. However, you can set your <code>video</code> capability
|
|
46
|
-
* to receive and you set your <code>content</code> capability to not receive.</p>
|
|
47
|
-
* </li>
|
|
48
|
-
* <li>
|
|
49
|
-
* <p>When you change an <code>audio</code> capability from <code>None</code> or <code>Receive</code> to <code>Send</code> or <code>SendReceive</code> ,
|
|
50
|
-
* and if the attendee left their microphone unmuted, audio will flow from the attendee to the other meeting participants.</p>
|
|
51
|
-
* </li>
|
|
52
|
-
* <li>
|
|
53
|
-
* <p>When you change a <code>video</code> or <code>content</code> capability from <code>None</code> or <code>Receive</code> to <code>Send</code> or <code>SendReceive</code> ,
|
|
54
|
-
* and if the attendee turned on their video or content streams, remote attendess can receive those streams, but only after media renegotiation between the client and the Amazon Chime back-end server.</p>
|
|
55
|
-
* </li>
|
|
56
|
-
* </ul>
|
|
27
|
+
* @see {@link BatchUpdateAttendeeCapabilitiesExceptCommand}
|
|
57
28
|
*/
|
|
58
29
|
batchUpdateAttendeeCapabilitiesExcept(args: BatchUpdateAttendeeCapabilitiesExceptCommandInput, options?: __HttpHandlerOptions): Promise<BatchUpdateAttendeeCapabilitiesExceptCommandOutput>;
|
|
59
30
|
batchUpdateAttendeeCapabilitiesExcept(args: BatchUpdateAttendeeCapabilitiesExceptCommandInput, cb: (err: any, data?: BatchUpdateAttendeeCapabilitiesExceptCommandOutput) => void): void;
|
|
60
31
|
batchUpdateAttendeeCapabilitiesExcept(args: BatchUpdateAttendeeCapabilitiesExceptCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchUpdateAttendeeCapabilitiesExceptCommandOutput) => void): void;
|
|
61
32
|
/**
|
|
62
|
-
* @
|
|
63
|
-
* <p>
|
|
64
|
-
* Creates a new attendee for an active Amazon Chime SDK meeting. For more information about the Amazon Chime SDK, see
|
|
65
|
-
* <a href="https://docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html">Using the Amazon Chime SDK</a>
|
|
66
|
-
* in the
|
|
67
|
-
* <i>Amazon Chime Developer Guide</i>.
|
|
68
|
-
* </p>
|
|
33
|
+
* @see {@link CreateAttendeeCommand}
|
|
69
34
|
*/
|
|
70
35
|
createAttendee(args: CreateAttendeeCommandInput, options?: __HttpHandlerOptions): Promise<CreateAttendeeCommandOutput>;
|
|
71
36
|
createAttendee(args: CreateAttendeeCommandInput, cb: (err: any, data?: CreateAttendeeCommandOutput) => void): void;
|
|
72
37
|
createAttendee(args: CreateAttendeeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateAttendeeCommandOutput) => void): void;
|
|
73
38
|
/**
|
|
74
|
-
* @
|
|
75
|
-
* <p>Creates a new Amazon Chime SDK meeting in the specified media Region with no initial attendees. For more information about specifying media Regions, see
|
|
76
|
-
* <a href="https://docs.aws.amazon.com/chime/latest/dg/chime-sdk-meetings-regions.html">Amazon Chime SDK Media Regions</a>
|
|
77
|
-
* in the <i>Amazon Chime Developer Guide</i>. For more information about the Amazon Chime SDK, see
|
|
78
|
-
* <a href="https://docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html">Using the Amazon Chime SDK</a>
|
|
79
|
-
* in the
|
|
80
|
-
* <i>Amazon Chime Developer Guide</i>.
|
|
81
|
-
* </p>
|
|
39
|
+
* @see {@link CreateMeetingCommand}
|
|
82
40
|
*/
|
|
83
41
|
createMeeting(args: CreateMeetingCommandInput, options?: __HttpHandlerOptions): Promise<CreateMeetingCommandOutput>;
|
|
84
42
|
createMeeting(args: CreateMeetingCommandInput, cb: (err: any, data?: CreateMeetingCommandOutput) => void): void;
|
|
85
43
|
createMeeting(args: CreateMeetingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateMeetingCommandOutput) => void): void;
|
|
86
44
|
/**
|
|
87
|
-
* @
|
|
88
|
-
* <p>
|
|
89
|
-
* Creates a new Amazon Chime SDK meeting in the specified media Region, with attendees. For more information about specifying media Regions, see
|
|
90
|
-
* <a href="https://docs.aws.amazon.com/chime/latest/dg/chime-sdk-meetings-regions.html">Amazon Chime SDK Media Regions</a>
|
|
91
|
-
* in the <i>Amazon Chime Developer Guide</i>. For more information about the Amazon Chime SDK, see
|
|
92
|
-
* <a href="https://docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html">Using the Amazon Chime SDK</a>
|
|
93
|
-
* in the <i>Amazon Chime Developer Guide</i>.
|
|
94
|
-
* </p>
|
|
45
|
+
* @see {@link CreateMeetingWithAttendeesCommand}
|
|
95
46
|
*/
|
|
96
47
|
createMeetingWithAttendees(args: CreateMeetingWithAttendeesCommandInput, options?: __HttpHandlerOptions): Promise<CreateMeetingWithAttendeesCommandOutput>;
|
|
97
48
|
createMeetingWithAttendees(args: CreateMeetingWithAttendeesCommandInput, cb: (err: any, data?: CreateMeetingWithAttendeesCommandOutput) => void): void;
|
|
98
49
|
createMeetingWithAttendees(args: CreateMeetingWithAttendeesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateMeetingWithAttendeesCommandOutput) => void): void;
|
|
99
50
|
/**
|
|
100
|
-
* @
|
|
101
|
-
* <p>Deletes an attendee from the specified Amazon Chime SDK meeting and deletes their
|
|
102
|
-
* <code>JoinToken</code>. Attendees are automatically deleted when a Amazon Chime SDK meeting is deleted. For more information about the Amazon Chime SDK, see
|
|
103
|
-
* <a href="https://docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html">Using the Amazon Chime SDK</a>
|
|
104
|
-
* in the <i>Amazon Chime Developer Guide</i>.</p>
|
|
51
|
+
* @see {@link DeleteAttendeeCommand}
|
|
105
52
|
*/
|
|
106
53
|
deleteAttendee(args: DeleteAttendeeCommandInput, options?: __HttpHandlerOptions): Promise<DeleteAttendeeCommandOutput>;
|
|
107
54
|
deleteAttendee(args: DeleteAttendeeCommandInput, cb: (err: any, data?: DeleteAttendeeCommandOutput) => void): void;
|
|
108
55
|
deleteAttendee(args: DeleteAttendeeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteAttendeeCommandOutput) => void): void;
|
|
109
56
|
/**
|
|
110
|
-
* @
|
|
111
|
-
* <p>Deletes the specified Amazon Chime SDK meeting. The operation deletes all attendees, disconnects all clients, and prevents new clients from
|
|
112
|
-
* joining the meeting. For more information about the Amazon Chime SDK, see
|
|
113
|
-
* <a href="https://docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html">Using the Amazon Chime SDK</a> in the
|
|
114
|
-
* <i>Amazon Chime Developer Guide</i>.</p>
|
|
57
|
+
* @see {@link DeleteMeetingCommand}
|
|
115
58
|
*/
|
|
116
59
|
deleteMeeting(args: DeleteMeetingCommandInput, options?: __HttpHandlerOptions): Promise<DeleteMeetingCommandOutput>;
|
|
117
60
|
deleteMeeting(args: DeleteMeetingCommandInput, cb: (err: any, data?: DeleteMeetingCommandOutput) => void): void;
|
|
118
61
|
deleteMeeting(args: DeleteMeetingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteMeetingCommandOutput) => void): void;
|
|
119
62
|
/**
|
|
120
|
-
* @
|
|
121
|
-
* <p>
|
|
122
|
-
* Gets the Amazon Chime SDK attendee details for a specified meeting ID and attendee ID. For more information about the Amazon Chime SDK, see
|
|
123
|
-
* <a href="https://docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html">Using the Amazon Chime SDK</a>
|
|
124
|
-
* in the <i>Amazon Chime Developer Guide</i>.
|
|
125
|
-
* </p>
|
|
63
|
+
* @see {@link GetAttendeeCommand}
|
|
126
64
|
*/
|
|
127
65
|
getAttendee(args: GetAttendeeCommandInput, options?: __HttpHandlerOptions): Promise<GetAttendeeCommandOutput>;
|
|
128
66
|
getAttendee(args: GetAttendeeCommandInput, cb: (err: any, data?: GetAttendeeCommandOutput) => void): void;
|
|
129
67
|
getAttendee(args: GetAttendeeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAttendeeCommandOutput) => void): void;
|
|
130
68
|
/**
|
|
131
|
-
* @
|
|
132
|
-
* <p>Gets the Amazon Chime SDK meeting details for the specified meeting ID. For more information about the Amazon Chime SDK, see
|
|
133
|
-
* <a href="https://docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html">Using the Amazon Chime SDK</a>
|
|
134
|
-
* in the <i>Amazon Chime Developer Guide</i>.</p>
|
|
69
|
+
* @see {@link GetMeetingCommand}
|
|
135
70
|
*/
|
|
136
71
|
getMeeting(args: GetMeetingCommandInput, options?: __HttpHandlerOptions): Promise<GetMeetingCommandOutput>;
|
|
137
72
|
getMeeting(args: GetMeetingCommandInput, cb: (err: any, data?: GetMeetingCommandOutput) => void): void;
|
|
138
73
|
getMeeting(args: GetMeetingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetMeetingCommandOutput) => void): void;
|
|
139
74
|
/**
|
|
140
|
-
* @
|
|
141
|
-
* <p>
|
|
142
|
-
* Lists the attendees for the specified Amazon Chime SDK meeting. For more information about the Amazon Chime SDK, see
|
|
143
|
-
* <a href="https://docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html">Using the Amazon Chime SDK</a>
|
|
144
|
-
* in the <i>Amazon Chime Developer Guide</i>.
|
|
145
|
-
* </p>
|
|
75
|
+
* @see {@link ListAttendeesCommand}
|
|
146
76
|
*/
|
|
147
77
|
listAttendees(args: ListAttendeesCommandInput, options?: __HttpHandlerOptions): Promise<ListAttendeesCommandOutput>;
|
|
148
78
|
listAttendees(args: ListAttendeesCommandInput, cb: (err: any, data?: ListAttendeesCommandOutput) => void): void;
|
|
149
79
|
listAttendees(args: ListAttendeesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAttendeesCommandOutput) => void): void;
|
|
150
80
|
/**
|
|
151
|
-
* @
|
|
152
|
-
* <p>Returns a list of the tags available for the specified resource.</p>
|
|
81
|
+
* @see {@link ListTagsForResourceCommand}
|
|
153
82
|
*/
|
|
154
83
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
155
84
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
156
85
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
157
86
|
/**
|
|
158
|
-
* @
|
|
159
|
-
* <p>Starts transcription for the specified <code>meetingId</code>. For more information, refer to <a href="https://docs.aws.amazon.com/chime-sdk/latest/dg/meeting-transcription.html">
|
|
160
|
-
* Using Amazon Chime SDK live transcription
|
|
161
|
-
* </a> in the <i>Amazon Chime SDK Developer Guide</i>.</p>
|
|
162
|
-
* <important>
|
|
163
|
-
* <p>Amazon Chime SDK live transcription is powered by Amazon Transcribe. Use of Amazon Transcribe is subject to the
|
|
164
|
-
* <a href="https://aws.amazon.com/service-terms/">AWS Service Terms</a>, including the terms specific to the AWS Machine Learning and Artificial Intelligence Services.</p>
|
|
165
|
-
* </important>
|
|
87
|
+
* @see {@link StartMeetingTranscriptionCommand}
|
|
166
88
|
*/
|
|
167
89
|
startMeetingTranscription(args: StartMeetingTranscriptionCommandInput, options?: __HttpHandlerOptions): Promise<StartMeetingTranscriptionCommandOutput>;
|
|
168
90
|
startMeetingTranscription(args: StartMeetingTranscriptionCommandInput, cb: (err: any, data?: StartMeetingTranscriptionCommandOutput) => void): void;
|
|
169
91
|
startMeetingTranscription(args: StartMeetingTranscriptionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartMeetingTranscriptionCommandOutput) => void): void;
|
|
170
92
|
/**
|
|
171
|
-
* @
|
|
172
|
-
* <p>Stops transcription for the specified <code>meetingId</code>. For more information, refer to <a href="https://docs.aws.amazon.com/chime-sdk/latest/dg/meeting-transcription.html">
|
|
173
|
-
* Using Amazon Chime SDK live transcription
|
|
174
|
-
* </a> in the <i>Amazon Chime SDK Developer Guide</i>.</p>
|
|
175
|
-
* <important>
|
|
176
|
-
* <p>Amazon Chime SDK live transcription is powered by Amazon Transcribe. Use of Amazon Transcribe is subject to the
|
|
177
|
-
* <a href="https://aws.amazon.com/service-terms/">AWS Service Terms</a>, including the terms specific to the AWS Machine Learning and Artificial Intelligence Services.</p>
|
|
178
|
-
* </important>
|
|
93
|
+
* @see {@link StopMeetingTranscriptionCommand}
|
|
179
94
|
*/
|
|
180
95
|
stopMeetingTranscription(args: StopMeetingTranscriptionCommandInput, options?: __HttpHandlerOptions): Promise<StopMeetingTranscriptionCommandOutput>;
|
|
181
96
|
stopMeetingTranscription(args: StopMeetingTranscriptionCommandInput, cb: (err: any, data?: StopMeetingTranscriptionCommandOutput) => void): void;
|
|
182
97
|
stopMeetingTranscription(args: StopMeetingTranscriptionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopMeetingTranscriptionCommandOutput) => void): void;
|
|
183
98
|
/**
|
|
184
|
-
* @
|
|
185
|
-
* <p>The resource that supports tags.</p>
|
|
99
|
+
* @see {@link TagResourceCommand}
|
|
186
100
|
*/
|
|
187
101
|
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
188
102
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
189
103
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
190
104
|
/**
|
|
191
|
-
* @
|
|
192
|
-
* <p>Removes the specified tags from the specified resources. When you specify a tag key, the action removes both that key and its associated value. The operation succeeds even if you
|
|
193
|
-
* attempt to remove tags from a resource that were already removed. Note the following:</p>
|
|
194
|
-
* <ul>
|
|
195
|
-
* <li>
|
|
196
|
-
* <p>To remove tags from a resource, you need the necessary permissions for the service that the resource belongs to as well as permissions for removing tags. For more information,
|
|
197
|
-
* see the documentation for the service whose resource you want to untag.</p>
|
|
198
|
-
* </li>
|
|
199
|
-
* <li>
|
|
200
|
-
* <p>You can only tag resources that are located in the specified AWS Region for the calling AWS account.</p>
|
|
201
|
-
* </li>
|
|
202
|
-
* </ul>
|
|
203
|
-
* <p>
|
|
204
|
-
* <b>Minimum permissions</b>
|
|
205
|
-
* </p>
|
|
206
|
-
* <p>In addition to the <code>tag:UntagResources</code> permission required by this operation, you must also have the remove tags permission defined by the service that created the resource.
|
|
207
|
-
* For example, to remove the tags from an Amazon EC2 instance using the <code>UntagResources</code> operation, you must have both of the following permissions:</p>
|
|
208
|
-
* <p>
|
|
209
|
-
* <code>tag:UntagResource</code>
|
|
210
|
-
* </p>
|
|
211
|
-
* <p>
|
|
212
|
-
* <code>ChimeSDKMeetings:DeleteTags</code>
|
|
213
|
-
* </p>
|
|
105
|
+
* @see {@link UntagResourceCommand}
|
|
214
106
|
*/
|
|
215
107
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
216
108
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
217
109
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
218
110
|
/**
|
|
219
|
-
* @
|
|
220
|
-
* <p>The capabilties that you want to update.</p>
|
|
221
|
-
* <note>
|
|
222
|
-
* <p>You use the capabilities with a set of values that control what the capabilities can do, such as <code>SendReceive</code> data. For more information about those values, see
|
|
223
|
-
* .</p>
|
|
224
|
-
* </note>
|
|
225
|
-
* <p>When using capabilities, be aware of these corner cases:</p>
|
|
226
|
-
* <ul>
|
|
227
|
-
* <li>
|
|
228
|
-
* <p>You can't set <code>content</code> capabilities to <code>SendReceive</code> or <code>Receive</code> unless you also set <code>video</code> capabilities to <code>SendReceive</code>
|
|
229
|
-
* or <code>Receive</code>. If you don't set the <code>video</code> capability to receive, the response will contain an HTTP 400 Bad Request status code. However, you can set your <code>video</code> capability
|
|
230
|
-
* to receive and you set your <code>content</code> capability to not receive.</p>
|
|
231
|
-
* </li>
|
|
232
|
-
* <li>
|
|
233
|
-
* <p>When you change an <code>audio</code> capability from <code>None</code> or <code>Receive</code> to <code>Send</code> or <code>SendReceive</code> ,
|
|
234
|
-
* and if the attendee left their microphone unmuted, audio will flow from the attendee to the other meeting participants.</p>
|
|
235
|
-
* </li>
|
|
236
|
-
* <li>
|
|
237
|
-
* <p>When you change a <code>video</code> or <code>content</code> capability from <code>None</code> or <code>Receive</code> to <code>Send</code> or <code>SendReceive</code> ,
|
|
238
|
-
* and if the attendee turned on their video or content streams, remote attendess can receive those streams, but only after media renegotiation between the client and the Amazon Chime back-end server.</p>
|
|
239
|
-
* </li>
|
|
240
|
-
* </ul>
|
|
111
|
+
* @see {@link UpdateAttendeeCapabilitiesCommand}
|
|
241
112
|
*/
|
|
242
113
|
updateAttendeeCapabilities(args: UpdateAttendeeCapabilitiesCommandInput, options?: __HttpHandlerOptions): Promise<UpdateAttendeeCapabilitiesCommandOutput>;
|
|
243
114
|
updateAttendeeCapabilities(args: UpdateAttendeeCapabilitiesCommandInput, cb: (err: any, data?: UpdateAttendeeCapabilitiesCommandOutput) => void): void;
|
|
244
115
|
updateAttendeeCapabilities(args: UpdateAttendeeCapabilitiesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateAttendeeCapabilitiesCommandOutput) => void): void;
|
|
245
116
|
}
|
|
117
|
+
/**
|
|
118
|
+
* @public
|
|
119
|
+
* <p>The Amazon Chime SDK meetings APIs in this section allow software developers to create Amazon Chime SDK meetings, set the AWS Regions for meetings, create and manage users, and send and
|
|
120
|
+
* receive meeting notifications. For more information about the meeting APIs, see
|
|
121
|
+
* <a href="https://docs.aws.amazon.com/chime/latest/APIReference/API_Operations_Amazon_Chime_SDK_Meetings.html">Amazon Chime SDK meetings</a>.</p>
|
|
122
|
+
*/
|
|
123
|
+
export declare class ChimeSDKMeetings extends ChimeSDKMeetingsClient implements ChimeSDKMeetings {
|
|
124
|
+
}
|
|
@@ -64,7 +64,7 @@ import {
|
|
|
64
64
|
UpdateAttendeeCapabilitiesCommandInput,
|
|
65
65
|
UpdateAttendeeCapabilitiesCommandOutput,
|
|
66
66
|
} from "./commands/UpdateAttendeeCapabilitiesCommand";
|
|
67
|
-
export
|
|
67
|
+
export interface ChimeSDKMeetings {
|
|
68
68
|
batchCreateAttendee(
|
|
69
69
|
args: BatchCreateAttendeeCommandInput,
|
|
70
70
|
options?: __HttpHandlerOptions
|
|
@@ -280,3 +280,6 @@ export declare class ChimeSDKMeetings extends ChimeSDKMeetingsClient {
|
|
|
280
280
|
cb: (err: any, data?: UpdateAttendeeCapabilitiesCommandOutput) => void
|
|
281
281
|
): void;
|
|
282
282
|
}
|
|
283
|
+
export declare class ChimeSDKMeetings
|
|
284
|
+
extends ChimeSDKMeetingsClient
|
|
285
|
+
implements ChimeSDKMeetings {}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-chime-sdk-meetings",
|
|
3
3
|
"description": "AWS SDK for JavaScript Chime Sdk Meetings Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.316.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.316.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.316.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
@@ -40,14 +40,14 @@
|
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.310.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
+
"@aws-sdk/smithy-client": "3.316.0",
|
|
44
44
|
"@aws-sdk/types": "3.310.0",
|
|
45
45
|
"@aws-sdk/url-parser": "3.310.0",
|
|
46
46
|
"@aws-sdk/util-base64": "3.310.0",
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.316.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.316.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.310.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.310.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|