aws-sdk 2.1020.0 → 2.1024.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 +24 -1
- package/README.md +1 -1
- package/apis/chime-sdk-meetings-2021-07-15.examples.json +5 -0
- package/apis/chime-sdk-meetings-2021-07-15.min.json +474 -0
- package/apis/chime-sdk-meetings-2021-07-15.paginators.json +9 -0
- package/apis/connect-2017-08-08.min.json +230 -61
- package/apis/connect-2017-08-08.paginators.json +6 -0
- package/apis/datasync-2018-11-09.min.json +207 -56
- package/apis/ec2-2016-11-15.min.json +513 -499
- package/apis/finspace-2021-03-12.min.json +24 -4
- package/apis/iotwireless-2020-11-22.min.json +993 -100
- package/apis/iotwireless-2020-11-22.paginators.json +15 -0
- package/apis/macie2-2020-01-01.min.json +104 -77
- package/apis/metadata.json +4 -0
- package/apis/sagemaker-2017-07-24.min.json +617 -537
- package/apis/translate-2017-07-01.min.json +4 -1
- package/apis/wafv2-2019-07-29.min.json +130 -79
- package/clients/all.d.ts +1 -0
- package/clients/all.js +2 -1
- package/clients/chimesdkmeetings.d.ts +486 -0
- package/clients/chimesdkmeetings.js +18 -0
- package/clients/connect.d.ts +194 -21
- package/clients/connectparticipant.d.ts +1 -1
- package/clients/datasync.d.ts +241 -11
- package/clients/ec2.d.ts +23 -6
- package/clients/finspace.d.ts +26 -0
- package/clients/iotwireless.d.ts +577 -6
- package/clients/macie2.d.ts +36 -16
- package/clients/resourcegroupstaggingapi.d.ts +29 -29
- package/clients/sagemaker.d.ts +111 -16
- package/clients/translate.d.ts +13 -12
- package/clients/wafv2.d.ts +70 -10
- package/dist/aws-sdk-core-react-native.js +2 -2
- package/dist/aws-sdk-react-native.js +52 -15
- package/dist/aws-sdk.js +760 -564
- package/dist/aws-sdk.min.js +71 -71
- package/lib/config_service_placeholders.d.ts +2 -0
- package/lib/core.js +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,486 @@
|
|
|
1
|
+
import {Request} from '../lib/request';
|
|
2
|
+
import {Response} from '../lib/response';
|
|
3
|
+
import {AWSError} from '../lib/error';
|
|
4
|
+
import {Service} from '../lib/service';
|
|
5
|
+
import {ServiceConfigurationOptions} from '../lib/service';
|
|
6
|
+
import {ConfigBase as Config} from '../lib/config-base';
|
|
7
|
+
interface Blob {}
|
|
8
|
+
declare class ChimeSDKMeetings extends Service {
|
|
9
|
+
/**
|
|
10
|
+
* Constructs a service object. This object has one method for each API operation.
|
|
11
|
+
*/
|
|
12
|
+
constructor(options?: ChimeSDKMeetings.Types.ClientConfiguration)
|
|
13
|
+
config: Config & ChimeSDKMeetings.Types.ClientConfiguration;
|
|
14
|
+
/**
|
|
15
|
+
* Creates a group of meeting attendees.
|
|
16
|
+
*/
|
|
17
|
+
batchCreateAttendee(params: ChimeSDKMeetings.Types.BatchCreateAttendeeRequest, callback?: (err: AWSError, data: ChimeSDKMeetings.Types.BatchCreateAttendeeResponse) => void): Request<ChimeSDKMeetings.Types.BatchCreateAttendeeResponse, AWSError>;
|
|
18
|
+
/**
|
|
19
|
+
* Creates a group of meeting attendees.
|
|
20
|
+
*/
|
|
21
|
+
batchCreateAttendee(callback?: (err: AWSError, data: ChimeSDKMeetings.Types.BatchCreateAttendeeResponse) => void): Request<ChimeSDKMeetings.Types.BatchCreateAttendeeResponse, AWSError>;
|
|
22
|
+
/**
|
|
23
|
+
* Creates a new attendee for an active Amazon Chime SDK meeting. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide.
|
|
24
|
+
*/
|
|
25
|
+
createAttendee(params: ChimeSDKMeetings.Types.CreateAttendeeRequest, callback?: (err: AWSError, data: ChimeSDKMeetings.Types.CreateAttendeeResponse) => void): Request<ChimeSDKMeetings.Types.CreateAttendeeResponse, AWSError>;
|
|
26
|
+
/**
|
|
27
|
+
* Creates a new attendee for an active Amazon Chime SDK meeting. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide.
|
|
28
|
+
*/
|
|
29
|
+
createAttendee(callback?: (err: AWSError, data: ChimeSDKMeetings.Types.CreateAttendeeResponse) => void): Request<ChimeSDKMeetings.Types.CreateAttendeeResponse, AWSError>;
|
|
30
|
+
/**
|
|
31
|
+
* Creates a new Amazon Chime SDK meeting in the specified media Region with no initial attendees. For more information about specifying media Regions, see Amazon Chime SDK Media Regions in the Amazon Chime Developer Guide. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide.
|
|
32
|
+
*/
|
|
33
|
+
createMeeting(params: ChimeSDKMeetings.Types.CreateMeetingRequest, callback?: (err: AWSError, data: ChimeSDKMeetings.Types.CreateMeetingResponse) => void): Request<ChimeSDKMeetings.Types.CreateMeetingResponse, AWSError>;
|
|
34
|
+
/**
|
|
35
|
+
* Creates a new Amazon Chime SDK meeting in the specified media Region with no initial attendees. For more information about specifying media Regions, see Amazon Chime SDK Media Regions in the Amazon Chime Developer Guide. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide.
|
|
36
|
+
*/
|
|
37
|
+
createMeeting(callback?: (err: AWSError, data: ChimeSDKMeetings.Types.CreateMeetingResponse) => void): Request<ChimeSDKMeetings.Types.CreateMeetingResponse, AWSError>;
|
|
38
|
+
/**
|
|
39
|
+
* Creates a new Amazon Chime SDK meeting in the specified media Region, with attendees. For more information about specifying media Regions, see Amazon Chime SDK Media Regions in the Amazon Chime Developer Guide. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide.
|
|
40
|
+
*/
|
|
41
|
+
createMeetingWithAttendees(params: ChimeSDKMeetings.Types.CreateMeetingWithAttendeesRequest, callback?: (err: AWSError, data: ChimeSDKMeetings.Types.CreateMeetingWithAttendeesResponse) => void): Request<ChimeSDKMeetings.Types.CreateMeetingWithAttendeesResponse, AWSError>;
|
|
42
|
+
/**
|
|
43
|
+
* Creates a new Amazon Chime SDK meeting in the specified media Region, with attendees. For more information about specifying media Regions, see Amazon Chime SDK Media Regions in the Amazon Chime Developer Guide. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide.
|
|
44
|
+
*/
|
|
45
|
+
createMeetingWithAttendees(callback?: (err: AWSError, data: ChimeSDKMeetings.Types.CreateMeetingWithAttendeesResponse) => void): Request<ChimeSDKMeetings.Types.CreateMeetingWithAttendeesResponse, AWSError>;
|
|
46
|
+
/**
|
|
47
|
+
* Deletes an attendee from the specified Amazon Chime SDK meeting and deletes their JoinToken. Attendees are automatically deleted when a Amazon Chime SDK meeting is deleted. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide.
|
|
48
|
+
*/
|
|
49
|
+
deleteAttendee(params: ChimeSDKMeetings.Types.DeleteAttendeeRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
50
|
+
/**
|
|
51
|
+
* Deletes an attendee from the specified Amazon Chime SDK meeting and deletes their JoinToken. Attendees are automatically deleted when a Amazon Chime SDK meeting is deleted. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide.
|
|
52
|
+
*/
|
|
53
|
+
deleteAttendee(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
54
|
+
/**
|
|
55
|
+
* Deletes the specified Amazon Chime SDK meeting. The operation deletes all attendees, disconnects all clients, and prevents new clients from joining the meeting. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide.
|
|
56
|
+
*/
|
|
57
|
+
deleteMeeting(params: ChimeSDKMeetings.Types.DeleteMeetingRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
58
|
+
/**
|
|
59
|
+
* Deletes the specified Amazon Chime SDK meeting. The operation deletes all attendees, disconnects all clients, and prevents new clients from joining the meeting. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide.
|
|
60
|
+
*/
|
|
61
|
+
deleteMeeting(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
62
|
+
/**
|
|
63
|
+
* Gets the Amazon Chime SDK attendee details for a specified meeting ID and attendee ID. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide.
|
|
64
|
+
*/
|
|
65
|
+
getAttendee(params: ChimeSDKMeetings.Types.GetAttendeeRequest, callback?: (err: AWSError, data: ChimeSDKMeetings.Types.GetAttendeeResponse) => void): Request<ChimeSDKMeetings.Types.GetAttendeeResponse, AWSError>;
|
|
66
|
+
/**
|
|
67
|
+
* Gets the Amazon Chime SDK attendee details for a specified meeting ID and attendee ID. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide.
|
|
68
|
+
*/
|
|
69
|
+
getAttendee(callback?: (err: AWSError, data: ChimeSDKMeetings.Types.GetAttendeeResponse) => void): Request<ChimeSDKMeetings.Types.GetAttendeeResponse, AWSError>;
|
|
70
|
+
/**
|
|
71
|
+
* Gets the Amazon Chime SDK meeting details for the specified meeting ID. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide.
|
|
72
|
+
*/
|
|
73
|
+
getMeeting(params: ChimeSDKMeetings.Types.GetMeetingRequest, callback?: (err: AWSError, data: ChimeSDKMeetings.Types.GetMeetingResponse) => void): Request<ChimeSDKMeetings.Types.GetMeetingResponse, AWSError>;
|
|
74
|
+
/**
|
|
75
|
+
* Gets the Amazon Chime SDK meeting details for the specified meeting ID. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide.
|
|
76
|
+
*/
|
|
77
|
+
getMeeting(callback?: (err: AWSError, data: ChimeSDKMeetings.Types.GetMeetingResponse) => void): Request<ChimeSDKMeetings.Types.GetMeetingResponse, AWSError>;
|
|
78
|
+
/**
|
|
79
|
+
* Lists the attendees for the specified Amazon Chime SDK meeting. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide.
|
|
80
|
+
*/
|
|
81
|
+
listAttendees(params: ChimeSDKMeetings.Types.ListAttendeesRequest, callback?: (err: AWSError, data: ChimeSDKMeetings.Types.ListAttendeesResponse) => void): Request<ChimeSDKMeetings.Types.ListAttendeesResponse, AWSError>;
|
|
82
|
+
/**
|
|
83
|
+
* Lists the attendees for the specified Amazon Chime SDK meeting. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide.
|
|
84
|
+
*/
|
|
85
|
+
listAttendees(callback?: (err: AWSError, data: ChimeSDKMeetings.Types.ListAttendeesResponse) => void): Request<ChimeSDKMeetings.Types.ListAttendeesResponse, AWSError>;
|
|
86
|
+
/**
|
|
87
|
+
* Starts transcription for the specified meetingId.
|
|
88
|
+
*/
|
|
89
|
+
startMeetingTranscription(params: ChimeSDKMeetings.Types.StartMeetingTranscriptionRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
90
|
+
/**
|
|
91
|
+
* Starts transcription for the specified meetingId.
|
|
92
|
+
*/
|
|
93
|
+
startMeetingTranscription(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
94
|
+
/**
|
|
95
|
+
* Stops transcription for the specified meetingId.
|
|
96
|
+
*/
|
|
97
|
+
stopMeetingTranscription(params: ChimeSDKMeetings.Types.StopMeetingTranscriptionRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
98
|
+
/**
|
|
99
|
+
* Stops transcription for the specified meetingId.
|
|
100
|
+
*/
|
|
101
|
+
stopMeetingTranscription(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
102
|
+
}
|
|
103
|
+
declare namespace ChimeSDKMeetings {
|
|
104
|
+
export type Arn = string;
|
|
105
|
+
export interface Attendee {
|
|
106
|
+
/**
|
|
107
|
+
* The Amazon Chime SDK external user ID. An idempotency token. Links the attendee to an identity managed by a builder application.
|
|
108
|
+
*/
|
|
109
|
+
ExternalUserId?: ExternalUserId;
|
|
110
|
+
/**
|
|
111
|
+
* The Amazon Chime SDK attendee ID.
|
|
112
|
+
*/
|
|
113
|
+
AttendeeId?: GuidString;
|
|
114
|
+
/**
|
|
115
|
+
* The join token used by the Amazon Chime SDK attendee.
|
|
116
|
+
*/
|
|
117
|
+
JoinToken?: JoinTokenString;
|
|
118
|
+
}
|
|
119
|
+
export type AttendeeList = Attendee[];
|
|
120
|
+
export type BatchCreateAttendeeErrorList = CreateAttendeeError[];
|
|
121
|
+
export interface BatchCreateAttendeeRequest {
|
|
122
|
+
/**
|
|
123
|
+
* The Amazon Chime SDK ID of the meeting to which you're adding attendees.
|
|
124
|
+
*/
|
|
125
|
+
MeetingId: GuidString;
|
|
126
|
+
/**
|
|
127
|
+
* The attendee information, including attendees' IDs and join tokens.
|
|
128
|
+
*/
|
|
129
|
+
Attendees: CreateAttendeeRequestItemList;
|
|
130
|
+
}
|
|
131
|
+
export interface BatchCreateAttendeeResponse {
|
|
132
|
+
/**
|
|
133
|
+
* The attendee information, including attendees' IDs and join tokens.
|
|
134
|
+
*/
|
|
135
|
+
Attendees?: AttendeeList;
|
|
136
|
+
/**
|
|
137
|
+
* If the action fails for one or more of the attendees in the request, a list of the attendees is returned, along with error codes and error messages.
|
|
138
|
+
*/
|
|
139
|
+
Errors?: BatchCreateAttendeeErrorList;
|
|
140
|
+
}
|
|
141
|
+
export type ClientRequestToken = string;
|
|
142
|
+
export interface CreateAttendeeError {
|
|
143
|
+
/**
|
|
144
|
+
* The Amazon Chime SDK external user ID. An idempotency token. Links the attendee to an identity managed by a builder application.
|
|
145
|
+
*/
|
|
146
|
+
ExternalUserId?: ExternalUserId;
|
|
147
|
+
/**
|
|
148
|
+
* The error code.
|
|
149
|
+
*/
|
|
150
|
+
ErrorCode?: String;
|
|
151
|
+
/**
|
|
152
|
+
* The error message.
|
|
153
|
+
*/
|
|
154
|
+
ErrorMessage?: String;
|
|
155
|
+
}
|
|
156
|
+
export interface CreateAttendeeRequest {
|
|
157
|
+
/**
|
|
158
|
+
* The unique ID of the meeting.
|
|
159
|
+
*/
|
|
160
|
+
MeetingId: GuidString;
|
|
161
|
+
/**
|
|
162
|
+
* The Amazon Chime SDK external user ID. An idempotency token. Links the attendee to an identity managed by a builder application.
|
|
163
|
+
*/
|
|
164
|
+
ExternalUserId: ExternalUserId;
|
|
165
|
+
}
|
|
166
|
+
export interface CreateAttendeeRequestItem {
|
|
167
|
+
/**
|
|
168
|
+
* The Amazon Chime SDK external user ID. An idempotency token. Links the attendee to an identity managed by a builder application.
|
|
169
|
+
*/
|
|
170
|
+
ExternalUserId: ExternalUserId;
|
|
171
|
+
}
|
|
172
|
+
export type CreateAttendeeRequestItemList = CreateAttendeeRequestItem[];
|
|
173
|
+
export interface CreateAttendeeResponse {
|
|
174
|
+
/**
|
|
175
|
+
* The attendee information, including attendee ID and join token.
|
|
176
|
+
*/
|
|
177
|
+
Attendee?: Attendee;
|
|
178
|
+
}
|
|
179
|
+
export interface CreateMeetingRequest {
|
|
180
|
+
/**
|
|
181
|
+
* The unique identifier for the client request. Use a different token for different meetings.
|
|
182
|
+
*/
|
|
183
|
+
ClientRequestToken: ClientRequestToken;
|
|
184
|
+
/**
|
|
185
|
+
* The Region in which to create the meeting. Available values: af-south-1 , ap-northeast-1 , ap-northeast-2 , ap-south-1 , ap-southeast-1 , ap-southeast-2 , ca-central-1 , eu-central-1 , eu-north-1 , eu-south-1 , eu-west-1 , eu-west-2 , eu-west-3 , sa-east-1 , us-east-1 , us-east-2 , us-west-1 , us-west-2 .
|
|
186
|
+
*/
|
|
187
|
+
MediaRegion: MediaRegion;
|
|
188
|
+
/**
|
|
189
|
+
* Reserved.
|
|
190
|
+
*/
|
|
191
|
+
MeetingHostId?: ExternalUserId;
|
|
192
|
+
/**
|
|
193
|
+
* The external meeting ID.
|
|
194
|
+
*/
|
|
195
|
+
ExternalMeetingId: ExternalMeetingId;
|
|
196
|
+
/**
|
|
197
|
+
* The configuration for resource targets to receive notifications when meeting and attendee events occur.
|
|
198
|
+
*/
|
|
199
|
+
NotificationsConfiguration?: NotificationsConfiguration;
|
|
200
|
+
}
|
|
201
|
+
export interface CreateMeetingResponse {
|
|
202
|
+
/**
|
|
203
|
+
* The meeting information, including the meeting ID and MediaPlacement.
|
|
204
|
+
*/
|
|
205
|
+
Meeting?: Meeting;
|
|
206
|
+
}
|
|
207
|
+
export interface CreateMeetingWithAttendeesRequest {
|
|
208
|
+
/**
|
|
209
|
+
* The unique identifier for the client request. Use a different token for different meetings.
|
|
210
|
+
*/
|
|
211
|
+
ClientRequestToken: ClientRequestToken;
|
|
212
|
+
/**
|
|
213
|
+
* The Region in which to create the meeting.
|
|
214
|
+
*/
|
|
215
|
+
MediaRegion: MediaRegion;
|
|
216
|
+
/**
|
|
217
|
+
* Reserved.
|
|
218
|
+
*/
|
|
219
|
+
MeetingHostId?: ExternalUserId;
|
|
220
|
+
/**
|
|
221
|
+
* The external meeting ID.
|
|
222
|
+
*/
|
|
223
|
+
ExternalMeetingId: ExternalMeetingId;
|
|
224
|
+
/**
|
|
225
|
+
* The configuration for resource targets to receive notifications when meeting and attendee events occur.
|
|
226
|
+
*/
|
|
227
|
+
NotificationsConfiguration?: NotificationsConfiguration;
|
|
228
|
+
/**
|
|
229
|
+
* The attendee information, including attendees' IDs and join tokens.
|
|
230
|
+
*/
|
|
231
|
+
Attendees: CreateMeetingWithAttendeesRequestItemList;
|
|
232
|
+
}
|
|
233
|
+
export type CreateMeetingWithAttendeesRequestItemList = CreateAttendeeRequestItem[];
|
|
234
|
+
export interface CreateMeetingWithAttendeesResponse {
|
|
235
|
+
/**
|
|
236
|
+
* The meeting information, including the meeting ID and MediaPlacement.
|
|
237
|
+
*/
|
|
238
|
+
Meeting?: Meeting;
|
|
239
|
+
/**
|
|
240
|
+
* The attendee information, including attendees' IDs and join tokens.
|
|
241
|
+
*/
|
|
242
|
+
Attendees?: AttendeeList;
|
|
243
|
+
/**
|
|
244
|
+
* If the action fails for one or more of the attendees in the request, a list of the attendees is returned, along with error codes and error messages.
|
|
245
|
+
*/
|
|
246
|
+
Errors?: BatchCreateAttendeeErrorList;
|
|
247
|
+
}
|
|
248
|
+
export interface DeleteAttendeeRequest {
|
|
249
|
+
/**
|
|
250
|
+
* The Amazon Chime SDK meeting ID.
|
|
251
|
+
*/
|
|
252
|
+
MeetingId: GuidString;
|
|
253
|
+
/**
|
|
254
|
+
* The Amazon Chime SDK attendee ID.
|
|
255
|
+
*/
|
|
256
|
+
AttendeeId: GuidString;
|
|
257
|
+
}
|
|
258
|
+
export interface DeleteMeetingRequest {
|
|
259
|
+
/**
|
|
260
|
+
* The Amazon Chime SDK meeting ID.
|
|
261
|
+
*/
|
|
262
|
+
MeetingId: GuidString;
|
|
263
|
+
}
|
|
264
|
+
export interface EngineTranscribeMedicalSettings {
|
|
265
|
+
/**
|
|
266
|
+
* The language code specified for the Amazon Transcribe Medical engine.
|
|
267
|
+
*/
|
|
268
|
+
LanguageCode: TranscribeMedicalLanguageCode;
|
|
269
|
+
/**
|
|
270
|
+
* The specialty specified for the Amazon Transcribe Medical engine.
|
|
271
|
+
*/
|
|
272
|
+
Specialty: TranscribeMedicalSpecialty;
|
|
273
|
+
/**
|
|
274
|
+
* The type of transcription.
|
|
275
|
+
*/
|
|
276
|
+
Type: TranscribeMedicalType;
|
|
277
|
+
/**
|
|
278
|
+
* The name of the vocabulary passed to Amazon Transcribe Medical.
|
|
279
|
+
*/
|
|
280
|
+
VocabularyName?: String;
|
|
281
|
+
/**
|
|
282
|
+
* The AWS Region passed to Amazon Transcribe Medical. If you don't specify a Region, Amazon Chime uses the meeting's Region.
|
|
283
|
+
*/
|
|
284
|
+
Region?: TranscribeMedicalRegion;
|
|
285
|
+
}
|
|
286
|
+
export interface EngineTranscribeSettings {
|
|
287
|
+
/**
|
|
288
|
+
* The language code specified for the Amazon Transcribe engine.
|
|
289
|
+
*/
|
|
290
|
+
LanguageCode: TranscribeLanguageCode;
|
|
291
|
+
/**
|
|
292
|
+
* The filtering method passed to Amazon Transcribe.
|
|
293
|
+
*/
|
|
294
|
+
VocabularyFilterMethod?: TranscribeVocabularyFilterMethod;
|
|
295
|
+
/**
|
|
296
|
+
* The name of the vocabulary filter passed to Amazon Transcribe.
|
|
297
|
+
*/
|
|
298
|
+
VocabularyFilterName?: String;
|
|
299
|
+
/**
|
|
300
|
+
* The name of the vocabulary passed to Amazon Transcribe.
|
|
301
|
+
*/
|
|
302
|
+
VocabularyName?: String;
|
|
303
|
+
/**
|
|
304
|
+
* The AWS Region passed to Amazon Transcribe. If you don't specify a Region, Amazon Chime uses the meeting's Region.
|
|
305
|
+
*/
|
|
306
|
+
Region?: TranscribeRegion;
|
|
307
|
+
}
|
|
308
|
+
export type ExternalMeetingId = string;
|
|
309
|
+
export type ExternalUserId = string;
|
|
310
|
+
export interface GetAttendeeRequest {
|
|
311
|
+
/**
|
|
312
|
+
* The Amazon Chime SDK meeting ID.
|
|
313
|
+
*/
|
|
314
|
+
MeetingId: GuidString;
|
|
315
|
+
/**
|
|
316
|
+
* The Amazon Chime SDK attendee ID.
|
|
317
|
+
*/
|
|
318
|
+
AttendeeId: GuidString;
|
|
319
|
+
}
|
|
320
|
+
export interface GetAttendeeResponse {
|
|
321
|
+
/**
|
|
322
|
+
* The Amazon Chime SDK attendee information.
|
|
323
|
+
*/
|
|
324
|
+
Attendee?: Attendee;
|
|
325
|
+
}
|
|
326
|
+
export interface GetMeetingRequest {
|
|
327
|
+
/**
|
|
328
|
+
* The Amazon Chime SDK meeting ID.
|
|
329
|
+
*/
|
|
330
|
+
MeetingId: GuidString;
|
|
331
|
+
}
|
|
332
|
+
export interface GetMeetingResponse {
|
|
333
|
+
/**
|
|
334
|
+
* The Amazon Chime SDK meeting information.
|
|
335
|
+
*/
|
|
336
|
+
Meeting?: Meeting;
|
|
337
|
+
}
|
|
338
|
+
export type GuidString = string;
|
|
339
|
+
export type JoinTokenString = string;
|
|
340
|
+
export interface ListAttendeesRequest {
|
|
341
|
+
/**
|
|
342
|
+
* The Amazon Chime SDK meeting ID.
|
|
343
|
+
*/
|
|
344
|
+
MeetingId: GuidString;
|
|
345
|
+
/**
|
|
346
|
+
* The token to use to retrieve the next page of results.
|
|
347
|
+
*/
|
|
348
|
+
NextToken?: String;
|
|
349
|
+
/**
|
|
350
|
+
* The maximum number of results to return in a single call.
|
|
351
|
+
*/
|
|
352
|
+
MaxResults?: ResultMax;
|
|
353
|
+
}
|
|
354
|
+
export interface ListAttendeesResponse {
|
|
355
|
+
/**
|
|
356
|
+
* The Amazon Chime SDK attendee information.
|
|
357
|
+
*/
|
|
358
|
+
Attendees?: AttendeeList;
|
|
359
|
+
/**
|
|
360
|
+
* The token to use to retrieve the next page of results.
|
|
361
|
+
*/
|
|
362
|
+
NextToken?: String;
|
|
363
|
+
}
|
|
364
|
+
export interface MediaPlacement {
|
|
365
|
+
/**
|
|
366
|
+
* The audio host URL.
|
|
367
|
+
*/
|
|
368
|
+
AudioHostUrl?: String;
|
|
369
|
+
/**
|
|
370
|
+
* The audio fallback URL.
|
|
371
|
+
*/
|
|
372
|
+
AudioFallbackUrl?: String;
|
|
373
|
+
/**
|
|
374
|
+
* The signaling URL.
|
|
375
|
+
*/
|
|
376
|
+
SignalingUrl?: String;
|
|
377
|
+
/**
|
|
378
|
+
* The turn control URL.
|
|
379
|
+
*/
|
|
380
|
+
TurnControlUrl?: String;
|
|
381
|
+
/**
|
|
382
|
+
* The screen data URL.
|
|
383
|
+
*/
|
|
384
|
+
ScreenDataUrl?: String;
|
|
385
|
+
/**
|
|
386
|
+
* The screen viewing URL.
|
|
387
|
+
*/
|
|
388
|
+
ScreenViewingUrl?: String;
|
|
389
|
+
/**
|
|
390
|
+
* The screen sharing URL.
|
|
391
|
+
*/
|
|
392
|
+
ScreenSharingUrl?: String;
|
|
393
|
+
/**
|
|
394
|
+
* The event ingestion URL.
|
|
395
|
+
*/
|
|
396
|
+
EventIngestionUrl?: String;
|
|
397
|
+
}
|
|
398
|
+
export type MediaRegion = string;
|
|
399
|
+
export interface Meeting {
|
|
400
|
+
/**
|
|
401
|
+
* The Amazon Chime SDK meeting ID.
|
|
402
|
+
*/
|
|
403
|
+
MeetingId?: GuidString;
|
|
404
|
+
/**
|
|
405
|
+
* Reserved.
|
|
406
|
+
*/
|
|
407
|
+
MeetingHostId?: ExternalUserId;
|
|
408
|
+
/**
|
|
409
|
+
* The external meeting ID.
|
|
410
|
+
*/
|
|
411
|
+
ExternalMeetingId?: ExternalMeetingId;
|
|
412
|
+
/**
|
|
413
|
+
* The Region in which you create the meeting. Available values: af-south-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-south-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-1, us-east-2, us-west-1, us-west-2.
|
|
414
|
+
*/
|
|
415
|
+
MediaRegion?: MediaRegion;
|
|
416
|
+
/**
|
|
417
|
+
* The media placement for the meeting.
|
|
418
|
+
*/
|
|
419
|
+
MediaPlacement?: MediaPlacement;
|
|
420
|
+
}
|
|
421
|
+
export interface NotificationsConfiguration {
|
|
422
|
+
/**
|
|
423
|
+
* The ARN of the AWS Lambda function in the notifications configuration.
|
|
424
|
+
*/
|
|
425
|
+
LambdaFunctionArn?: Arn;
|
|
426
|
+
/**
|
|
427
|
+
* The ARN of the SNS topic.
|
|
428
|
+
*/
|
|
429
|
+
SnsTopicArn?: Arn;
|
|
430
|
+
/**
|
|
431
|
+
* The ARN of the SQS queue.
|
|
432
|
+
*/
|
|
433
|
+
SqsQueueArn?: Arn;
|
|
434
|
+
}
|
|
435
|
+
export type ResultMax = number;
|
|
436
|
+
export interface StartMeetingTranscriptionRequest {
|
|
437
|
+
/**
|
|
438
|
+
* The unique ID of the meeting being transcribed.
|
|
439
|
+
*/
|
|
440
|
+
MeetingId: GuidString;
|
|
441
|
+
/**
|
|
442
|
+
* The configuration for the current transcription operation. Must contain EngineTranscribeSettings or EngineTranscribeMedicalSettings.
|
|
443
|
+
*/
|
|
444
|
+
TranscriptionConfiguration: TranscriptionConfiguration;
|
|
445
|
+
}
|
|
446
|
+
export interface StopMeetingTranscriptionRequest {
|
|
447
|
+
/**
|
|
448
|
+
* The unique ID of the meeting for which you stop transcription.
|
|
449
|
+
*/
|
|
450
|
+
MeetingId: GuidString;
|
|
451
|
+
}
|
|
452
|
+
export type String = string;
|
|
453
|
+
export type TranscribeLanguageCode = "en-US"|"en-GB"|"es-US"|"fr-CA"|"fr-FR"|"en-AU"|"it-IT"|"de-DE"|"pt-BR"|"ja-JP"|"ko-KR"|"zh-CN"|string;
|
|
454
|
+
export type TranscribeMedicalLanguageCode = "en-US"|string;
|
|
455
|
+
export type TranscribeMedicalRegion = "us-east-1"|"us-east-2"|"us-west-2"|"ap-southeast-2"|"ca-central-1"|"eu-west-1"|"auto"|string;
|
|
456
|
+
export type TranscribeMedicalSpecialty = "PRIMARYCARE"|"CARDIOLOGY"|"NEUROLOGY"|"ONCOLOGY"|"RADIOLOGY"|"UROLOGY"|string;
|
|
457
|
+
export type TranscribeMedicalType = "CONVERSATION"|"DICTATION"|string;
|
|
458
|
+
export type TranscribeRegion = "us-east-2"|"us-east-1"|"us-west-2"|"ap-northeast-2"|"ap-southeast-2"|"ap-northeast-1"|"ca-central-1"|"eu-central-1"|"eu-west-1"|"eu-west-2"|"sa-east-1"|"auto"|string;
|
|
459
|
+
export type TranscribeVocabularyFilterMethod = "remove"|"mask"|"tag"|string;
|
|
460
|
+
export interface TranscriptionConfiguration {
|
|
461
|
+
/**
|
|
462
|
+
* The transcription configuration settings passed to Amazon Transcribe.
|
|
463
|
+
*/
|
|
464
|
+
EngineTranscribeSettings?: EngineTranscribeSettings;
|
|
465
|
+
/**
|
|
466
|
+
* The transcription configuration settings passed to Amazon Transcribe Medical.
|
|
467
|
+
*/
|
|
468
|
+
EngineTranscribeMedicalSettings?: EngineTranscribeMedicalSettings;
|
|
469
|
+
}
|
|
470
|
+
/**
|
|
471
|
+
* A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
|
|
472
|
+
*/
|
|
473
|
+
export type apiVersion = "2021-07-15"|"latest"|string;
|
|
474
|
+
export interface ClientApiVersions {
|
|
475
|
+
/**
|
|
476
|
+
* A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
|
|
477
|
+
*/
|
|
478
|
+
apiVersion?: apiVersion;
|
|
479
|
+
}
|
|
480
|
+
export type ClientConfiguration = ServiceConfigurationOptions & ClientApiVersions;
|
|
481
|
+
/**
|
|
482
|
+
* Contains interfaces for use with the ChimeSDKMeetings client.
|
|
483
|
+
*/
|
|
484
|
+
export import Types = ChimeSDKMeetings;
|
|
485
|
+
}
|
|
486
|
+
export = ChimeSDKMeetings;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
require('../lib/node_loader');
|
|
2
|
+
var AWS = require('../lib/core');
|
|
3
|
+
var Service = AWS.Service;
|
|
4
|
+
var apiLoader = AWS.apiLoader;
|
|
5
|
+
|
|
6
|
+
apiLoader.services['chimesdkmeetings'] = {};
|
|
7
|
+
AWS.ChimeSDKMeetings = Service.defineService('chimesdkmeetings', ['2021-07-15']);
|
|
8
|
+
Object.defineProperty(apiLoader.services['chimesdkmeetings'], '2021-07-15', {
|
|
9
|
+
get: function get() {
|
|
10
|
+
var model = require('../apis/chime-sdk-meetings-2021-07-15.min.json');
|
|
11
|
+
model.paginators = require('../apis/chime-sdk-meetings-2021-07-15.paginators.json').pagination;
|
|
12
|
+
return model;
|
|
13
|
+
},
|
|
14
|
+
enumerable: true,
|
|
15
|
+
configurable: true
|
|
16
|
+
});
|
|
17
|
+
|
|
18
|
+
module.exports = AWS.ChimeSDKMeetings;
|