@aws-sdk/client-chime-sdk-meetings 3.1087.0 → 3.1089.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/index.js +1 -1
- package/dist-types/ts3.4/ChimeSDKMeetings.d.ts +53 -70
- package/dist-types/ts3.4/ChimeSDKMeetingsClient.d.ts +8 -27
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/BatchCreateAttendeeCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/BatchUpdateAttendeeCapabilitiesExceptCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/CreateAttendeeCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/CreateMeetingCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/CreateMeetingWithAttendeesCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DeleteAttendeeCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/DeleteMeetingCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/GetAttendeeCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetMeetingCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListAttendeesCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/StartMeetingTranscriptionCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/StopMeetingTranscriptionCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateAttendeeCapabilitiesCommand.d.ts +4 -6
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +5 -10
- package/dist-types/ts3.4/models/errors.d.ts +9 -27
- package/dist-types/ts3.4/models/models_0.d.ts +1 -3
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -19
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -4
- package/dist-types/ts3.4/runtimeExtensions.d.ts +2 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/package.json +38 -38
package/dist-cjs/index.js
CHANGED
|
@@ -32,14 +32,8 @@ import {
|
|
|
32
32
|
DeleteMeetingCommandInput,
|
|
33
33
|
DeleteMeetingCommandOutput,
|
|
34
34
|
} from "./commands/DeleteMeetingCommand";
|
|
35
|
-
import {
|
|
36
|
-
|
|
37
|
-
GetAttendeeCommandOutput,
|
|
38
|
-
} from "./commands/GetAttendeeCommand";
|
|
39
|
-
import {
|
|
40
|
-
GetMeetingCommandInput,
|
|
41
|
-
GetMeetingCommandOutput,
|
|
42
|
-
} from "./commands/GetMeetingCommand";
|
|
35
|
+
import { GetAttendeeCommandInput, GetAttendeeCommandOutput } from "./commands/GetAttendeeCommand";
|
|
36
|
+
import { GetMeetingCommandInput, GetMeetingCommandOutput } from "./commands/GetMeetingCommand";
|
|
43
37
|
import {
|
|
44
38
|
ListAttendeesCommandInput,
|
|
45
39
|
ListAttendeesCommandOutput,
|
|
@@ -56,10 +50,7 @@ import {
|
|
|
56
50
|
StopMeetingTranscriptionCommandInput,
|
|
57
51
|
StopMeetingTranscriptionCommandOutput,
|
|
58
52
|
} from "./commands/StopMeetingTranscriptionCommand";
|
|
59
|
-
import {
|
|
60
|
-
TagResourceCommandInput,
|
|
61
|
-
TagResourceCommandOutput,
|
|
62
|
-
} from "./commands/TagResourceCommand";
|
|
53
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
63
54
|
import {
|
|
64
55
|
UntagResourceCommandInput,
|
|
65
56
|
UntagResourceCommandOutput,
|
|
@@ -71,226 +62,218 @@ import {
|
|
|
71
62
|
export interface ChimeSDKMeetings {
|
|
72
63
|
batchCreateAttendee(
|
|
73
64
|
args: BatchCreateAttendeeCommandInput,
|
|
74
|
-
options?: __HttpHandlerOptions
|
|
65
|
+
options?: __HttpHandlerOptions,
|
|
75
66
|
): Promise<BatchCreateAttendeeCommandOutput>;
|
|
76
67
|
batchCreateAttendee(
|
|
77
68
|
args: BatchCreateAttendeeCommandInput,
|
|
78
|
-
cb: (err: any, data?: BatchCreateAttendeeCommandOutput) => void
|
|
69
|
+
cb: (err: any, data?: BatchCreateAttendeeCommandOutput) => void,
|
|
79
70
|
): void;
|
|
80
71
|
batchCreateAttendee(
|
|
81
72
|
args: BatchCreateAttendeeCommandInput,
|
|
82
73
|
options: __HttpHandlerOptions,
|
|
83
|
-
cb: (err: any, data?: BatchCreateAttendeeCommandOutput) => void
|
|
74
|
+
cb: (err: any, data?: BatchCreateAttendeeCommandOutput) => void,
|
|
84
75
|
): void;
|
|
85
76
|
batchUpdateAttendeeCapabilitiesExcept(
|
|
86
77
|
args: BatchUpdateAttendeeCapabilitiesExceptCommandInput,
|
|
87
|
-
options?: __HttpHandlerOptions
|
|
78
|
+
options?: __HttpHandlerOptions,
|
|
88
79
|
): Promise<BatchUpdateAttendeeCapabilitiesExceptCommandOutput>;
|
|
89
80
|
batchUpdateAttendeeCapabilitiesExcept(
|
|
90
81
|
args: BatchUpdateAttendeeCapabilitiesExceptCommandInput,
|
|
91
|
-
cb: (
|
|
92
|
-
err: any,
|
|
93
|
-
data?: BatchUpdateAttendeeCapabilitiesExceptCommandOutput
|
|
94
|
-
) => void
|
|
82
|
+
cb: (err: any, data?: BatchUpdateAttendeeCapabilitiesExceptCommandOutput) => void,
|
|
95
83
|
): void;
|
|
96
84
|
batchUpdateAttendeeCapabilitiesExcept(
|
|
97
85
|
args: BatchUpdateAttendeeCapabilitiesExceptCommandInput,
|
|
98
86
|
options: __HttpHandlerOptions,
|
|
99
|
-
cb: (
|
|
100
|
-
err: any,
|
|
101
|
-
data?: BatchUpdateAttendeeCapabilitiesExceptCommandOutput
|
|
102
|
-
) => void
|
|
87
|
+
cb: (err: any, data?: BatchUpdateAttendeeCapabilitiesExceptCommandOutput) => void,
|
|
103
88
|
): void;
|
|
104
89
|
createAttendee(
|
|
105
90
|
args: CreateAttendeeCommandInput,
|
|
106
|
-
options?: __HttpHandlerOptions
|
|
91
|
+
options?: __HttpHandlerOptions,
|
|
107
92
|
): Promise<CreateAttendeeCommandOutput>;
|
|
108
93
|
createAttendee(
|
|
109
94
|
args: CreateAttendeeCommandInput,
|
|
110
|
-
cb: (err: any, data?: CreateAttendeeCommandOutput) => void
|
|
95
|
+
cb: (err: any, data?: CreateAttendeeCommandOutput) => void,
|
|
111
96
|
): void;
|
|
112
97
|
createAttendee(
|
|
113
98
|
args: CreateAttendeeCommandInput,
|
|
114
99
|
options: __HttpHandlerOptions,
|
|
115
|
-
cb: (err: any, data?: CreateAttendeeCommandOutput) => void
|
|
100
|
+
cb: (err: any, data?: CreateAttendeeCommandOutput) => void,
|
|
116
101
|
): void;
|
|
117
102
|
createMeeting(
|
|
118
103
|
args: CreateMeetingCommandInput,
|
|
119
|
-
options?: __HttpHandlerOptions
|
|
104
|
+
options?: __HttpHandlerOptions,
|
|
120
105
|
): Promise<CreateMeetingCommandOutput>;
|
|
121
106
|
createMeeting(
|
|
122
107
|
args: CreateMeetingCommandInput,
|
|
123
|
-
cb: (err: any, data?: CreateMeetingCommandOutput) => void
|
|
108
|
+
cb: (err: any, data?: CreateMeetingCommandOutput) => void,
|
|
124
109
|
): void;
|
|
125
110
|
createMeeting(
|
|
126
111
|
args: CreateMeetingCommandInput,
|
|
127
112
|
options: __HttpHandlerOptions,
|
|
128
|
-
cb: (err: any, data?: CreateMeetingCommandOutput) => void
|
|
113
|
+
cb: (err: any, data?: CreateMeetingCommandOutput) => void,
|
|
129
114
|
): void;
|
|
130
115
|
createMeetingWithAttendees(
|
|
131
116
|
args: CreateMeetingWithAttendeesCommandInput,
|
|
132
|
-
options?: __HttpHandlerOptions
|
|
117
|
+
options?: __HttpHandlerOptions,
|
|
133
118
|
): Promise<CreateMeetingWithAttendeesCommandOutput>;
|
|
134
119
|
createMeetingWithAttendees(
|
|
135
120
|
args: CreateMeetingWithAttendeesCommandInput,
|
|
136
|
-
cb: (err: any, data?: CreateMeetingWithAttendeesCommandOutput) => void
|
|
121
|
+
cb: (err: any, data?: CreateMeetingWithAttendeesCommandOutput) => void,
|
|
137
122
|
): void;
|
|
138
123
|
createMeetingWithAttendees(
|
|
139
124
|
args: CreateMeetingWithAttendeesCommandInput,
|
|
140
125
|
options: __HttpHandlerOptions,
|
|
141
|
-
cb: (err: any, data?: CreateMeetingWithAttendeesCommandOutput) => void
|
|
126
|
+
cb: (err: any, data?: CreateMeetingWithAttendeesCommandOutput) => void,
|
|
142
127
|
): void;
|
|
143
128
|
deleteAttendee(
|
|
144
129
|
args: DeleteAttendeeCommandInput,
|
|
145
|
-
options?: __HttpHandlerOptions
|
|
130
|
+
options?: __HttpHandlerOptions,
|
|
146
131
|
): Promise<DeleteAttendeeCommandOutput>;
|
|
147
132
|
deleteAttendee(
|
|
148
133
|
args: DeleteAttendeeCommandInput,
|
|
149
|
-
cb: (err: any, data?: DeleteAttendeeCommandOutput) => void
|
|
134
|
+
cb: (err: any, data?: DeleteAttendeeCommandOutput) => void,
|
|
150
135
|
): void;
|
|
151
136
|
deleteAttendee(
|
|
152
137
|
args: DeleteAttendeeCommandInput,
|
|
153
138
|
options: __HttpHandlerOptions,
|
|
154
|
-
cb: (err: any, data?: DeleteAttendeeCommandOutput) => void
|
|
139
|
+
cb: (err: any, data?: DeleteAttendeeCommandOutput) => void,
|
|
155
140
|
): void;
|
|
156
141
|
deleteMeeting(
|
|
157
142
|
args: DeleteMeetingCommandInput,
|
|
158
|
-
options?: __HttpHandlerOptions
|
|
143
|
+
options?: __HttpHandlerOptions,
|
|
159
144
|
): Promise<DeleteMeetingCommandOutput>;
|
|
160
145
|
deleteMeeting(
|
|
161
146
|
args: DeleteMeetingCommandInput,
|
|
162
|
-
cb: (err: any, data?: DeleteMeetingCommandOutput) => void
|
|
147
|
+
cb: (err: any, data?: DeleteMeetingCommandOutput) => void,
|
|
163
148
|
): void;
|
|
164
149
|
deleteMeeting(
|
|
165
150
|
args: DeleteMeetingCommandInput,
|
|
166
151
|
options: __HttpHandlerOptions,
|
|
167
|
-
cb: (err: any, data?: DeleteMeetingCommandOutput) => void
|
|
152
|
+
cb: (err: any, data?: DeleteMeetingCommandOutput) => void,
|
|
168
153
|
): void;
|
|
169
154
|
getAttendee(
|
|
170
155
|
args: GetAttendeeCommandInput,
|
|
171
|
-
options?: __HttpHandlerOptions
|
|
156
|
+
options?: __HttpHandlerOptions,
|
|
172
157
|
): Promise<GetAttendeeCommandOutput>;
|
|
173
158
|
getAttendee(
|
|
174
159
|
args: GetAttendeeCommandInput,
|
|
175
|
-
cb: (err: any, data?: GetAttendeeCommandOutput) => void
|
|
160
|
+
cb: (err: any, data?: GetAttendeeCommandOutput) => void,
|
|
176
161
|
): void;
|
|
177
162
|
getAttendee(
|
|
178
163
|
args: GetAttendeeCommandInput,
|
|
179
164
|
options: __HttpHandlerOptions,
|
|
180
|
-
cb: (err: any, data?: GetAttendeeCommandOutput) => void
|
|
165
|
+
cb: (err: any, data?: GetAttendeeCommandOutput) => void,
|
|
181
166
|
): void;
|
|
182
167
|
getMeeting(
|
|
183
168
|
args: GetMeetingCommandInput,
|
|
184
|
-
options?: __HttpHandlerOptions
|
|
169
|
+
options?: __HttpHandlerOptions,
|
|
185
170
|
): Promise<GetMeetingCommandOutput>;
|
|
186
171
|
getMeeting(
|
|
187
172
|
args: GetMeetingCommandInput,
|
|
188
|
-
cb: (err: any, data?: GetMeetingCommandOutput) => void
|
|
173
|
+
cb: (err: any, data?: GetMeetingCommandOutput) => void,
|
|
189
174
|
): void;
|
|
190
175
|
getMeeting(
|
|
191
176
|
args: GetMeetingCommandInput,
|
|
192
177
|
options: __HttpHandlerOptions,
|
|
193
|
-
cb: (err: any, data?: GetMeetingCommandOutput) => void
|
|
178
|
+
cb: (err: any, data?: GetMeetingCommandOutput) => void,
|
|
194
179
|
): void;
|
|
195
180
|
listAttendees(
|
|
196
181
|
args: ListAttendeesCommandInput,
|
|
197
|
-
options?: __HttpHandlerOptions
|
|
182
|
+
options?: __HttpHandlerOptions,
|
|
198
183
|
): Promise<ListAttendeesCommandOutput>;
|
|
199
184
|
listAttendees(
|
|
200
185
|
args: ListAttendeesCommandInput,
|
|
201
|
-
cb: (err: any, data?: ListAttendeesCommandOutput) => void
|
|
186
|
+
cb: (err: any, data?: ListAttendeesCommandOutput) => void,
|
|
202
187
|
): void;
|
|
203
188
|
listAttendees(
|
|
204
189
|
args: ListAttendeesCommandInput,
|
|
205
190
|
options: __HttpHandlerOptions,
|
|
206
|
-
cb: (err: any, data?: ListAttendeesCommandOutput) => void
|
|
191
|
+
cb: (err: any, data?: ListAttendeesCommandOutput) => void,
|
|
207
192
|
): void;
|
|
208
193
|
listTagsForResource(
|
|
209
194
|
args: ListTagsForResourceCommandInput,
|
|
210
|
-
options?: __HttpHandlerOptions
|
|
195
|
+
options?: __HttpHandlerOptions,
|
|
211
196
|
): Promise<ListTagsForResourceCommandOutput>;
|
|
212
197
|
listTagsForResource(
|
|
213
198
|
args: ListTagsForResourceCommandInput,
|
|
214
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
199
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
215
200
|
): void;
|
|
216
201
|
listTagsForResource(
|
|
217
202
|
args: ListTagsForResourceCommandInput,
|
|
218
203
|
options: __HttpHandlerOptions,
|
|
219
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
204
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
220
205
|
): void;
|
|
221
206
|
startMeetingTranscription(
|
|
222
207
|
args: StartMeetingTranscriptionCommandInput,
|
|
223
|
-
options?: __HttpHandlerOptions
|
|
208
|
+
options?: __HttpHandlerOptions,
|
|
224
209
|
): Promise<StartMeetingTranscriptionCommandOutput>;
|
|
225
210
|
startMeetingTranscription(
|
|
226
211
|
args: StartMeetingTranscriptionCommandInput,
|
|
227
|
-
cb: (err: any, data?: StartMeetingTranscriptionCommandOutput) => void
|
|
212
|
+
cb: (err: any, data?: StartMeetingTranscriptionCommandOutput) => void,
|
|
228
213
|
): void;
|
|
229
214
|
startMeetingTranscription(
|
|
230
215
|
args: StartMeetingTranscriptionCommandInput,
|
|
231
216
|
options: __HttpHandlerOptions,
|
|
232
|
-
cb: (err: any, data?: StartMeetingTranscriptionCommandOutput) => void
|
|
217
|
+
cb: (err: any, data?: StartMeetingTranscriptionCommandOutput) => void,
|
|
233
218
|
): void;
|
|
234
219
|
stopMeetingTranscription(
|
|
235
220
|
args: StopMeetingTranscriptionCommandInput,
|
|
236
|
-
options?: __HttpHandlerOptions
|
|
221
|
+
options?: __HttpHandlerOptions,
|
|
237
222
|
): Promise<StopMeetingTranscriptionCommandOutput>;
|
|
238
223
|
stopMeetingTranscription(
|
|
239
224
|
args: StopMeetingTranscriptionCommandInput,
|
|
240
|
-
cb: (err: any, data?: StopMeetingTranscriptionCommandOutput) => void
|
|
225
|
+
cb: (err: any, data?: StopMeetingTranscriptionCommandOutput) => void,
|
|
241
226
|
): void;
|
|
242
227
|
stopMeetingTranscription(
|
|
243
228
|
args: StopMeetingTranscriptionCommandInput,
|
|
244
229
|
options: __HttpHandlerOptions,
|
|
245
|
-
cb: (err: any, data?: StopMeetingTranscriptionCommandOutput) => void
|
|
230
|
+
cb: (err: any, data?: StopMeetingTranscriptionCommandOutput) => void,
|
|
246
231
|
): void;
|
|
247
232
|
tagResource(
|
|
248
233
|
args: TagResourceCommandInput,
|
|
249
|
-
options?: __HttpHandlerOptions
|
|
234
|
+
options?: __HttpHandlerOptions,
|
|
250
235
|
): Promise<TagResourceCommandOutput>;
|
|
251
236
|
tagResource(
|
|
252
237
|
args: TagResourceCommandInput,
|
|
253
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
238
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
254
239
|
): void;
|
|
255
240
|
tagResource(
|
|
256
241
|
args: TagResourceCommandInput,
|
|
257
242
|
options: __HttpHandlerOptions,
|
|
258
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
243
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
259
244
|
): void;
|
|
260
245
|
untagResource(
|
|
261
246
|
args: UntagResourceCommandInput,
|
|
262
|
-
options?: __HttpHandlerOptions
|
|
247
|
+
options?: __HttpHandlerOptions,
|
|
263
248
|
): Promise<UntagResourceCommandOutput>;
|
|
264
249
|
untagResource(
|
|
265
250
|
args: UntagResourceCommandInput,
|
|
266
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
251
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
267
252
|
): void;
|
|
268
253
|
untagResource(
|
|
269
254
|
args: UntagResourceCommandInput,
|
|
270
255
|
options: __HttpHandlerOptions,
|
|
271
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
256
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
272
257
|
): void;
|
|
273
258
|
updateAttendeeCapabilities(
|
|
274
259
|
args: UpdateAttendeeCapabilitiesCommandInput,
|
|
275
|
-
options?: __HttpHandlerOptions
|
|
260
|
+
options?: __HttpHandlerOptions,
|
|
276
261
|
): Promise<UpdateAttendeeCapabilitiesCommandOutput>;
|
|
277
262
|
updateAttendeeCapabilities(
|
|
278
263
|
args: UpdateAttendeeCapabilitiesCommandInput,
|
|
279
|
-
cb: (err: any, data?: UpdateAttendeeCapabilitiesCommandOutput) => void
|
|
264
|
+
cb: (err: any, data?: UpdateAttendeeCapabilitiesCommandOutput) => void,
|
|
280
265
|
): void;
|
|
281
266
|
updateAttendeeCapabilities(
|
|
282
267
|
args: UpdateAttendeeCapabilitiesCommandInput,
|
|
283
268
|
options: __HttpHandlerOptions,
|
|
284
|
-
cb: (err: any, data?: UpdateAttendeeCapabilitiesCommandOutput) => void
|
|
269
|
+
cb: (err: any, data?: UpdateAttendeeCapabilitiesCommandOutput) => void,
|
|
285
270
|
): void;
|
|
286
271
|
paginateListAttendees(
|
|
287
272
|
args: ListAttendeesCommandInput,
|
|
288
273
|
paginationConfig?: Pick<
|
|
289
274
|
PaginationConfiguration,
|
|
290
275
|
Exclude<keyof PaginationConfiguration, "client">
|
|
291
|
-
|
|
276
|
+
>,
|
|
292
277
|
): Paginator<ListAttendeesCommandOutput>;
|
|
293
278
|
}
|
|
294
|
-
export declare class ChimeSDKMeetings
|
|
295
|
-
extends ChimeSDKMeetingsClient
|
|
296
|
-
implements ChimeSDKMeetings {}
|
|
279
|
+
export declare class ChimeSDKMeetings extends ChimeSDKMeetingsClient implements ChimeSDKMeetings {}
|
|
@@ -11,10 +11,7 @@ import {
|
|
|
11
11
|
Client as __Client,
|
|
12
12
|
} from "@smithy/core/client";
|
|
13
13
|
import { RegionInputConfig, RegionResolvedConfig } from "@smithy/core/config";
|
|
14
|
-
import {
|
|
15
|
-
EndpointInputConfig,
|
|
16
|
-
EndpointResolvedConfig,
|
|
17
|
-
} from "@smithy/core/endpoints";
|
|
14
|
+
import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/core/endpoints";
|
|
18
15
|
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/core/protocols";
|
|
19
16
|
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/core/retry";
|
|
20
17
|
import {
|
|
@@ -64,14 +61,8 @@ import {
|
|
|
64
61
|
DeleteMeetingCommandInput,
|
|
65
62
|
DeleteMeetingCommandOutput,
|
|
66
63
|
} from "./commands/DeleteMeetingCommand";
|
|
67
|
-
import {
|
|
68
|
-
|
|
69
|
-
GetAttendeeCommandOutput,
|
|
70
|
-
} from "./commands/GetAttendeeCommand";
|
|
71
|
-
import {
|
|
72
|
-
GetMeetingCommandInput,
|
|
73
|
-
GetMeetingCommandOutput,
|
|
74
|
-
} from "./commands/GetMeetingCommand";
|
|
64
|
+
import { GetAttendeeCommandInput, GetAttendeeCommandOutput } from "./commands/GetAttendeeCommand";
|
|
65
|
+
import { GetMeetingCommandInput, GetMeetingCommandOutput } from "./commands/GetMeetingCommand";
|
|
75
66
|
import {
|
|
76
67
|
ListAttendeesCommandInput,
|
|
77
68
|
ListAttendeesCommandOutput,
|
|
@@ -88,10 +79,7 @@ import {
|
|
|
88
79
|
StopMeetingTranscriptionCommandInput,
|
|
89
80
|
StopMeetingTranscriptionCommandOutput,
|
|
90
81
|
} from "./commands/StopMeetingTranscriptionCommand";
|
|
91
|
-
import {
|
|
92
|
-
TagResourceCommandInput,
|
|
93
|
-
TagResourceCommandOutput,
|
|
94
|
-
} from "./commands/TagResourceCommand";
|
|
82
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
95
83
|
import {
|
|
96
84
|
UntagResourceCommandInput,
|
|
97
85
|
UntagResourceCommandOutput,
|
|
@@ -141,8 +129,7 @@ export type ServiceOutputTypes =
|
|
|
141
129
|
| TagResourceCommandOutput
|
|
142
130
|
| UntagResourceCommandOutput
|
|
143
131
|
| UpdateAttendeeCapabilitiesCommandOutput;
|
|
144
|
-
export interface ClientDefaults
|
|
145
|
-
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
132
|
+
export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
146
133
|
requestHandler?: __HttpHandlerUserInput;
|
|
147
134
|
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
148
135
|
urlParser?: __UrlParser;
|
|
@@ -178,8 +165,7 @@ export type ChimeSDKMeetingsClientConfigType = Partial<
|
|
|
178
165
|
EndpointInputConfig<EndpointParameters> &
|
|
179
166
|
HttpAuthSchemeInputConfig &
|
|
180
167
|
ClientInputEndpointParameters;
|
|
181
|
-
export interface ChimeSDKMeetingsClientConfig
|
|
182
|
-
extends ChimeSDKMeetingsClientConfigType {}
|
|
168
|
+
export interface ChimeSDKMeetingsClientConfig extends ChimeSDKMeetingsClientConfigType {}
|
|
183
169
|
export type ChimeSDKMeetingsClientResolvedConfigType =
|
|
184
170
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
185
171
|
Required<ClientDefaults> &
|
|
@@ -191,8 +177,7 @@ export type ChimeSDKMeetingsClientResolvedConfigType =
|
|
|
191
177
|
EndpointResolvedConfig<EndpointParameters> &
|
|
192
178
|
HttpAuthSchemeResolvedConfig &
|
|
193
179
|
ClientResolvedEndpointParameters;
|
|
194
|
-
export interface ChimeSDKMeetingsClientResolvedConfig
|
|
195
|
-
extends ChimeSDKMeetingsClientResolvedConfigType {}
|
|
180
|
+
export interface ChimeSDKMeetingsClientResolvedConfig extends ChimeSDKMeetingsClientResolvedConfigType {}
|
|
196
181
|
export declare class ChimeSDKMeetingsClient extends __Client<
|
|
197
182
|
__HttpHandlerOptions,
|
|
198
183
|
ServiceInputTypes,
|
|
@@ -200,10 +185,6 @@ export declare class ChimeSDKMeetingsClient extends __Client<
|
|
|
200
185
|
ChimeSDKMeetingsClientResolvedConfig
|
|
201
186
|
> {
|
|
202
187
|
readonly config: ChimeSDKMeetingsClientResolvedConfig;
|
|
203
|
-
constructor(
|
|
204
|
-
...[
|
|
205
|
-
configuration,
|
|
206
|
-
]: __CheckOptionalClientConfig<ChimeSDKMeetingsClientConfig>
|
|
207
|
-
);
|
|
188
|
+
constructor(...[configuration]: __CheckOptionalClientConfig<ChimeSDKMeetingsClientConfig>);
|
|
208
189
|
destroy(): void;
|
|
209
190
|
}
|
|
@@ -7,17 +7,10 @@ import { ChimeSDKMeetingsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider
|
|
|
7
7
|
export interface HttpAuthExtensionConfiguration {
|
|
8
8
|
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
9
9
|
httpAuthSchemes(): HttpAuthScheme[];
|
|
10
|
-
setHttpAuthSchemeProvider(
|
|
11
|
-
httpAuthSchemeProvider: ChimeSDKMeetingsHttpAuthSchemeProvider
|
|
12
|
-
): void;
|
|
10
|
+
setHttpAuthSchemeProvider(httpAuthSchemeProvider: ChimeSDKMeetingsHttpAuthSchemeProvider): void;
|
|
13
11
|
httpAuthSchemeProvider(): ChimeSDKMeetingsHttpAuthSchemeProvider;
|
|
14
|
-
setCredentials(
|
|
15
|
-
|
|
16
|
-
): void;
|
|
17
|
-
credentials():
|
|
18
|
-
| AwsCredentialIdentity
|
|
19
|
-
| AwsCredentialIdentityProvider
|
|
20
|
-
| undefined;
|
|
12
|
+
setCredentials(credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider): void;
|
|
13
|
+
credentials(): AwsCredentialIdentity | AwsCredentialIdentityProvider | undefined;
|
|
21
14
|
}
|
|
22
15
|
export type HttpAuthRuntimeConfig = Partial<{
|
|
23
16
|
httpAuthSchemes: HttpAuthScheme[];
|
|
@@ -25,8 +18,8 @@ export type HttpAuthRuntimeConfig = Partial<{
|
|
|
25
18
|
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
|
|
26
19
|
}>;
|
|
27
20
|
export declare const getHttpAuthExtensionConfiguration: (
|
|
28
|
-
runtimeConfig: HttpAuthRuntimeConfig
|
|
21
|
+
runtimeConfig: HttpAuthRuntimeConfig,
|
|
29
22
|
) => HttpAuthExtensionConfiguration;
|
|
30
23
|
export declare const resolveHttpAuthRuntimeConfig: (
|
|
31
|
-
config: HttpAuthExtensionConfiguration
|
|
24
|
+
config: HttpAuthExtensionConfiguration,
|
|
32
25
|
) => HttpAuthRuntimeConfig;
|
|
@@ -12,36 +12,32 @@ import {
|
|
|
12
12
|
Provider,
|
|
13
13
|
} from "@smithy/types";
|
|
14
14
|
import { ChimeSDKMeetingsClientResolvedConfig } from "../ChimeSDKMeetingsClient";
|
|
15
|
-
export interface ChimeSDKMeetingsHttpAuthSchemeParameters
|
|
16
|
-
extends HttpAuthSchemeParameters {
|
|
15
|
+
export interface ChimeSDKMeetingsHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
|
|
17
16
|
region?: string;
|
|
18
17
|
}
|
|
19
|
-
export interface ChimeSDKMeetingsHttpAuthSchemeParametersProvider
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
> {}
|
|
18
|
+
export interface ChimeSDKMeetingsHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
|
|
19
|
+
ChimeSDKMeetingsClientResolvedConfig,
|
|
20
|
+
HandlerExecutionContext,
|
|
21
|
+
ChimeSDKMeetingsHttpAuthSchemeParameters,
|
|
22
|
+
object
|
|
23
|
+
> {}
|
|
26
24
|
export declare const defaultChimeSDKMeetingsHttpAuthSchemeParametersProvider: (
|
|
27
25
|
config: ChimeSDKMeetingsClientResolvedConfig,
|
|
28
26
|
context: HandlerExecutionContext,
|
|
29
|
-
input: object
|
|
27
|
+
input: object,
|
|
30
28
|
) => Promise<ChimeSDKMeetingsHttpAuthSchemeParameters>;
|
|
31
|
-
export interface ChimeSDKMeetingsHttpAuthSchemeProvider
|
|
32
|
-
extends HttpAuthSchemeProvider<ChimeSDKMeetingsHttpAuthSchemeParameters> {}
|
|
29
|
+
export interface ChimeSDKMeetingsHttpAuthSchemeProvider extends HttpAuthSchemeProvider<ChimeSDKMeetingsHttpAuthSchemeParameters> {}
|
|
33
30
|
export declare const defaultChimeSDKMeetingsHttpAuthSchemeProvider: ChimeSDKMeetingsHttpAuthSchemeProvider;
|
|
34
31
|
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
35
32
|
authSchemePreference?: string[] | Provider<string[]>;
|
|
36
33
|
httpAuthSchemes?: HttpAuthScheme[];
|
|
37
34
|
httpAuthSchemeProvider?: ChimeSDKMeetingsHttpAuthSchemeProvider;
|
|
38
35
|
}
|
|
39
|
-
export interface HttpAuthSchemeResolvedConfig
|
|
40
|
-
extends AwsSdkSigV4AuthResolvedConfig {
|
|
36
|
+
export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
|
|
41
37
|
readonly authSchemePreference: Provider<string[]>;
|
|
42
38
|
readonly httpAuthSchemes: HttpAuthScheme[];
|
|
43
39
|
readonly httpAuthSchemeProvider: ChimeSDKMeetingsHttpAuthSchemeProvider;
|
|
44
40
|
}
|
|
45
41
|
export declare const resolveHttpAuthSchemeConfig: <T>(
|
|
46
|
-
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
|
|
42
|
+
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved,
|
|
47
43
|
) => T & HttpAuthSchemeResolvedConfig;
|
|
@@ -4,22 +4,21 @@ import {
|
|
|
4
4
|
ServiceInputTypes,
|
|
5
5
|
ServiceOutputTypes,
|
|
6
6
|
} from "./ChimeSDKMeetingsClient";
|
|
7
|
-
export declare const command: <
|
|
8
|
-
I extends ServiceInputTypes,
|
|
9
|
-
O extends ServiceOutputTypes
|
|
10
|
-
>(
|
|
7
|
+
export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(
|
|
11
8
|
added: EndpointParameterInstructions,
|
|
12
9
|
plugins: (
|
|
13
10
|
CommandCtor: any,
|
|
14
11
|
clientStack: any,
|
|
15
12
|
config: any,
|
|
16
|
-
options: any
|
|
13
|
+
options: any,
|
|
17
14
|
) => import("@smithy/types").Pluggable<any, any>[],
|
|
18
15
|
op: string,
|
|
19
16
|
$: import("@smithy/types").StaticOperationSchema,
|
|
20
|
-
smithyContext?: Record<string, unknown
|
|
17
|
+
smithyContext?: Record<string, unknown>,
|
|
21
18
|
) => {
|
|
22
|
-
new (
|
|
19
|
+
new (
|
|
20
|
+
input: I,
|
|
21
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
22
|
I,
|
|
24
23
|
O,
|
|
25
24
|
ChimeSDKMeetingsClientResolvedConfig,
|
|
@@ -38,9 +37,4 @@ export declare const command: <
|
|
|
38
37
|
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
39
38
|
};
|
|
40
39
|
export declare const _ep0: EndpointParameterInstructions;
|
|
41
|
-
export declare const _mw0: (
|
|
42
|
-
Command: any,
|
|
43
|
-
cs: any,
|
|
44
|
-
config: any,
|
|
45
|
-
o: any
|
|
46
|
-
) => never[];
|
|
40
|
+
export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
BatchCreateAttendeeRequest,
|
|
4
|
-
BatchCreateAttendeeResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { BatchCreateAttendeeRequest, BatchCreateAttendeeResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface BatchCreateAttendeeCommandInput
|
|
8
|
-
extends BatchCreateAttendeeRequest {}
|
|
4
|
+
export interface BatchCreateAttendeeCommandInput extends BatchCreateAttendeeRequest {}
|
|
9
5
|
export interface BatchCreateAttendeeCommandOutput
|
|
10
|
-
extends BatchCreateAttendeeResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends BatchCreateAttendeeResponse, __MetadataBearer {}
|
|
12
7
|
declare const BatchCreateAttendeeCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: BatchCreateAttendeeCommandInput
|
|
9
|
+
input: BatchCreateAttendeeCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
BatchCreateAttendeeCommandInput,
|
|
17
12
|
BatchCreateAttendeeCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const BatchCreateAttendeeCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: BatchCreateAttendeeCommandInput
|
|
18
|
+
input: BatchCreateAttendeeCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
BatchCreateAttendeeCommandInput,
|
|
26
21
|
BatchCreateAttendeeCommandOutput,
|
|
@@ -1,13 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
2
|
import { BatchUpdateAttendeeCapabilitiesExceptRequest } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
|
-
export interface BatchUpdateAttendeeCapabilitiesExceptCommandInput
|
|
5
|
-
|
|
6
|
-
export interface BatchUpdateAttendeeCapabilitiesExceptCommandOutput
|
|
7
|
-
extends __MetadataBearer {}
|
|
4
|
+
export interface BatchUpdateAttendeeCapabilitiesExceptCommandInput extends BatchUpdateAttendeeCapabilitiesExceptRequest {}
|
|
5
|
+
export interface BatchUpdateAttendeeCapabilitiesExceptCommandOutput extends __MetadataBearer {}
|
|
8
6
|
declare const BatchUpdateAttendeeCapabilitiesExceptCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: BatchUpdateAttendeeCapabilitiesExceptCommandInput
|
|
8
|
+
input: BatchUpdateAttendeeCapabilitiesExceptCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
BatchUpdateAttendeeCapabilitiesExceptCommandInput,
|
|
13
11
|
BatchUpdateAttendeeCapabilitiesExceptCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const BatchUpdateAttendeeCapabilitiesExceptCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: BatchUpdateAttendeeCapabilitiesExceptCommandInput
|
|
17
|
+
input: BatchUpdateAttendeeCapabilitiesExceptCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
BatchUpdateAttendeeCapabilitiesExceptCommandInput,
|
|
22
20
|
BatchUpdateAttendeeCapabilitiesExceptCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateAttendeeRequest,
|
|
4
|
-
CreateAttendeeResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateAttendeeRequest, CreateAttendeeResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface CreateAttendeeCommandInput extends CreateAttendeeRequest {}
|
|
8
|
-
export interface CreateAttendeeCommandOutput
|
|
9
|
-
extends CreateAttendeeResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface CreateAttendeeCommandOutput extends CreateAttendeeResponse, __MetadataBearer {}
|
|
11
6
|
declare const CreateAttendeeCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: CreateAttendeeCommandInput
|
|
8
|
+
input: CreateAttendeeCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
CreateAttendeeCommandInput,
|
|
16
11
|
CreateAttendeeCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const CreateAttendeeCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: CreateAttendeeCommandInput
|
|
17
|
+
input: CreateAttendeeCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
CreateAttendeeCommandInput,
|
|
25
20
|
CreateAttendeeCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateMeetingRequest,
|
|
4
|
-
CreateMeetingResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateMeetingRequest, CreateMeetingResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface CreateMeetingCommandInput extends CreateMeetingRequest {}
|
|
8
|
-
export interface CreateMeetingCommandOutput
|
|
9
|
-
extends CreateMeetingResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface CreateMeetingCommandOutput extends CreateMeetingResponse, __MetadataBearer {}
|
|
11
6
|
declare const CreateMeetingCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: CreateMeetingCommandInput
|
|
8
|
+
input: CreateMeetingCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
CreateMeetingCommandInput,
|
|
16
11
|
CreateMeetingCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const CreateMeetingCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: CreateMeetingCommandInput
|
|
17
|
+
input: CreateMeetingCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
CreateMeetingCommandInput,
|
|
25
20
|
CreateMeetingCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
CreateMeetingWithAttendeesResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateMeetingWithAttendeesCommandInput
|
|
8
|
-
extends CreateMeetingWithAttendeesRequest {}
|
|
7
|
+
export interface CreateMeetingWithAttendeesCommandInput extends CreateMeetingWithAttendeesRequest {}
|
|
9
8
|
export interface CreateMeetingWithAttendeesCommandOutput
|
|
10
|
-
extends CreateMeetingWithAttendeesResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends CreateMeetingWithAttendeesResponse, __MetadataBearer {}
|
|
12
10
|
declare const CreateMeetingWithAttendeesCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: CreateMeetingWithAttendeesCommandInput
|
|
12
|
+
input: CreateMeetingWithAttendeesCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
CreateMeetingWithAttendeesCommandInput,
|
|
17
15
|
CreateMeetingWithAttendeesCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const CreateMeetingWithAttendeesCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: CreateMeetingWithAttendeesCommandInput
|
|
21
|
+
input: CreateMeetingWithAttendeesCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
CreateMeetingWithAttendeesCommandInput,
|
|
26
24
|
CreateMeetingWithAttendeesCommandOutput,
|