@aws-sdk/client-chime 3.686.0 → 3.691.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-types/models/models_0.d.ts +470 -470
- package/dist-types/models/models_1.d.ts +276 -276
- package/dist-types/ts3.4/models/models_0.d.ts +476 -470
- package/dist-types/ts3.4/models/models_1.d.ts +284 -276
- package/package.json +7 -7
|
@@ -61,50 +61,52 @@ import {
|
|
|
61
61
|
VoiceConnectorSettings,
|
|
62
62
|
} from "./models_0";
|
|
63
63
|
export interface RoomRetentionSettings {
|
|
64
|
-
RetentionDays?: number;
|
|
64
|
+
RetentionDays?: number | undefined;
|
|
65
65
|
}
|
|
66
66
|
export interface RetentionSettings {
|
|
67
|
-
RoomRetentionSettings?: RoomRetentionSettings;
|
|
68
|
-
ConversationRetentionSettings?: ConversationRetentionSettings;
|
|
67
|
+
RoomRetentionSettings?: RoomRetentionSettings | undefined;
|
|
68
|
+
ConversationRetentionSettings?: ConversationRetentionSettings | undefined;
|
|
69
69
|
}
|
|
70
70
|
export interface GetRetentionSettingsResponse {
|
|
71
|
-
RetentionSettings?: RetentionSettings;
|
|
72
|
-
InitiateDeletionTimestamp?: Date;
|
|
71
|
+
RetentionSettings?: RetentionSettings | undefined;
|
|
72
|
+
InitiateDeletionTimestamp?: Date | undefined;
|
|
73
73
|
}
|
|
74
74
|
export interface GetRoomRequest {
|
|
75
75
|
AccountId: string | undefined;
|
|
76
76
|
RoomId: string | undefined;
|
|
77
77
|
}
|
|
78
78
|
export interface GetRoomResponse {
|
|
79
|
-
Room?: Room;
|
|
79
|
+
Room?: Room | undefined;
|
|
80
80
|
}
|
|
81
81
|
export interface GetSipMediaApplicationRequest {
|
|
82
82
|
SipMediaApplicationId: string | undefined;
|
|
83
83
|
}
|
|
84
84
|
export interface GetSipMediaApplicationResponse {
|
|
85
|
-
SipMediaApplication?: SipMediaApplication;
|
|
85
|
+
SipMediaApplication?: SipMediaApplication | undefined;
|
|
86
86
|
}
|
|
87
87
|
export interface GetSipMediaApplicationLoggingConfigurationRequest {
|
|
88
88
|
SipMediaApplicationId: string | undefined;
|
|
89
89
|
}
|
|
90
90
|
export interface SipMediaApplicationLoggingConfiguration {
|
|
91
|
-
EnableSipMediaApplicationMessageLogs?: boolean;
|
|
91
|
+
EnableSipMediaApplicationMessageLogs?: boolean | undefined;
|
|
92
92
|
}
|
|
93
93
|
export interface GetSipMediaApplicationLoggingConfigurationResponse {
|
|
94
|
-
SipMediaApplicationLoggingConfiguration?:
|
|
94
|
+
SipMediaApplicationLoggingConfiguration?:
|
|
95
|
+
| SipMediaApplicationLoggingConfiguration
|
|
96
|
+
| undefined;
|
|
95
97
|
}
|
|
96
98
|
export interface GetSipRuleRequest {
|
|
97
99
|
SipRuleId: string | undefined;
|
|
98
100
|
}
|
|
99
101
|
export interface GetSipRuleResponse {
|
|
100
|
-
SipRule?: SipRule;
|
|
102
|
+
SipRule?: SipRule | undefined;
|
|
101
103
|
}
|
|
102
104
|
export interface GetUserRequest {
|
|
103
105
|
AccountId: string | undefined;
|
|
104
106
|
UserId: string | undefined;
|
|
105
107
|
}
|
|
106
108
|
export interface GetUserResponse {
|
|
107
|
-
User?: User;
|
|
109
|
+
User?: User | undefined;
|
|
108
110
|
}
|
|
109
111
|
export interface GetUserSettingsRequest {
|
|
110
112
|
AccountId: string | undefined;
|
|
@@ -119,35 +121,35 @@ export interface UserSettings {
|
|
|
119
121
|
Telephony: TelephonySettings | undefined;
|
|
120
122
|
}
|
|
121
123
|
export interface GetUserSettingsResponse {
|
|
122
|
-
UserSettings?: UserSettings;
|
|
124
|
+
UserSettings?: UserSettings | undefined;
|
|
123
125
|
}
|
|
124
126
|
export interface GetVoiceConnectorRequest {
|
|
125
127
|
VoiceConnectorId: string | undefined;
|
|
126
128
|
}
|
|
127
129
|
export interface GetVoiceConnectorResponse {
|
|
128
|
-
VoiceConnector?: VoiceConnector;
|
|
130
|
+
VoiceConnector?: VoiceConnector | undefined;
|
|
129
131
|
}
|
|
130
132
|
export interface GetVoiceConnectorEmergencyCallingConfigurationRequest {
|
|
131
133
|
VoiceConnectorId: string | undefined;
|
|
132
134
|
}
|
|
133
135
|
export interface GetVoiceConnectorEmergencyCallingConfigurationResponse {
|
|
134
|
-
EmergencyCallingConfiguration?: EmergencyCallingConfiguration;
|
|
136
|
+
EmergencyCallingConfiguration?: EmergencyCallingConfiguration | undefined;
|
|
135
137
|
}
|
|
136
138
|
export interface GetVoiceConnectorGroupRequest {
|
|
137
139
|
VoiceConnectorGroupId: string | undefined;
|
|
138
140
|
}
|
|
139
141
|
export interface GetVoiceConnectorGroupResponse {
|
|
140
|
-
VoiceConnectorGroup?: VoiceConnectorGroup;
|
|
142
|
+
VoiceConnectorGroup?: VoiceConnectorGroup | undefined;
|
|
141
143
|
}
|
|
142
144
|
export interface GetVoiceConnectorLoggingConfigurationRequest {
|
|
143
145
|
VoiceConnectorId: string | undefined;
|
|
144
146
|
}
|
|
145
147
|
export interface LoggingConfiguration {
|
|
146
|
-
EnableSIPLogs?: boolean;
|
|
147
|
-
EnableMediaMetricLogs?: boolean;
|
|
148
|
+
EnableSIPLogs?: boolean | undefined;
|
|
149
|
+
EnableMediaMetricLogs?: boolean | undefined;
|
|
148
150
|
}
|
|
149
151
|
export interface GetVoiceConnectorLoggingConfigurationResponse {
|
|
150
|
-
LoggingConfiguration?: LoggingConfiguration;
|
|
152
|
+
LoggingConfiguration?: LoggingConfiguration | undefined;
|
|
151
153
|
}
|
|
152
154
|
export interface GetVoiceConnectorOriginationRequest {
|
|
153
155
|
VoiceConnectorId: string | undefined;
|
|
@@ -159,30 +161,30 @@ export declare const OriginationRouteProtocol: {
|
|
|
159
161
|
export type OriginationRouteProtocol =
|
|
160
162
|
(typeof OriginationRouteProtocol)[keyof typeof OriginationRouteProtocol];
|
|
161
163
|
export interface OriginationRoute {
|
|
162
|
-
Host?: string;
|
|
163
|
-
Port?: number;
|
|
164
|
-
Protocol?: OriginationRouteProtocol;
|
|
165
|
-
Priority?: number;
|
|
166
|
-
Weight?: number;
|
|
164
|
+
Host?: string | undefined;
|
|
165
|
+
Port?: number | undefined;
|
|
166
|
+
Protocol?: OriginationRouteProtocol | undefined;
|
|
167
|
+
Priority?: number | undefined;
|
|
168
|
+
Weight?: number | undefined;
|
|
167
169
|
}
|
|
168
170
|
export interface Origination {
|
|
169
|
-
Routes?: OriginationRoute[];
|
|
170
|
-
Disabled?: boolean;
|
|
171
|
+
Routes?: OriginationRoute[] | undefined;
|
|
172
|
+
Disabled?: boolean | undefined;
|
|
171
173
|
}
|
|
172
174
|
export interface GetVoiceConnectorOriginationResponse {
|
|
173
|
-
Origination?: Origination;
|
|
175
|
+
Origination?: Origination | undefined;
|
|
174
176
|
}
|
|
175
177
|
export interface GetVoiceConnectorProxyRequest {
|
|
176
178
|
VoiceConnectorId: string | undefined;
|
|
177
179
|
}
|
|
178
180
|
export interface Proxy {
|
|
179
|
-
DefaultSessionExpiryMinutes?: number;
|
|
180
|
-
Disabled?: boolean;
|
|
181
|
-
FallBackPhoneNumber?: string;
|
|
182
|
-
PhoneNumberCountries?: string[];
|
|
181
|
+
DefaultSessionExpiryMinutes?: number | undefined;
|
|
182
|
+
Disabled?: boolean | undefined;
|
|
183
|
+
FallBackPhoneNumber?: string | undefined;
|
|
184
|
+
PhoneNumberCountries?: string[] | undefined;
|
|
183
185
|
}
|
|
184
186
|
export interface GetVoiceConnectorProxyResponse {
|
|
185
|
-
Proxy?: Proxy;
|
|
187
|
+
Proxy?: Proxy | undefined;
|
|
186
188
|
}
|
|
187
189
|
export interface GetVoiceConnectorStreamingConfigurationRequest {
|
|
188
190
|
VoiceConnectorId: string | undefined;
|
|
@@ -199,144 +201,144 @@ export interface StreamingNotificationTarget {
|
|
|
199
201
|
}
|
|
200
202
|
export interface StreamingConfiguration {
|
|
201
203
|
DataRetentionInHours: number | undefined;
|
|
202
|
-
Disabled?: boolean;
|
|
203
|
-
StreamingNotificationTargets?: StreamingNotificationTarget[];
|
|
204
|
+
Disabled?: boolean | undefined;
|
|
205
|
+
StreamingNotificationTargets?: StreamingNotificationTarget[] | undefined;
|
|
204
206
|
}
|
|
205
207
|
export interface GetVoiceConnectorStreamingConfigurationResponse {
|
|
206
|
-
StreamingConfiguration?: StreamingConfiguration;
|
|
208
|
+
StreamingConfiguration?: StreamingConfiguration | undefined;
|
|
207
209
|
}
|
|
208
210
|
export interface GetVoiceConnectorTerminationRequest {
|
|
209
211
|
VoiceConnectorId: string | undefined;
|
|
210
212
|
}
|
|
211
213
|
export interface Termination {
|
|
212
|
-
CpsLimit?: number;
|
|
213
|
-
DefaultPhoneNumber?: string;
|
|
214
|
-
CallingRegions?: string[];
|
|
215
|
-
CidrAllowedList?: string[];
|
|
216
|
-
Disabled?: boolean;
|
|
214
|
+
CpsLimit?: number | undefined;
|
|
215
|
+
DefaultPhoneNumber?: string | undefined;
|
|
216
|
+
CallingRegions?: string[] | undefined;
|
|
217
|
+
CidrAllowedList?: string[] | undefined;
|
|
218
|
+
Disabled?: boolean | undefined;
|
|
217
219
|
}
|
|
218
220
|
export interface GetVoiceConnectorTerminationResponse {
|
|
219
|
-
Termination?: Termination;
|
|
221
|
+
Termination?: Termination | undefined;
|
|
220
222
|
}
|
|
221
223
|
export interface GetVoiceConnectorTerminationHealthRequest {
|
|
222
224
|
VoiceConnectorId: string | undefined;
|
|
223
225
|
}
|
|
224
226
|
export interface TerminationHealth {
|
|
225
|
-
Timestamp?: Date;
|
|
226
|
-
Source?: string;
|
|
227
|
+
Timestamp?: Date | undefined;
|
|
228
|
+
Source?: string | undefined;
|
|
227
229
|
}
|
|
228
230
|
export interface GetVoiceConnectorTerminationHealthResponse {
|
|
229
|
-
TerminationHealth?: TerminationHealth;
|
|
231
|
+
TerminationHealth?: TerminationHealth | undefined;
|
|
230
232
|
}
|
|
231
233
|
export interface Invite {
|
|
232
|
-
InviteId?: string;
|
|
233
|
-
Status?: InviteStatus;
|
|
234
|
-
EmailAddress?: string;
|
|
235
|
-
EmailStatus?: EmailStatus;
|
|
234
|
+
InviteId?: string | undefined;
|
|
235
|
+
Status?: InviteStatus | undefined;
|
|
236
|
+
EmailAddress?: string | undefined;
|
|
237
|
+
EmailStatus?: EmailStatus | undefined;
|
|
236
238
|
}
|
|
237
239
|
export interface InviteUsersRequest {
|
|
238
240
|
AccountId: string | undefined;
|
|
239
241
|
UserEmailList: string[] | undefined;
|
|
240
|
-
UserType?: UserType;
|
|
242
|
+
UserType?: UserType | undefined;
|
|
241
243
|
}
|
|
242
244
|
export interface InviteUsersResponse {
|
|
243
|
-
Invites?: Invite[];
|
|
245
|
+
Invites?: Invite[] | undefined;
|
|
244
246
|
}
|
|
245
247
|
export interface ListAccountsRequest {
|
|
246
|
-
Name?: string;
|
|
247
|
-
UserEmail?: string;
|
|
248
|
-
NextToken?: string;
|
|
249
|
-
MaxResults?: number;
|
|
248
|
+
Name?: string | undefined;
|
|
249
|
+
UserEmail?: string | undefined;
|
|
250
|
+
NextToken?: string | undefined;
|
|
251
|
+
MaxResults?: number | undefined;
|
|
250
252
|
}
|
|
251
253
|
export interface ListAccountsResponse {
|
|
252
|
-
Accounts?: Account[];
|
|
253
|
-
NextToken?: string;
|
|
254
|
+
Accounts?: Account[] | undefined;
|
|
255
|
+
NextToken?: string | undefined;
|
|
254
256
|
}
|
|
255
257
|
export interface ListAppInstanceAdminsRequest {
|
|
256
258
|
AppInstanceArn: string | undefined;
|
|
257
|
-
MaxResults?: number;
|
|
258
|
-
NextToken?: string;
|
|
259
|
+
MaxResults?: number | undefined;
|
|
260
|
+
NextToken?: string | undefined;
|
|
259
261
|
}
|
|
260
262
|
export interface ListAppInstanceAdminsResponse {
|
|
261
|
-
AppInstanceArn?: string;
|
|
262
|
-
AppInstanceAdmins?: AppInstanceAdminSummary[];
|
|
263
|
-
NextToken?: string;
|
|
263
|
+
AppInstanceArn?: string | undefined;
|
|
264
|
+
AppInstanceAdmins?: AppInstanceAdminSummary[] | undefined;
|
|
265
|
+
NextToken?: string | undefined;
|
|
264
266
|
}
|
|
265
267
|
export interface ListAppInstancesRequest {
|
|
266
|
-
MaxResults?: number;
|
|
267
|
-
NextToken?: string;
|
|
268
|
+
MaxResults?: number | undefined;
|
|
269
|
+
NextToken?: string | undefined;
|
|
268
270
|
}
|
|
269
271
|
export interface ListAppInstancesResponse {
|
|
270
|
-
AppInstances?: AppInstanceSummary[];
|
|
271
|
-
NextToken?: string;
|
|
272
|
+
AppInstances?: AppInstanceSummary[] | undefined;
|
|
273
|
+
NextToken?: string | undefined;
|
|
272
274
|
}
|
|
273
275
|
export interface ListAppInstanceUsersRequest {
|
|
274
276
|
AppInstanceArn: string | undefined;
|
|
275
|
-
MaxResults?: number;
|
|
276
|
-
NextToken?: string;
|
|
277
|
+
MaxResults?: number | undefined;
|
|
278
|
+
NextToken?: string | undefined;
|
|
277
279
|
}
|
|
278
280
|
export interface ListAppInstanceUsersResponse {
|
|
279
|
-
AppInstanceArn?: string;
|
|
280
|
-
AppInstanceUsers?: AppInstanceUserSummary[];
|
|
281
|
-
NextToken?: string;
|
|
281
|
+
AppInstanceArn?: string | undefined;
|
|
282
|
+
AppInstanceUsers?: AppInstanceUserSummary[] | undefined;
|
|
283
|
+
NextToken?: string | undefined;
|
|
282
284
|
}
|
|
283
285
|
export interface ListAttendeesRequest {
|
|
284
286
|
MeetingId: string | undefined;
|
|
285
|
-
NextToken?: string;
|
|
286
|
-
MaxResults?: number;
|
|
287
|
+
NextToken?: string | undefined;
|
|
288
|
+
MaxResults?: number | undefined;
|
|
287
289
|
}
|
|
288
290
|
export interface ListAttendeesResponse {
|
|
289
|
-
Attendees?: Attendee[];
|
|
290
|
-
NextToken?: string;
|
|
291
|
+
Attendees?: Attendee[] | undefined;
|
|
292
|
+
NextToken?: string | undefined;
|
|
291
293
|
}
|
|
292
294
|
export interface ListAttendeeTagsRequest {
|
|
293
295
|
MeetingId: string | undefined;
|
|
294
296
|
AttendeeId: string | undefined;
|
|
295
297
|
}
|
|
296
298
|
export interface ListAttendeeTagsResponse {
|
|
297
|
-
Tags?: Tag[];
|
|
299
|
+
Tags?: Tag[] | undefined;
|
|
298
300
|
}
|
|
299
301
|
export interface ListBotsRequest {
|
|
300
302
|
AccountId: string | undefined;
|
|
301
|
-
MaxResults?: number;
|
|
302
|
-
NextToken?: string;
|
|
303
|
+
MaxResults?: number | undefined;
|
|
304
|
+
NextToken?: string | undefined;
|
|
303
305
|
}
|
|
304
306
|
export interface ListBotsResponse {
|
|
305
|
-
Bots?: Bot[];
|
|
306
|
-
NextToken?: string;
|
|
307
|
+
Bots?: Bot[] | undefined;
|
|
308
|
+
NextToken?: string | undefined;
|
|
307
309
|
}
|
|
308
310
|
export interface ListChannelBansRequest {
|
|
309
311
|
ChannelArn: string | undefined;
|
|
310
|
-
MaxResults?: number;
|
|
311
|
-
NextToken?: string;
|
|
312
|
-
ChimeBearer?: string;
|
|
312
|
+
MaxResults?: number | undefined;
|
|
313
|
+
NextToken?: string | undefined;
|
|
314
|
+
ChimeBearer?: string | undefined;
|
|
313
315
|
}
|
|
314
316
|
export interface ListChannelBansResponse {
|
|
315
|
-
ChannelArn?: string;
|
|
316
|
-
NextToken?: string;
|
|
317
|
-
ChannelBans?: ChannelBanSummary[];
|
|
317
|
+
ChannelArn?: string | undefined;
|
|
318
|
+
NextToken?: string | undefined;
|
|
319
|
+
ChannelBans?: ChannelBanSummary[] | undefined;
|
|
318
320
|
}
|
|
319
321
|
export interface ListChannelMembershipsRequest {
|
|
320
322
|
ChannelArn: string | undefined;
|
|
321
|
-
Type?: ChannelMembershipType;
|
|
322
|
-
MaxResults?: number;
|
|
323
|
-
NextToken?: string;
|
|
324
|
-
ChimeBearer?: string;
|
|
323
|
+
Type?: ChannelMembershipType | undefined;
|
|
324
|
+
MaxResults?: number | undefined;
|
|
325
|
+
NextToken?: string | undefined;
|
|
326
|
+
ChimeBearer?: string | undefined;
|
|
325
327
|
}
|
|
326
328
|
export interface ListChannelMembershipsResponse {
|
|
327
|
-
ChannelArn?: string;
|
|
328
|
-
ChannelMemberships?: ChannelMembershipSummary[];
|
|
329
|
-
NextToken?: string;
|
|
329
|
+
ChannelArn?: string | undefined;
|
|
330
|
+
ChannelMemberships?: ChannelMembershipSummary[] | undefined;
|
|
331
|
+
NextToken?: string | undefined;
|
|
330
332
|
}
|
|
331
333
|
export interface ListChannelMembershipsForAppInstanceUserRequest {
|
|
332
|
-
AppInstanceUserArn?: string;
|
|
333
|
-
MaxResults?: number;
|
|
334
|
-
NextToken?: string;
|
|
335
|
-
ChimeBearer?: string;
|
|
334
|
+
AppInstanceUserArn?: string | undefined;
|
|
335
|
+
MaxResults?: number | undefined;
|
|
336
|
+
NextToken?: string | undefined;
|
|
337
|
+
ChimeBearer?: string | undefined;
|
|
336
338
|
}
|
|
337
339
|
export interface ListChannelMembershipsForAppInstanceUserResponse {
|
|
338
|
-
ChannelMemberships?: ChannelMembershipForAppInstanceUserSummary[];
|
|
339
|
-
NextToken?: string;
|
|
340
|
+
ChannelMemberships?: ChannelMembershipForAppInstanceUserSummary[] | undefined;
|
|
341
|
+
NextToken?: string | undefined;
|
|
340
342
|
}
|
|
341
343
|
export declare const SortOrder: {
|
|
342
344
|
readonly ASCENDING: "ASCENDING";
|
|
@@ -345,187 +347,187 @@ export declare const SortOrder: {
|
|
|
345
347
|
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
|
|
346
348
|
export interface ListChannelMessagesRequest {
|
|
347
349
|
ChannelArn: string | undefined;
|
|
348
|
-
SortOrder?: SortOrder;
|
|
349
|
-
NotBefore?: Date;
|
|
350
|
-
NotAfter?: Date;
|
|
351
|
-
MaxResults?: number;
|
|
352
|
-
NextToken?: string;
|
|
353
|
-
ChimeBearer?: string;
|
|
350
|
+
SortOrder?: SortOrder | undefined;
|
|
351
|
+
NotBefore?: Date | undefined;
|
|
352
|
+
NotAfter?: Date | undefined;
|
|
353
|
+
MaxResults?: number | undefined;
|
|
354
|
+
NextToken?: string | undefined;
|
|
355
|
+
ChimeBearer?: string | undefined;
|
|
354
356
|
}
|
|
355
357
|
export interface ListChannelMessagesResponse {
|
|
356
|
-
ChannelArn?: string;
|
|
357
|
-
NextToken?: string;
|
|
358
|
-
ChannelMessages?: ChannelMessageSummary[];
|
|
358
|
+
ChannelArn?: string | undefined;
|
|
359
|
+
NextToken?: string | undefined;
|
|
360
|
+
ChannelMessages?: ChannelMessageSummary[] | undefined;
|
|
359
361
|
}
|
|
360
362
|
export interface ListChannelModeratorsRequest {
|
|
361
363
|
ChannelArn: string | undefined;
|
|
362
|
-
MaxResults?: number;
|
|
363
|
-
NextToken?: string;
|
|
364
|
-
ChimeBearer?: string;
|
|
364
|
+
MaxResults?: number | undefined;
|
|
365
|
+
NextToken?: string | undefined;
|
|
366
|
+
ChimeBearer?: string | undefined;
|
|
365
367
|
}
|
|
366
368
|
export interface ListChannelModeratorsResponse {
|
|
367
|
-
ChannelArn?: string;
|
|
368
|
-
NextToken?: string;
|
|
369
|
-
ChannelModerators?: ChannelModeratorSummary[];
|
|
369
|
+
ChannelArn?: string | undefined;
|
|
370
|
+
NextToken?: string | undefined;
|
|
371
|
+
ChannelModerators?: ChannelModeratorSummary[] | undefined;
|
|
370
372
|
}
|
|
371
373
|
export interface ListChannelsRequest {
|
|
372
374
|
AppInstanceArn: string | undefined;
|
|
373
|
-
Privacy?: ChannelPrivacy;
|
|
374
|
-
MaxResults?: number;
|
|
375
|
-
NextToken?: string;
|
|
376
|
-
ChimeBearer?: string;
|
|
375
|
+
Privacy?: ChannelPrivacy | undefined;
|
|
376
|
+
MaxResults?: number | undefined;
|
|
377
|
+
NextToken?: string | undefined;
|
|
378
|
+
ChimeBearer?: string | undefined;
|
|
377
379
|
}
|
|
378
380
|
export interface ListChannelsResponse {
|
|
379
|
-
Channels?: ChannelSummary[];
|
|
380
|
-
NextToken?: string;
|
|
381
|
+
Channels?: ChannelSummary[] | undefined;
|
|
382
|
+
NextToken?: string | undefined;
|
|
381
383
|
}
|
|
382
384
|
export interface ListChannelsModeratedByAppInstanceUserRequest {
|
|
383
|
-
AppInstanceUserArn?: string;
|
|
384
|
-
MaxResults?: number;
|
|
385
|
-
NextToken?: string;
|
|
386
|
-
ChimeBearer?: string;
|
|
385
|
+
AppInstanceUserArn?: string | undefined;
|
|
386
|
+
MaxResults?: number | undefined;
|
|
387
|
+
NextToken?: string | undefined;
|
|
388
|
+
ChimeBearer?: string | undefined;
|
|
387
389
|
}
|
|
388
390
|
export interface ListChannelsModeratedByAppInstanceUserResponse {
|
|
389
|
-
Channels?: ChannelModeratedByAppInstanceUserSummary[];
|
|
390
|
-
NextToken?: string;
|
|
391
|
+
Channels?: ChannelModeratedByAppInstanceUserSummary[] | undefined;
|
|
392
|
+
NextToken?: string | undefined;
|
|
391
393
|
}
|
|
392
394
|
export interface ListMediaCapturePipelinesRequest {
|
|
393
|
-
NextToken?: string;
|
|
394
|
-
MaxResults?: number;
|
|
395
|
+
NextToken?: string | undefined;
|
|
396
|
+
MaxResults?: number | undefined;
|
|
395
397
|
}
|
|
396
398
|
export interface ListMediaCapturePipelinesResponse {
|
|
397
|
-
MediaCapturePipelines?: MediaCapturePipeline[];
|
|
398
|
-
NextToken?: string;
|
|
399
|
+
MediaCapturePipelines?: MediaCapturePipeline[] | undefined;
|
|
400
|
+
NextToken?: string | undefined;
|
|
399
401
|
}
|
|
400
402
|
export interface ListMeetingsRequest {
|
|
401
|
-
NextToken?: string;
|
|
402
|
-
MaxResults?: number;
|
|
403
|
+
NextToken?: string | undefined;
|
|
404
|
+
MaxResults?: number | undefined;
|
|
403
405
|
}
|
|
404
406
|
export interface ListMeetingsResponse {
|
|
405
|
-
Meetings?: Meeting[];
|
|
406
|
-
NextToken?: string;
|
|
407
|
+
Meetings?: Meeting[] | undefined;
|
|
408
|
+
NextToken?: string | undefined;
|
|
407
409
|
}
|
|
408
410
|
export interface ListMeetingTagsRequest {
|
|
409
411
|
MeetingId: string | undefined;
|
|
410
412
|
}
|
|
411
413
|
export interface ListMeetingTagsResponse {
|
|
412
|
-
Tags?: Tag[];
|
|
414
|
+
Tags?: Tag[] | undefined;
|
|
413
415
|
}
|
|
414
416
|
export interface ListPhoneNumberOrdersRequest {
|
|
415
|
-
NextToken?: string;
|
|
416
|
-
MaxResults?: number;
|
|
417
|
+
NextToken?: string | undefined;
|
|
418
|
+
MaxResults?: number | undefined;
|
|
417
419
|
}
|
|
418
420
|
export interface ListPhoneNumberOrdersResponse {
|
|
419
|
-
PhoneNumberOrders?: PhoneNumberOrder[];
|
|
420
|
-
NextToken?: string;
|
|
421
|
+
PhoneNumberOrders?: PhoneNumberOrder[] | undefined;
|
|
422
|
+
NextToken?: string | undefined;
|
|
421
423
|
}
|
|
422
424
|
export interface ListPhoneNumbersRequest {
|
|
423
|
-
Status?: PhoneNumberStatus;
|
|
424
|
-
ProductType?: PhoneNumberProductType;
|
|
425
|
-
FilterName?: PhoneNumberAssociationName;
|
|
426
|
-
FilterValue?: string;
|
|
427
|
-
MaxResults?: number;
|
|
428
|
-
NextToken?: string;
|
|
425
|
+
Status?: PhoneNumberStatus | undefined;
|
|
426
|
+
ProductType?: PhoneNumberProductType | undefined;
|
|
427
|
+
FilterName?: PhoneNumberAssociationName | undefined;
|
|
428
|
+
FilterValue?: string | undefined;
|
|
429
|
+
MaxResults?: number | undefined;
|
|
430
|
+
NextToken?: string | undefined;
|
|
429
431
|
}
|
|
430
432
|
export interface ListPhoneNumbersResponse {
|
|
431
|
-
PhoneNumbers?: PhoneNumber[];
|
|
432
|
-
NextToken?: string;
|
|
433
|
+
PhoneNumbers?: PhoneNumber[] | undefined;
|
|
434
|
+
NextToken?: string | undefined;
|
|
433
435
|
}
|
|
434
436
|
export interface ListProxySessionsRequest {
|
|
435
437
|
VoiceConnectorId: string | undefined;
|
|
436
|
-
Status?: ProxySessionStatus;
|
|
437
|
-
NextToken?: string;
|
|
438
|
-
MaxResults?: number;
|
|
438
|
+
Status?: ProxySessionStatus | undefined;
|
|
439
|
+
NextToken?: string | undefined;
|
|
440
|
+
MaxResults?: number | undefined;
|
|
439
441
|
}
|
|
440
442
|
export interface ListProxySessionsResponse {
|
|
441
|
-
ProxySessions?: ProxySession[];
|
|
442
|
-
NextToken?: string;
|
|
443
|
+
ProxySessions?: ProxySession[] | undefined;
|
|
444
|
+
NextToken?: string | undefined;
|
|
443
445
|
}
|
|
444
446
|
export interface ListRoomMembershipsRequest {
|
|
445
447
|
AccountId: string | undefined;
|
|
446
448
|
RoomId: string | undefined;
|
|
447
|
-
MaxResults?: number;
|
|
448
|
-
NextToken?: string;
|
|
449
|
+
MaxResults?: number | undefined;
|
|
450
|
+
NextToken?: string | undefined;
|
|
449
451
|
}
|
|
450
452
|
export interface ListRoomMembershipsResponse {
|
|
451
|
-
RoomMemberships?: RoomMembership[];
|
|
452
|
-
NextToken?: string;
|
|
453
|
+
RoomMemberships?: RoomMembership[] | undefined;
|
|
454
|
+
NextToken?: string | undefined;
|
|
453
455
|
}
|
|
454
456
|
export interface ListRoomsRequest {
|
|
455
457
|
AccountId: string | undefined;
|
|
456
|
-
MemberId?: string;
|
|
457
|
-
MaxResults?: number;
|
|
458
|
-
NextToken?: string;
|
|
458
|
+
MemberId?: string | undefined;
|
|
459
|
+
MaxResults?: number | undefined;
|
|
460
|
+
NextToken?: string | undefined;
|
|
459
461
|
}
|
|
460
462
|
export interface ListRoomsResponse {
|
|
461
|
-
Rooms?: Room[];
|
|
462
|
-
NextToken?: string;
|
|
463
|
+
Rooms?: Room[] | undefined;
|
|
464
|
+
NextToken?: string | undefined;
|
|
463
465
|
}
|
|
464
466
|
export interface ListSipMediaApplicationsRequest {
|
|
465
|
-
MaxResults?: number;
|
|
466
|
-
NextToken?: string;
|
|
467
|
+
MaxResults?: number | undefined;
|
|
468
|
+
NextToken?: string | undefined;
|
|
467
469
|
}
|
|
468
470
|
export interface ListSipMediaApplicationsResponse {
|
|
469
|
-
SipMediaApplications?: SipMediaApplication[];
|
|
470
|
-
NextToken?: string;
|
|
471
|
+
SipMediaApplications?: SipMediaApplication[] | undefined;
|
|
472
|
+
NextToken?: string | undefined;
|
|
471
473
|
}
|
|
472
474
|
export interface ListSipRulesRequest {
|
|
473
|
-
SipMediaApplicationId?: string;
|
|
474
|
-
MaxResults?: number;
|
|
475
|
-
NextToken?: string;
|
|
475
|
+
SipMediaApplicationId?: string | undefined;
|
|
476
|
+
MaxResults?: number | undefined;
|
|
477
|
+
NextToken?: string | undefined;
|
|
476
478
|
}
|
|
477
479
|
export interface ListSipRulesResponse {
|
|
478
|
-
SipRules?: SipRule[];
|
|
479
|
-
NextToken?: string;
|
|
480
|
+
SipRules?: SipRule[] | undefined;
|
|
481
|
+
NextToken?: string | undefined;
|
|
480
482
|
}
|
|
481
483
|
export interface ListSupportedPhoneNumberCountriesRequest {
|
|
482
484
|
ProductType: PhoneNumberProductType | undefined;
|
|
483
485
|
}
|
|
484
486
|
export interface PhoneNumberCountry {
|
|
485
|
-
CountryCode?: string;
|
|
486
|
-
SupportedPhoneNumberTypes?: PhoneNumberType[];
|
|
487
|
+
CountryCode?: string | undefined;
|
|
488
|
+
SupportedPhoneNumberTypes?: PhoneNumberType[] | undefined;
|
|
487
489
|
}
|
|
488
490
|
export interface ListSupportedPhoneNumberCountriesResponse {
|
|
489
|
-
PhoneNumberCountries?: PhoneNumberCountry[];
|
|
491
|
+
PhoneNumberCountries?: PhoneNumberCountry[] | undefined;
|
|
490
492
|
}
|
|
491
493
|
export interface ListTagsForResourceRequest {
|
|
492
494
|
ResourceARN: string | undefined;
|
|
493
495
|
}
|
|
494
496
|
export interface ListTagsForResourceResponse {
|
|
495
|
-
Tags?: Tag[];
|
|
497
|
+
Tags?: Tag[] | undefined;
|
|
496
498
|
}
|
|
497
499
|
export interface ListUsersRequest {
|
|
498
500
|
AccountId: string | undefined;
|
|
499
|
-
UserEmail?: string;
|
|
500
|
-
UserType?: UserType;
|
|
501
|
-
MaxResults?: number;
|
|
502
|
-
NextToken?: string;
|
|
501
|
+
UserEmail?: string | undefined;
|
|
502
|
+
UserType?: UserType | undefined;
|
|
503
|
+
MaxResults?: number | undefined;
|
|
504
|
+
NextToken?: string | undefined;
|
|
503
505
|
}
|
|
504
506
|
export interface ListUsersResponse {
|
|
505
|
-
Users?: User[];
|
|
506
|
-
NextToken?: string;
|
|
507
|
+
Users?: User[] | undefined;
|
|
508
|
+
NextToken?: string | undefined;
|
|
507
509
|
}
|
|
508
510
|
export interface ListVoiceConnectorGroupsRequest {
|
|
509
|
-
NextToken?: string;
|
|
510
|
-
MaxResults?: number;
|
|
511
|
+
NextToken?: string | undefined;
|
|
512
|
+
MaxResults?: number | undefined;
|
|
511
513
|
}
|
|
512
514
|
export interface ListVoiceConnectorGroupsResponse {
|
|
513
|
-
VoiceConnectorGroups?: VoiceConnectorGroup[];
|
|
514
|
-
NextToken?: string;
|
|
515
|
+
VoiceConnectorGroups?: VoiceConnectorGroup[] | undefined;
|
|
516
|
+
NextToken?: string | undefined;
|
|
515
517
|
}
|
|
516
518
|
export interface ListVoiceConnectorsRequest {
|
|
517
|
-
NextToken?: string;
|
|
518
|
-
MaxResults?: number;
|
|
519
|
+
NextToken?: string | undefined;
|
|
520
|
+
MaxResults?: number | undefined;
|
|
519
521
|
}
|
|
520
522
|
export interface ListVoiceConnectorsResponse {
|
|
521
|
-
VoiceConnectors?: VoiceConnector[];
|
|
522
|
-
NextToken?: string;
|
|
523
|
+
VoiceConnectors?: VoiceConnector[] | undefined;
|
|
524
|
+
NextToken?: string | undefined;
|
|
523
525
|
}
|
|
524
526
|
export interface ListVoiceConnectorTerminationCredentialsRequest {
|
|
525
527
|
VoiceConnectorId: string | undefined;
|
|
526
528
|
}
|
|
527
529
|
export interface ListVoiceConnectorTerminationCredentialsResponse {
|
|
528
|
-
Usernames?: string[];
|
|
530
|
+
Usernames?: string[] | undefined;
|
|
529
531
|
}
|
|
530
532
|
export interface LogoutUserRequest {
|
|
531
533
|
AccountId: string | undefined;
|
|
@@ -537,8 +539,8 @@ export interface PutAppInstanceRetentionSettingsRequest {
|
|
|
537
539
|
AppInstanceRetentionSettings: AppInstanceRetentionSettings | undefined;
|
|
538
540
|
}
|
|
539
541
|
export interface PutAppInstanceRetentionSettingsResponse {
|
|
540
|
-
AppInstanceRetentionSettings?: AppInstanceRetentionSettings;
|
|
541
|
-
InitiateDeletionTimestamp?: Date;
|
|
542
|
+
AppInstanceRetentionSettings?: AppInstanceRetentionSettings | undefined;
|
|
543
|
+
InitiateDeletionTimestamp?: Date | undefined;
|
|
542
544
|
}
|
|
543
545
|
export interface PutAppInstanceStreamingConfigurationsRequest {
|
|
544
546
|
AppInstanceArn: string | undefined;
|
|
@@ -547,89 +549,95 @@ export interface PutAppInstanceStreamingConfigurationsRequest {
|
|
|
547
549
|
| undefined;
|
|
548
550
|
}
|
|
549
551
|
export interface PutAppInstanceStreamingConfigurationsResponse {
|
|
550
|
-
AppInstanceStreamingConfigurations?:
|
|
552
|
+
AppInstanceStreamingConfigurations?:
|
|
553
|
+
| AppInstanceStreamingConfiguration[]
|
|
554
|
+
| undefined;
|
|
551
555
|
}
|
|
552
556
|
export interface PutEventsConfigurationRequest {
|
|
553
557
|
AccountId: string | undefined;
|
|
554
558
|
BotId: string | undefined;
|
|
555
|
-
OutboundEventsHTTPSEndpoint?: string;
|
|
556
|
-
LambdaFunctionArn?: string;
|
|
559
|
+
OutboundEventsHTTPSEndpoint?: string | undefined;
|
|
560
|
+
LambdaFunctionArn?: string | undefined;
|
|
557
561
|
}
|
|
558
562
|
export interface PutEventsConfigurationResponse {
|
|
559
|
-
EventsConfiguration?: EventsConfiguration;
|
|
563
|
+
EventsConfiguration?: EventsConfiguration | undefined;
|
|
560
564
|
}
|
|
561
565
|
export interface PutRetentionSettingsRequest {
|
|
562
566
|
AccountId: string | undefined;
|
|
563
567
|
RetentionSettings: RetentionSettings | undefined;
|
|
564
568
|
}
|
|
565
569
|
export interface PutRetentionSettingsResponse {
|
|
566
|
-
RetentionSettings?: RetentionSettings;
|
|
567
|
-
InitiateDeletionTimestamp?: Date;
|
|
570
|
+
RetentionSettings?: RetentionSettings | undefined;
|
|
571
|
+
InitiateDeletionTimestamp?: Date | undefined;
|
|
568
572
|
}
|
|
569
573
|
export interface PutSipMediaApplicationLoggingConfigurationRequest {
|
|
570
574
|
SipMediaApplicationId: string | undefined;
|
|
571
|
-
SipMediaApplicationLoggingConfiguration?:
|
|
575
|
+
SipMediaApplicationLoggingConfiguration?:
|
|
576
|
+
| SipMediaApplicationLoggingConfiguration
|
|
577
|
+
| undefined;
|
|
572
578
|
}
|
|
573
579
|
export interface PutSipMediaApplicationLoggingConfigurationResponse {
|
|
574
|
-
SipMediaApplicationLoggingConfiguration?:
|
|
580
|
+
SipMediaApplicationLoggingConfiguration?:
|
|
581
|
+
| SipMediaApplicationLoggingConfiguration
|
|
582
|
+
| undefined;
|
|
575
583
|
}
|
|
576
584
|
export interface PutVoiceConnectorEmergencyCallingConfigurationRequest {
|
|
577
585
|
VoiceConnectorId: string | undefined;
|
|
578
586
|
EmergencyCallingConfiguration: EmergencyCallingConfiguration | undefined;
|
|
579
587
|
}
|
|
580
588
|
export interface PutVoiceConnectorEmergencyCallingConfigurationResponse {
|
|
581
|
-
EmergencyCallingConfiguration?: EmergencyCallingConfiguration;
|
|
589
|
+
EmergencyCallingConfiguration?: EmergencyCallingConfiguration | undefined;
|
|
582
590
|
}
|
|
583
591
|
export interface PutVoiceConnectorLoggingConfigurationRequest {
|
|
584
592
|
VoiceConnectorId: string | undefined;
|
|
585
593
|
LoggingConfiguration: LoggingConfiguration | undefined;
|
|
586
594
|
}
|
|
587
595
|
export interface PutVoiceConnectorLoggingConfigurationResponse {
|
|
588
|
-
LoggingConfiguration?: LoggingConfiguration;
|
|
596
|
+
LoggingConfiguration?: LoggingConfiguration | undefined;
|
|
589
597
|
}
|
|
590
598
|
export interface PutVoiceConnectorOriginationRequest {
|
|
591
599
|
VoiceConnectorId: string | undefined;
|
|
592
600
|
Origination: Origination | undefined;
|
|
593
601
|
}
|
|
594
602
|
export interface PutVoiceConnectorOriginationResponse {
|
|
595
|
-
Origination?: Origination;
|
|
603
|
+
Origination?: Origination | undefined;
|
|
596
604
|
}
|
|
597
605
|
export interface PutVoiceConnectorProxyRequest {
|
|
598
606
|
VoiceConnectorId: string | undefined;
|
|
599
607
|
DefaultSessionExpiryMinutes: number | undefined;
|
|
600
608
|
PhoneNumberPoolCountries: string[] | undefined;
|
|
601
|
-
FallBackPhoneNumber?: string;
|
|
602
|
-
Disabled?: boolean;
|
|
609
|
+
FallBackPhoneNumber?: string | undefined;
|
|
610
|
+
Disabled?: boolean | undefined;
|
|
603
611
|
}
|
|
604
612
|
export interface PutVoiceConnectorProxyResponse {
|
|
605
|
-
Proxy?: Proxy;
|
|
613
|
+
Proxy?: Proxy | undefined;
|
|
606
614
|
}
|
|
607
615
|
export interface PutVoiceConnectorStreamingConfigurationRequest {
|
|
608
616
|
VoiceConnectorId: string | undefined;
|
|
609
617
|
StreamingConfiguration: StreamingConfiguration | undefined;
|
|
610
618
|
}
|
|
611
619
|
export interface PutVoiceConnectorStreamingConfigurationResponse {
|
|
612
|
-
StreamingConfiguration?: StreamingConfiguration;
|
|
620
|
+
StreamingConfiguration?: StreamingConfiguration | undefined;
|
|
613
621
|
}
|
|
614
622
|
export interface PutVoiceConnectorTerminationRequest {
|
|
615
623
|
VoiceConnectorId: string | undefined;
|
|
616
624
|
Termination: Termination | undefined;
|
|
617
625
|
}
|
|
618
626
|
export interface PutVoiceConnectorTerminationResponse {
|
|
619
|
-
Termination?: Termination;
|
|
627
|
+
Termination?: Termination | undefined;
|
|
620
628
|
}
|
|
621
629
|
export interface PutVoiceConnectorTerminationCredentialsRequest {
|
|
622
630
|
VoiceConnectorId: string | undefined;
|
|
623
|
-
Credentials?: Credential[];
|
|
631
|
+
Credentials?: Credential[] | undefined;
|
|
624
632
|
}
|
|
625
633
|
export interface RedactChannelMessageRequest {
|
|
626
634
|
ChannelArn: string | undefined;
|
|
627
635
|
MessageId: string | undefined;
|
|
628
|
-
ChimeBearer?: string;
|
|
636
|
+
ChimeBearer?: string | undefined;
|
|
629
637
|
}
|
|
630
638
|
export interface RedactChannelMessageResponse {
|
|
631
|
-
ChannelArn?: string;
|
|
632
|
-
MessageId?: string;
|
|
639
|
+
ChannelArn?: string | undefined;
|
|
640
|
+
MessageId?: string | undefined;
|
|
633
641
|
}
|
|
634
642
|
export interface RedactConversationMessageRequest {
|
|
635
643
|
AccountId: string | undefined;
|
|
@@ -648,51 +656,51 @@ export interface RegenerateSecurityTokenRequest {
|
|
|
648
656
|
BotId: string | undefined;
|
|
649
657
|
}
|
|
650
658
|
export interface RegenerateSecurityTokenResponse {
|
|
651
|
-
Bot?: Bot;
|
|
659
|
+
Bot?: Bot | undefined;
|
|
652
660
|
}
|
|
653
661
|
export interface ResetPersonalPINRequest {
|
|
654
662
|
AccountId: string | undefined;
|
|
655
663
|
UserId: string | undefined;
|
|
656
664
|
}
|
|
657
665
|
export interface ResetPersonalPINResponse {
|
|
658
|
-
User?: User;
|
|
666
|
+
User?: User | undefined;
|
|
659
667
|
}
|
|
660
668
|
export interface RestorePhoneNumberRequest {
|
|
661
669
|
PhoneNumberId: string | undefined;
|
|
662
670
|
}
|
|
663
671
|
export interface RestorePhoneNumberResponse {
|
|
664
|
-
PhoneNumber?: PhoneNumber;
|
|
672
|
+
PhoneNumber?: PhoneNumber | undefined;
|
|
665
673
|
}
|
|
666
674
|
export interface SearchAvailablePhoneNumbersRequest {
|
|
667
|
-
AreaCode?: string;
|
|
668
|
-
City?: string;
|
|
669
|
-
Country?: string;
|
|
670
|
-
State?: string;
|
|
671
|
-
TollFreePrefix?: string;
|
|
672
|
-
PhoneNumberType?: PhoneNumberType;
|
|
673
|
-
MaxResults?: number;
|
|
674
|
-
NextToken?: string;
|
|
675
|
+
AreaCode?: string | undefined;
|
|
676
|
+
City?: string | undefined;
|
|
677
|
+
Country?: string | undefined;
|
|
678
|
+
State?: string | undefined;
|
|
679
|
+
TollFreePrefix?: string | undefined;
|
|
680
|
+
PhoneNumberType?: PhoneNumberType | undefined;
|
|
681
|
+
MaxResults?: number | undefined;
|
|
682
|
+
NextToken?: string | undefined;
|
|
675
683
|
}
|
|
676
684
|
export interface SearchAvailablePhoneNumbersResponse {
|
|
677
|
-
E164PhoneNumbers?: string[];
|
|
678
|
-
NextToken?: string;
|
|
685
|
+
E164PhoneNumbers?: string[] | undefined;
|
|
686
|
+
NextToken?: string | undefined;
|
|
679
687
|
}
|
|
680
688
|
export interface SendChannelMessageRequest {
|
|
681
689
|
ChannelArn: string | undefined;
|
|
682
690
|
Content: string | undefined;
|
|
683
691
|
Type: ChannelMessageType | undefined;
|
|
684
692
|
Persistence: ChannelMessagePersistenceType | undefined;
|
|
685
|
-
Metadata?: string;
|
|
686
|
-
ClientRequestToken?: string;
|
|
687
|
-
ChimeBearer?: string;
|
|
693
|
+
Metadata?: string | undefined;
|
|
694
|
+
ClientRequestToken?: string | undefined;
|
|
695
|
+
ChimeBearer?: string | undefined;
|
|
688
696
|
}
|
|
689
697
|
export interface SendChannelMessageResponse {
|
|
690
|
-
ChannelArn?: string;
|
|
691
|
-
MessageId?: string;
|
|
698
|
+
ChannelArn?: string | undefined;
|
|
699
|
+
MessageId?: string | undefined;
|
|
692
700
|
}
|
|
693
701
|
export interface TranscriptionConfiguration {
|
|
694
|
-
EngineTranscribeSettings?: EngineTranscribeSettings;
|
|
695
|
-
EngineTranscribeMedicalSettings?: EngineTranscribeMedicalSettings;
|
|
702
|
+
EngineTranscribeSettings?: EngineTranscribeSettings | undefined;
|
|
703
|
+
EngineTranscribeMedicalSettings?: EngineTranscribeMedicalSettings | undefined;
|
|
696
704
|
}
|
|
697
705
|
export interface StartMeetingTranscriptionRequest {
|
|
698
706
|
MeetingId: string | undefined;
|
|
@@ -731,11 +739,11 @@ export interface UntagResourceRequest {
|
|
|
731
739
|
}
|
|
732
740
|
export interface UpdateAccountRequest {
|
|
733
741
|
AccountId: string | undefined;
|
|
734
|
-
Name?: string;
|
|
735
|
-
DefaultLicense?: License;
|
|
742
|
+
Name?: string | undefined;
|
|
743
|
+
DefaultLicense?: License | undefined;
|
|
736
744
|
}
|
|
737
745
|
export interface UpdateAccountResponse {
|
|
738
|
-
Account?: Account;
|
|
746
|
+
Account?: Account | undefined;
|
|
739
747
|
}
|
|
740
748
|
export interface UpdateAccountSettingsRequest {
|
|
741
749
|
AccountId: string | undefined;
|
|
@@ -745,66 +753,66 @@ export interface UpdateAccountSettingsResponse {}
|
|
|
745
753
|
export interface UpdateAppInstanceRequest {
|
|
746
754
|
AppInstanceArn: string | undefined;
|
|
747
755
|
Name: string | undefined;
|
|
748
|
-
Metadata?: string;
|
|
756
|
+
Metadata?: string | undefined;
|
|
749
757
|
}
|
|
750
758
|
export interface UpdateAppInstanceResponse {
|
|
751
|
-
AppInstanceArn?: string;
|
|
759
|
+
AppInstanceArn?: string | undefined;
|
|
752
760
|
}
|
|
753
761
|
export interface UpdateAppInstanceUserRequest {
|
|
754
762
|
AppInstanceUserArn: string | undefined;
|
|
755
763
|
Name: string | undefined;
|
|
756
|
-
Metadata?: string;
|
|
764
|
+
Metadata?: string | undefined;
|
|
757
765
|
}
|
|
758
766
|
export interface UpdateAppInstanceUserResponse {
|
|
759
|
-
AppInstanceUserArn?: string;
|
|
767
|
+
AppInstanceUserArn?: string | undefined;
|
|
760
768
|
}
|
|
761
769
|
export interface UpdateBotRequest {
|
|
762
770
|
AccountId: string | undefined;
|
|
763
771
|
BotId: string | undefined;
|
|
764
|
-
Disabled?: boolean;
|
|
772
|
+
Disabled?: boolean | undefined;
|
|
765
773
|
}
|
|
766
774
|
export interface UpdateBotResponse {
|
|
767
|
-
Bot?: Bot;
|
|
775
|
+
Bot?: Bot | undefined;
|
|
768
776
|
}
|
|
769
777
|
export interface UpdateChannelRequest {
|
|
770
778
|
ChannelArn: string | undefined;
|
|
771
779
|
Name: string | undefined;
|
|
772
780
|
Mode: ChannelMode | undefined;
|
|
773
|
-
Metadata?: string;
|
|
774
|
-
ChimeBearer?: string;
|
|
781
|
+
Metadata?: string | undefined;
|
|
782
|
+
ChimeBearer?: string | undefined;
|
|
775
783
|
}
|
|
776
784
|
export interface UpdateChannelResponse {
|
|
777
|
-
ChannelArn?: string;
|
|
785
|
+
ChannelArn?: string | undefined;
|
|
778
786
|
}
|
|
779
787
|
export interface UpdateChannelMessageRequest {
|
|
780
788
|
ChannelArn: string | undefined;
|
|
781
789
|
MessageId: string | undefined;
|
|
782
|
-
Content?: string;
|
|
783
|
-
Metadata?: string;
|
|
784
|
-
ChimeBearer?: string;
|
|
790
|
+
Content?: string | undefined;
|
|
791
|
+
Metadata?: string | undefined;
|
|
792
|
+
ChimeBearer?: string | undefined;
|
|
785
793
|
}
|
|
786
794
|
export interface UpdateChannelMessageResponse {
|
|
787
|
-
ChannelArn?: string;
|
|
788
|
-
MessageId?: string;
|
|
795
|
+
ChannelArn?: string | undefined;
|
|
796
|
+
MessageId?: string | undefined;
|
|
789
797
|
}
|
|
790
798
|
export interface UpdateChannelReadMarkerRequest {
|
|
791
799
|
ChannelArn: string | undefined;
|
|
792
|
-
ChimeBearer?: string;
|
|
800
|
+
ChimeBearer?: string | undefined;
|
|
793
801
|
}
|
|
794
802
|
export interface UpdateChannelReadMarkerResponse {
|
|
795
|
-
ChannelArn?: string;
|
|
803
|
+
ChannelArn?: string | undefined;
|
|
796
804
|
}
|
|
797
805
|
export interface UpdateGlobalSettingsRequest {
|
|
798
|
-
BusinessCalling?: BusinessCallingSettings;
|
|
799
|
-
VoiceConnector?: VoiceConnectorSettings;
|
|
806
|
+
BusinessCalling?: BusinessCallingSettings | undefined;
|
|
807
|
+
VoiceConnector?: VoiceConnectorSettings | undefined;
|
|
800
808
|
}
|
|
801
809
|
export interface UpdatePhoneNumberRequest {
|
|
802
810
|
PhoneNumberId: string | undefined;
|
|
803
|
-
ProductType?: PhoneNumberProductType;
|
|
804
|
-
CallingName?: string;
|
|
811
|
+
ProductType?: PhoneNumberProductType | undefined;
|
|
812
|
+
CallingName?: string | undefined;
|
|
805
813
|
}
|
|
806
814
|
export interface UpdatePhoneNumberResponse {
|
|
807
|
-
PhoneNumber?: PhoneNumber;
|
|
815
|
+
PhoneNumber?: PhoneNumber | undefined;
|
|
808
816
|
}
|
|
809
817
|
export interface UpdatePhoneNumberSettingsRequest {
|
|
810
818
|
CallingName: string | undefined;
|
|
@@ -813,35 +821,35 @@ export interface UpdateProxySessionRequest {
|
|
|
813
821
|
VoiceConnectorId: string | undefined;
|
|
814
822
|
ProxySessionId: string | undefined;
|
|
815
823
|
Capabilities: Capability[] | undefined;
|
|
816
|
-
ExpiryMinutes?: number;
|
|
824
|
+
ExpiryMinutes?: number | undefined;
|
|
817
825
|
}
|
|
818
826
|
export interface UpdateProxySessionResponse {
|
|
819
|
-
ProxySession?: ProxySession;
|
|
827
|
+
ProxySession?: ProxySession | undefined;
|
|
820
828
|
}
|
|
821
829
|
export interface UpdateRoomRequest {
|
|
822
830
|
AccountId: string | undefined;
|
|
823
831
|
RoomId: string | undefined;
|
|
824
|
-
Name?: string;
|
|
832
|
+
Name?: string | undefined;
|
|
825
833
|
}
|
|
826
834
|
export interface UpdateRoomResponse {
|
|
827
|
-
Room?: Room;
|
|
835
|
+
Room?: Room | undefined;
|
|
828
836
|
}
|
|
829
837
|
export interface UpdateRoomMembershipRequest {
|
|
830
838
|
AccountId: string | undefined;
|
|
831
839
|
RoomId: string | undefined;
|
|
832
840
|
MemberId: string | undefined;
|
|
833
|
-
Role?: RoomMembershipRole;
|
|
841
|
+
Role?: RoomMembershipRole | undefined;
|
|
834
842
|
}
|
|
835
843
|
export interface UpdateRoomMembershipResponse {
|
|
836
|
-
RoomMembership?: RoomMembership;
|
|
844
|
+
RoomMembership?: RoomMembership | undefined;
|
|
837
845
|
}
|
|
838
846
|
export interface UpdateSipMediaApplicationRequest {
|
|
839
847
|
SipMediaApplicationId: string | undefined;
|
|
840
|
-
Name?: string;
|
|
841
|
-
Endpoints?: SipMediaApplicationEndpoint[];
|
|
848
|
+
Name?: string | undefined;
|
|
849
|
+
Endpoints?: SipMediaApplicationEndpoint[] | undefined;
|
|
842
850
|
}
|
|
843
851
|
export interface UpdateSipMediaApplicationResponse {
|
|
844
|
-
SipMediaApplication?: SipMediaApplication;
|
|
852
|
+
SipMediaApplication?: SipMediaApplication | undefined;
|
|
845
853
|
}
|
|
846
854
|
export interface UpdateSipMediaApplicationCallRequest {
|
|
847
855
|
SipMediaApplicationId: string | undefined;
|
|
@@ -849,26 +857,26 @@ export interface UpdateSipMediaApplicationCallRequest {
|
|
|
849
857
|
Arguments: Record<string, string> | undefined;
|
|
850
858
|
}
|
|
851
859
|
export interface UpdateSipMediaApplicationCallResponse {
|
|
852
|
-
SipMediaApplicationCall?: SipMediaApplicationCall;
|
|
860
|
+
SipMediaApplicationCall?: SipMediaApplicationCall | undefined;
|
|
853
861
|
}
|
|
854
862
|
export interface UpdateSipRuleRequest {
|
|
855
863
|
SipRuleId: string | undefined;
|
|
856
864
|
Name: string | undefined;
|
|
857
|
-
Disabled?: boolean;
|
|
858
|
-
TargetApplications?: SipRuleTargetApplication[];
|
|
865
|
+
Disabled?: boolean | undefined;
|
|
866
|
+
TargetApplications?: SipRuleTargetApplication[] | undefined;
|
|
859
867
|
}
|
|
860
868
|
export interface UpdateSipRuleResponse {
|
|
861
|
-
SipRule?: SipRule;
|
|
869
|
+
SipRule?: SipRule | undefined;
|
|
862
870
|
}
|
|
863
871
|
export interface UpdateUserRequest {
|
|
864
872
|
AccountId: string | undefined;
|
|
865
873
|
UserId: string | undefined;
|
|
866
|
-
LicenseType?: License;
|
|
867
|
-
UserType?: UserType;
|
|
868
|
-
AlexaForBusinessMetadata?: AlexaForBusinessMetadata;
|
|
874
|
+
LicenseType?: License | undefined;
|
|
875
|
+
UserType?: UserType | undefined;
|
|
876
|
+
AlexaForBusinessMetadata?: AlexaForBusinessMetadata | undefined;
|
|
869
877
|
}
|
|
870
878
|
export interface UpdateUserResponse {
|
|
871
|
-
User?: User;
|
|
879
|
+
User?: User | undefined;
|
|
872
880
|
}
|
|
873
881
|
export interface UpdateUserSettingsRequest {
|
|
874
882
|
AccountId: string | undefined;
|
|
@@ -881,7 +889,7 @@ export interface UpdateVoiceConnectorRequest {
|
|
|
881
889
|
RequireEncryption: boolean | undefined;
|
|
882
890
|
}
|
|
883
891
|
export interface UpdateVoiceConnectorResponse {
|
|
884
|
-
VoiceConnector?: VoiceConnector;
|
|
892
|
+
VoiceConnector?: VoiceConnector | undefined;
|
|
885
893
|
}
|
|
886
894
|
export interface UpdateVoiceConnectorGroupRequest {
|
|
887
895
|
VoiceConnectorGroupId: string | undefined;
|
|
@@ -889,7 +897,7 @@ export interface UpdateVoiceConnectorGroupRequest {
|
|
|
889
897
|
VoiceConnectorItems: VoiceConnectorItem[] | undefined;
|
|
890
898
|
}
|
|
891
899
|
export interface UpdateVoiceConnectorGroupResponse {
|
|
892
|
-
VoiceConnectorGroup?: VoiceConnectorGroup;
|
|
900
|
+
VoiceConnectorGroup?: VoiceConnectorGroup | undefined;
|
|
893
901
|
}
|
|
894
902
|
export interface ValidateE911AddressRequest {
|
|
895
903
|
AwsAccountId: string | undefined;
|
|
@@ -901,10 +909,10 @@ export interface ValidateE911AddressRequest {
|
|
|
901
909
|
PostalCode: string | undefined;
|
|
902
910
|
}
|
|
903
911
|
export interface ValidateE911AddressResponse {
|
|
904
|
-
ValidationResult?: number;
|
|
905
|
-
AddressExternalId?: string;
|
|
906
|
-
Address?: Address;
|
|
907
|
-
CandidateAddressList?: CandidateAddress[];
|
|
912
|
+
ValidationResult?: number | undefined;
|
|
913
|
+
AddressExternalId?: string | undefined;
|
|
914
|
+
Address?: Address | undefined;
|
|
915
|
+
CandidateAddressList?: CandidateAddress[] | undefined;
|
|
908
916
|
}
|
|
909
917
|
export declare const GetRoomResponseFilterSensitiveLog: (
|
|
910
918
|
obj: GetRoomResponse
|