aws-sdk-chimesdkvoice 1.16.0 → 1.18.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-chimesdkvoice/client.rb +70 -46
- data/lib/aws-sdk-chimesdkvoice/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-chimesdkvoice.rb +1 -1
- data/sig/client.rbs +1158 -0
- data/sig/errors.rbs +40 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +1371 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
data/sig/types.rbs
ADDED
@@ -0,0 +1,1371 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws::ChimeSDKVoice
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AccessDeniedException < Aws::EmptyStructure
|
12
|
+
end
|
13
|
+
|
14
|
+
class Address
|
15
|
+
attr_accessor street_name: ::String
|
16
|
+
attr_accessor street_suffix: ::String
|
17
|
+
attr_accessor post_directional: ::String
|
18
|
+
attr_accessor pre_directional: ::String
|
19
|
+
attr_accessor street_number: ::String
|
20
|
+
attr_accessor city: ::String
|
21
|
+
attr_accessor state: ::String
|
22
|
+
attr_accessor postal_code: ::String
|
23
|
+
attr_accessor postal_code_plus_4: ::String
|
24
|
+
attr_accessor country: ::String
|
25
|
+
SENSITIVE: [:street_name, :street_suffix, :post_directional, :pre_directional, :street_number, :city, :state, :postal_code, :postal_code_plus_4, :country]
|
26
|
+
end
|
27
|
+
|
28
|
+
class AssociatePhoneNumbersWithVoiceConnectorGroupRequest
|
29
|
+
attr_accessor voice_connector_group_id: ::String
|
30
|
+
attr_accessor e164_phone_numbers: ::Array[::String]
|
31
|
+
attr_accessor force_associate: bool
|
32
|
+
SENSITIVE: []
|
33
|
+
end
|
34
|
+
|
35
|
+
class AssociatePhoneNumbersWithVoiceConnectorGroupResponse
|
36
|
+
attr_accessor phone_number_errors: ::Array[Types::PhoneNumberError]
|
37
|
+
SENSITIVE: []
|
38
|
+
end
|
39
|
+
|
40
|
+
class AssociatePhoneNumbersWithVoiceConnectorRequest
|
41
|
+
attr_accessor voice_connector_id: ::String
|
42
|
+
attr_accessor e164_phone_numbers: ::Array[::String]
|
43
|
+
attr_accessor force_associate: bool
|
44
|
+
SENSITIVE: []
|
45
|
+
end
|
46
|
+
|
47
|
+
class AssociatePhoneNumbersWithVoiceConnectorResponse
|
48
|
+
attr_accessor phone_number_errors: ::Array[Types::PhoneNumberError]
|
49
|
+
SENSITIVE: []
|
50
|
+
end
|
51
|
+
|
52
|
+
class BadRequestException < Aws::EmptyStructure
|
53
|
+
end
|
54
|
+
|
55
|
+
class BatchDeletePhoneNumberRequest
|
56
|
+
attr_accessor phone_number_ids: ::Array[::String]
|
57
|
+
SENSITIVE: []
|
58
|
+
end
|
59
|
+
|
60
|
+
class BatchDeletePhoneNumberResponse
|
61
|
+
attr_accessor phone_number_errors: ::Array[Types::PhoneNumberError]
|
62
|
+
SENSITIVE: []
|
63
|
+
end
|
64
|
+
|
65
|
+
class BatchUpdatePhoneNumberRequest
|
66
|
+
attr_accessor update_phone_number_request_items: ::Array[Types::UpdatePhoneNumberRequestItem]
|
67
|
+
SENSITIVE: []
|
68
|
+
end
|
69
|
+
|
70
|
+
class BatchUpdatePhoneNumberResponse
|
71
|
+
attr_accessor phone_number_errors: ::Array[Types::PhoneNumberError]
|
72
|
+
SENSITIVE: []
|
73
|
+
end
|
74
|
+
|
75
|
+
class CallDetails
|
76
|
+
attr_accessor voice_connector_id: ::String
|
77
|
+
attr_accessor transaction_id: ::String
|
78
|
+
attr_accessor is_caller: bool
|
79
|
+
SENSITIVE: []
|
80
|
+
end
|
81
|
+
|
82
|
+
class CandidateAddress
|
83
|
+
attr_accessor street_info: ::String
|
84
|
+
attr_accessor street_number: ::String
|
85
|
+
attr_accessor city: ::String
|
86
|
+
attr_accessor state: ::String
|
87
|
+
attr_accessor postal_code: ::String
|
88
|
+
attr_accessor postal_code_plus_4: ::String
|
89
|
+
attr_accessor country: ::String
|
90
|
+
SENSITIVE: [:street_info, :street_number, :city, :state, :postal_code, :postal_code_plus_4, :country]
|
91
|
+
end
|
92
|
+
|
93
|
+
class ConflictException < Aws::EmptyStructure
|
94
|
+
end
|
95
|
+
|
96
|
+
class CreatePhoneNumberOrderRequest
|
97
|
+
attr_accessor product_type: ("VoiceConnector" | "SipMediaApplicationDialIn")
|
98
|
+
attr_accessor e164_phone_numbers: ::Array[::String]
|
99
|
+
attr_accessor name: ::String
|
100
|
+
SENSITIVE: [:name]
|
101
|
+
end
|
102
|
+
|
103
|
+
class CreatePhoneNumberOrderResponse
|
104
|
+
attr_accessor phone_number_order: Types::PhoneNumberOrder
|
105
|
+
SENSITIVE: []
|
106
|
+
end
|
107
|
+
|
108
|
+
class CreateProxySessionRequest
|
109
|
+
attr_accessor voice_connector_id: ::String
|
110
|
+
attr_accessor participant_phone_numbers: ::Array[::String]
|
111
|
+
attr_accessor name: ::String
|
112
|
+
attr_accessor expiry_minutes: ::Integer
|
113
|
+
attr_accessor capabilities: ::Array[("Voice" | "SMS")]
|
114
|
+
attr_accessor number_selection_behavior: ("PreferSticky" | "AvoidSticky")
|
115
|
+
attr_accessor geo_match_level: ("Country" | "AreaCode")
|
116
|
+
attr_accessor geo_match_params: Types::GeoMatchParams
|
117
|
+
SENSITIVE: [:name]
|
118
|
+
end
|
119
|
+
|
120
|
+
class CreateProxySessionResponse
|
121
|
+
attr_accessor proxy_session: Types::ProxySession
|
122
|
+
SENSITIVE: []
|
123
|
+
end
|
124
|
+
|
125
|
+
class CreateSipMediaApplicationCallRequest
|
126
|
+
attr_accessor from_phone_number: ::String
|
127
|
+
attr_accessor to_phone_number: ::String
|
128
|
+
attr_accessor sip_media_application_id: ::String
|
129
|
+
attr_accessor sip_headers: ::Hash[::String, ::String]
|
130
|
+
attr_accessor arguments_map: ::Hash[::String, ::String]
|
131
|
+
SENSITIVE: [:from_phone_number, :to_phone_number]
|
132
|
+
end
|
133
|
+
|
134
|
+
class CreateSipMediaApplicationCallResponse
|
135
|
+
attr_accessor sip_media_application_call: Types::SipMediaApplicationCall
|
136
|
+
SENSITIVE: []
|
137
|
+
end
|
138
|
+
|
139
|
+
class CreateSipMediaApplicationRequest
|
140
|
+
attr_accessor aws_region: ::String
|
141
|
+
attr_accessor name: ::String
|
142
|
+
attr_accessor endpoints: ::Array[Types::SipMediaApplicationEndpoint]
|
143
|
+
attr_accessor tags: ::Array[Types::Tag]
|
144
|
+
SENSITIVE: []
|
145
|
+
end
|
146
|
+
|
147
|
+
class CreateSipMediaApplicationResponse
|
148
|
+
attr_accessor sip_media_application: Types::SipMediaApplication
|
149
|
+
SENSITIVE: []
|
150
|
+
end
|
151
|
+
|
152
|
+
class CreateSipRuleRequest
|
153
|
+
attr_accessor name: ::String
|
154
|
+
attr_accessor trigger_type: ("ToPhoneNumber" | "RequestUriHostname")
|
155
|
+
attr_accessor trigger_value: ::String
|
156
|
+
attr_accessor disabled: bool
|
157
|
+
attr_accessor target_applications: ::Array[Types::SipRuleTargetApplication]
|
158
|
+
SENSITIVE: []
|
159
|
+
end
|
160
|
+
|
161
|
+
class CreateSipRuleResponse
|
162
|
+
attr_accessor sip_rule: Types::SipRule
|
163
|
+
SENSITIVE: []
|
164
|
+
end
|
165
|
+
|
166
|
+
class CreateVoiceConnectorGroupRequest
|
167
|
+
attr_accessor name: ::String
|
168
|
+
attr_accessor voice_connector_items: ::Array[Types::VoiceConnectorItem]
|
169
|
+
SENSITIVE: []
|
170
|
+
end
|
171
|
+
|
172
|
+
class CreateVoiceConnectorGroupResponse
|
173
|
+
attr_accessor voice_connector_group: Types::VoiceConnectorGroup
|
174
|
+
SENSITIVE: []
|
175
|
+
end
|
176
|
+
|
177
|
+
class CreateVoiceConnectorRequest
|
178
|
+
attr_accessor name: ::String
|
179
|
+
attr_accessor aws_region: ("us-east-1" | "us-west-2" | "ca-central-1" | "eu-central-1" | "eu-west-1" | "eu-west-2" | "ap-northeast-2" | "ap-northeast-1" | "ap-southeast-1" | "ap-southeast-2")
|
180
|
+
attr_accessor require_encryption: bool
|
181
|
+
attr_accessor tags: ::Array[Types::Tag]
|
182
|
+
SENSITIVE: []
|
183
|
+
end
|
184
|
+
|
185
|
+
class CreateVoiceConnectorResponse
|
186
|
+
attr_accessor voice_connector: Types::VoiceConnector
|
187
|
+
SENSITIVE: []
|
188
|
+
end
|
189
|
+
|
190
|
+
class CreateVoiceProfileDomainRequest
|
191
|
+
attr_accessor name: ::String
|
192
|
+
attr_accessor description: ::String
|
193
|
+
attr_accessor server_side_encryption_configuration: Types::ServerSideEncryptionConfiguration
|
194
|
+
attr_accessor client_request_token: ::String
|
195
|
+
attr_accessor tags: ::Array[Types::Tag]
|
196
|
+
SENSITIVE: []
|
197
|
+
end
|
198
|
+
|
199
|
+
class CreateVoiceProfileDomainResponse
|
200
|
+
attr_accessor voice_profile_domain: Types::VoiceProfileDomain
|
201
|
+
SENSITIVE: []
|
202
|
+
end
|
203
|
+
|
204
|
+
class CreateVoiceProfileRequest
|
205
|
+
attr_accessor speaker_search_task_id: ::String
|
206
|
+
SENSITIVE: []
|
207
|
+
end
|
208
|
+
|
209
|
+
class CreateVoiceProfileResponse
|
210
|
+
attr_accessor voice_profile: Types::VoiceProfile
|
211
|
+
SENSITIVE: []
|
212
|
+
end
|
213
|
+
|
214
|
+
class Credential
|
215
|
+
attr_accessor username: ::String
|
216
|
+
attr_accessor password: ::String
|
217
|
+
SENSITIVE: [:username, :password]
|
218
|
+
end
|
219
|
+
|
220
|
+
class DNISEmergencyCallingConfiguration
|
221
|
+
attr_accessor emergency_phone_number: ::String
|
222
|
+
attr_accessor test_phone_number: ::String
|
223
|
+
attr_accessor calling_country: ::String
|
224
|
+
SENSITIVE: [:emergency_phone_number, :test_phone_number]
|
225
|
+
end
|
226
|
+
|
227
|
+
class DeletePhoneNumberRequest
|
228
|
+
attr_accessor phone_number_id: ::String
|
229
|
+
SENSITIVE: [:phone_number_id]
|
230
|
+
end
|
231
|
+
|
232
|
+
class DeleteProxySessionRequest
|
233
|
+
attr_accessor voice_connector_id: ::String
|
234
|
+
attr_accessor proxy_session_id: ::String
|
235
|
+
SENSITIVE: []
|
236
|
+
end
|
237
|
+
|
238
|
+
class DeleteSipMediaApplicationRequest
|
239
|
+
attr_accessor sip_media_application_id: ::String
|
240
|
+
SENSITIVE: []
|
241
|
+
end
|
242
|
+
|
243
|
+
class DeleteSipRuleRequest
|
244
|
+
attr_accessor sip_rule_id: ::String
|
245
|
+
SENSITIVE: []
|
246
|
+
end
|
247
|
+
|
248
|
+
class DeleteVoiceConnectorEmergencyCallingConfigurationRequest
|
249
|
+
attr_accessor voice_connector_id: ::String
|
250
|
+
SENSITIVE: []
|
251
|
+
end
|
252
|
+
|
253
|
+
class DeleteVoiceConnectorGroupRequest
|
254
|
+
attr_accessor voice_connector_group_id: ::String
|
255
|
+
SENSITIVE: []
|
256
|
+
end
|
257
|
+
|
258
|
+
class DeleteVoiceConnectorOriginationRequest
|
259
|
+
attr_accessor voice_connector_id: ::String
|
260
|
+
SENSITIVE: []
|
261
|
+
end
|
262
|
+
|
263
|
+
class DeleteVoiceConnectorProxyRequest
|
264
|
+
attr_accessor voice_connector_id: ::String
|
265
|
+
SENSITIVE: []
|
266
|
+
end
|
267
|
+
|
268
|
+
class DeleteVoiceConnectorRequest
|
269
|
+
attr_accessor voice_connector_id: ::String
|
270
|
+
SENSITIVE: []
|
271
|
+
end
|
272
|
+
|
273
|
+
class DeleteVoiceConnectorStreamingConfigurationRequest
|
274
|
+
attr_accessor voice_connector_id: ::String
|
275
|
+
SENSITIVE: []
|
276
|
+
end
|
277
|
+
|
278
|
+
class DeleteVoiceConnectorTerminationCredentialsRequest
|
279
|
+
attr_accessor voice_connector_id: ::String
|
280
|
+
attr_accessor usernames: ::Array[::String]
|
281
|
+
SENSITIVE: []
|
282
|
+
end
|
283
|
+
|
284
|
+
class DeleteVoiceConnectorTerminationRequest
|
285
|
+
attr_accessor voice_connector_id: ::String
|
286
|
+
SENSITIVE: []
|
287
|
+
end
|
288
|
+
|
289
|
+
class DeleteVoiceProfileDomainRequest
|
290
|
+
attr_accessor voice_profile_domain_id: ::String
|
291
|
+
SENSITIVE: []
|
292
|
+
end
|
293
|
+
|
294
|
+
class DeleteVoiceProfileRequest
|
295
|
+
attr_accessor voice_profile_id: ::String
|
296
|
+
SENSITIVE: []
|
297
|
+
end
|
298
|
+
|
299
|
+
class DisassociatePhoneNumbersFromVoiceConnectorGroupRequest
|
300
|
+
attr_accessor voice_connector_group_id: ::String
|
301
|
+
attr_accessor e164_phone_numbers: ::Array[::String]
|
302
|
+
SENSITIVE: []
|
303
|
+
end
|
304
|
+
|
305
|
+
class DisassociatePhoneNumbersFromVoiceConnectorGroupResponse
|
306
|
+
attr_accessor phone_number_errors: ::Array[Types::PhoneNumberError]
|
307
|
+
SENSITIVE: []
|
308
|
+
end
|
309
|
+
|
310
|
+
class DisassociatePhoneNumbersFromVoiceConnectorRequest
|
311
|
+
attr_accessor voice_connector_id: ::String
|
312
|
+
attr_accessor e164_phone_numbers: ::Array[::String]
|
313
|
+
SENSITIVE: []
|
314
|
+
end
|
315
|
+
|
316
|
+
class DisassociatePhoneNumbersFromVoiceConnectorResponse
|
317
|
+
attr_accessor phone_number_errors: ::Array[Types::PhoneNumberError]
|
318
|
+
SENSITIVE: []
|
319
|
+
end
|
320
|
+
|
321
|
+
class EmergencyCallingConfiguration
|
322
|
+
attr_accessor dnis: ::Array[Types::DNISEmergencyCallingConfiguration]
|
323
|
+
SENSITIVE: []
|
324
|
+
end
|
325
|
+
|
326
|
+
class ForbiddenException < Aws::EmptyStructure
|
327
|
+
end
|
328
|
+
|
329
|
+
class GeoMatchParams
|
330
|
+
attr_accessor country: ::String
|
331
|
+
attr_accessor area_code: ::String
|
332
|
+
SENSITIVE: []
|
333
|
+
end
|
334
|
+
|
335
|
+
class GetGlobalSettingsResponse
|
336
|
+
attr_accessor voice_connector: Types::VoiceConnectorSettings
|
337
|
+
SENSITIVE: []
|
338
|
+
end
|
339
|
+
|
340
|
+
class GetPhoneNumberOrderRequest
|
341
|
+
attr_accessor phone_number_order_id: ::String
|
342
|
+
SENSITIVE: []
|
343
|
+
end
|
344
|
+
|
345
|
+
class GetPhoneNumberOrderResponse
|
346
|
+
attr_accessor phone_number_order: Types::PhoneNumberOrder
|
347
|
+
SENSITIVE: []
|
348
|
+
end
|
349
|
+
|
350
|
+
class GetPhoneNumberRequest
|
351
|
+
attr_accessor phone_number_id: ::String
|
352
|
+
SENSITIVE: [:phone_number_id]
|
353
|
+
end
|
354
|
+
|
355
|
+
class GetPhoneNumberResponse
|
356
|
+
attr_accessor phone_number: Types::PhoneNumber
|
357
|
+
SENSITIVE: []
|
358
|
+
end
|
359
|
+
|
360
|
+
class GetPhoneNumberSettingsResponse
|
361
|
+
attr_accessor calling_name: ::String
|
362
|
+
attr_accessor calling_name_updated_timestamp: ::Time
|
363
|
+
SENSITIVE: [:calling_name]
|
364
|
+
end
|
365
|
+
|
366
|
+
class GetProxySessionRequest
|
367
|
+
attr_accessor voice_connector_id: ::String
|
368
|
+
attr_accessor proxy_session_id: ::String
|
369
|
+
SENSITIVE: []
|
370
|
+
end
|
371
|
+
|
372
|
+
class GetProxySessionResponse
|
373
|
+
attr_accessor proxy_session: Types::ProxySession
|
374
|
+
SENSITIVE: []
|
375
|
+
end
|
376
|
+
|
377
|
+
class GetSipMediaApplicationAlexaSkillConfigurationRequest
|
378
|
+
attr_accessor sip_media_application_id: ::String
|
379
|
+
SENSITIVE: []
|
380
|
+
end
|
381
|
+
|
382
|
+
class GetSipMediaApplicationAlexaSkillConfigurationResponse
|
383
|
+
attr_accessor sip_media_application_alexa_skill_configuration: Types::SipMediaApplicationAlexaSkillConfiguration
|
384
|
+
SENSITIVE: []
|
385
|
+
end
|
386
|
+
|
387
|
+
class GetSipMediaApplicationLoggingConfigurationRequest
|
388
|
+
attr_accessor sip_media_application_id: ::String
|
389
|
+
SENSITIVE: []
|
390
|
+
end
|
391
|
+
|
392
|
+
class GetSipMediaApplicationLoggingConfigurationResponse
|
393
|
+
attr_accessor sip_media_application_logging_configuration: Types::SipMediaApplicationLoggingConfiguration
|
394
|
+
SENSITIVE: []
|
395
|
+
end
|
396
|
+
|
397
|
+
class GetSipMediaApplicationRequest
|
398
|
+
attr_accessor sip_media_application_id: ::String
|
399
|
+
SENSITIVE: []
|
400
|
+
end
|
401
|
+
|
402
|
+
class GetSipMediaApplicationResponse
|
403
|
+
attr_accessor sip_media_application: Types::SipMediaApplication
|
404
|
+
SENSITIVE: []
|
405
|
+
end
|
406
|
+
|
407
|
+
class GetSipRuleRequest
|
408
|
+
attr_accessor sip_rule_id: ::String
|
409
|
+
SENSITIVE: []
|
410
|
+
end
|
411
|
+
|
412
|
+
class GetSipRuleResponse
|
413
|
+
attr_accessor sip_rule: Types::SipRule
|
414
|
+
SENSITIVE: []
|
415
|
+
end
|
416
|
+
|
417
|
+
class GetSpeakerSearchTaskRequest
|
418
|
+
attr_accessor voice_connector_id: ::String
|
419
|
+
attr_accessor speaker_search_task_id: ::String
|
420
|
+
SENSITIVE: []
|
421
|
+
end
|
422
|
+
|
423
|
+
class GetSpeakerSearchTaskResponse
|
424
|
+
attr_accessor speaker_search_task: Types::SpeakerSearchTask
|
425
|
+
SENSITIVE: []
|
426
|
+
end
|
427
|
+
|
428
|
+
class GetVoiceConnectorEmergencyCallingConfigurationRequest
|
429
|
+
attr_accessor voice_connector_id: ::String
|
430
|
+
SENSITIVE: []
|
431
|
+
end
|
432
|
+
|
433
|
+
class GetVoiceConnectorEmergencyCallingConfigurationResponse
|
434
|
+
attr_accessor emergency_calling_configuration: Types::EmergencyCallingConfiguration
|
435
|
+
SENSITIVE: []
|
436
|
+
end
|
437
|
+
|
438
|
+
class GetVoiceConnectorGroupRequest
|
439
|
+
attr_accessor voice_connector_group_id: ::String
|
440
|
+
SENSITIVE: []
|
441
|
+
end
|
442
|
+
|
443
|
+
class GetVoiceConnectorGroupResponse
|
444
|
+
attr_accessor voice_connector_group: Types::VoiceConnectorGroup
|
445
|
+
SENSITIVE: []
|
446
|
+
end
|
447
|
+
|
448
|
+
class GetVoiceConnectorLoggingConfigurationRequest
|
449
|
+
attr_accessor voice_connector_id: ::String
|
450
|
+
SENSITIVE: []
|
451
|
+
end
|
452
|
+
|
453
|
+
class GetVoiceConnectorLoggingConfigurationResponse
|
454
|
+
attr_accessor logging_configuration: Types::LoggingConfiguration
|
455
|
+
SENSITIVE: []
|
456
|
+
end
|
457
|
+
|
458
|
+
class GetVoiceConnectorOriginationRequest
|
459
|
+
attr_accessor voice_connector_id: ::String
|
460
|
+
SENSITIVE: []
|
461
|
+
end
|
462
|
+
|
463
|
+
class GetVoiceConnectorOriginationResponse
|
464
|
+
attr_accessor origination: Types::Origination
|
465
|
+
SENSITIVE: []
|
466
|
+
end
|
467
|
+
|
468
|
+
class GetVoiceConnectorProxyRequest
|
469
|
+
attr_accessor voice_connector_id: ::String
|
470
|
+
SENSITIVE: []
|
471
|
+
end
|
472
|
+
|
473
|
+
class GetVoiceConnectorProxyResponse
|
474
|
+
attr_accessor proxy: Types::Proxy
|
475
|
+
SENSITIVE: []
|
476
|
+
end
|
477
|
+
|
478
|
+
class GetVoiceConnectorRequest
|
479
|
+
attr_accessor voice_connector_id: ::String
|
480
|
+
SENSITIVE: []
|
481
|
+
end
|
482
|
+
|
483
|
+
class GetVoiceConnectorResponse
|
484
|
+
attr_accessor voice_connector: Types::VoiceConnector
|
485
|
+
SENSITIVE: []
|
486
|
+
end
|
487
|
+
|
488
|
+
class GetVoiceConnectorStreamingConfigurationRequest
|
489
|
+
attr_accessor voice_connector_id: ::String
|
490
|
+
SENSITIVE: []
|
491
|
+
end
|
492
|
+
|
493
|
+
class GetVoiceConnectorStreamingConfigurationResponse
|
494
|
+
attr_accessor streaming_configuration: Types::StreamingConfiguration
|
495
|
+
SENSITIVE: []
|
496
|
+
end
|
497
|
+
|
498
|
+
class GetVoiceConnectorTerminationHealthRequest
|
499
|
+
attr_accessor voice_connector_id: ::String
|
500
|
+
SENSITIVE: []
|
501
|
+
end
|
502
|
+
|
503
|
+
class GetVoiceConnectorTerminationHealthResponse
|
504
|
+
attr_accessor termination_health: Types::TerminationHealth
|
505
|
+
SENSITIVE: []
|
506
|
+
end
|
507
|
+
|
508
|
+
class GetVoiceConnectorTerminationRequest
|
509
|
+
attr_accessor voice_connector_id: ::String
|
510
|
+
SENSITIVE: []
|
511
|
+
end
|
512
|
+
|
513
|
+
class GetVoiceConnectorTerminationResponse
|
514
|
+
attr_accessor termination: Types::Termination
|
515
|
+
SENSITIVE: []
|
516
|
+
end
|
517
|
+
|
518
|
+
class GetVoiceProfileDomainRequest
|
519
|
+
attr_accessor voice_profile_domain_id: ::String
|
520
|
+
SENSITIVE: []
|
521
|
+
end
|
522
|
+
|
523
|
+
class GetVoiceProfileDomainResponse
|
524
|
+
attr_accessor voice_profile_domain: Types::VoiceProfileDomain
|
525
|
+
SENSITIVE: []
|
526
|
+
end
|
527
|
+
|
528
|
+
class GetVoiceProfileRequest
|
529
|
+
attr_accessor voice_profile_id: ::String
|
530
|
+
SENSITIVE: []
|
531
|
+
end
|
532
|
+
|
533
|
+
class GetVoiceProfileResponse
|
534
|
+
attr_accessor voice_profile: Types::VoiceProfile
|
535
|
+
SENSITIVE: []
|
536
|
+
end
|
537
|
+
|
538
|
+
class GetVoiceToneAnalysisTaskRequest
|
539
|
+
attr_accessor voice_connector_id: ::String
|
540
|
+
attr_accessor voice_tone_analysis_task_id: ::String
|
541
|
+
attr_accessor is_caller: bool
|
542
|
+
SENSITIVE: []
|
543
|
+
end
|
544
|
+
|
545
|
+
class GetVoiceToneAnalysisTaskResponse
|
546
|
+
attr_accessor voice_tone_analysis_task: Types::VoiceToneAnalysisTask
|
547
|
+
SENSITIVE: []
|
548
|
+
end
|
549
|
+
|
550
|
+
class GoneException < Aws::EmptyStructure
|
551
|
+
end
|
552
|
+
|
553
|
+
class ListAvailableVoiceConnectorRegionsResponse
|
554
|
+
attr_accessor voice_connector_regions: ::Array[("us-east-1" | "us-west-2" | "ca-central-1" | "eu-central-1" | "eu-west-1" | "eu-west-2" | "ap-northeast-2" | "ap-northeast-1" | "ap-southeast-1" | "ap-southeast-2")]
|
555
|
+
SENSITIVE: []
|
556
|
+
end
|
557
|
+
|
558
|
+
class ListPhoneNumberOrdersRequest
|
559
|
+
attr_accessor next_token: ::String
|
560
|
+
attr_accessor max_results: ::Integer
|
561
|
+
SENSITIVE: []
|
562
|
+
end
|
563
|
+
|
564
|
+
class ListPhoneNumberOrdersResponse
|
565
|
+
attr_accessor phone_number_orders: ::Array[Types::PhoneNumberOrder]
|
566
|
+
attr_accessor next_token: ::String
|
567
|
+
SENSITIVE: []
|
568
|
+
end
|
569
|
+
|
570
|
+
class ListPhoneNumbersRequest
|
571
|
+
attr_accessor status: ::String
|
572
|
+
attr_accessor product_type: ("VoiceConnector" | "SipMediaApplicationDialIn")
|
573
|
+
attr_accessor filter_name: ("VoiceConnectorId" | "VoiceConnectorGroupId" | "SipRuleId")
|
574
|
+
attr_accessor filter_value: ::String
|
575
|
+
attr_accessor max_results: ::Integer
|
576
|
+
attr_accessor next_token: ::String
|
577
|
+
SENSITIVE: []
|
578
|
+
end
|
579
|
+
|
580
|
+
class ListPhoneNumbersResponse
|
581
|
+
attr_accessor phone_numbers: ::Array[Types::PhoneNumber]
|
582
|
+
attr_accessor next_token: ::String
|
583
|
+
SENSITIVE: []
|
584
|
+
end
|
585
|
+
|
586
|
+
class ListProxySessionsRequest
|
587
|
+
attr_accessor voice_connector_id: ::String
|
588
|
+
attr_accessor status: ("Open" | "InProgress" | "Closed")
|
589
|
+
attr_accessor next_token: ::String
|
590
|
+
attr_accessor max_results: ::Integer
|
591
|
+
SENSITIVE: []
|
592
|
+
end
|
593
|
+
|
594
|
+
class ListProxySessionsResponse
|
595
|
+
attr_accessor proxy_sessions: ::Array[Types::ProxySession]
|
596
|
+
attr_accessor next_token: ::String
|
597
|
+
SENSITIVE: []
|
598
|
+
end
|
599
|
+
|
600
|
+
class ListSipMediaApplicationsRequest
|
601
|
+
attr_accessor max_results: ::Integer
|
602
|
+
attr_accessor next_token: ::String
|
603
|
+
SENSITIVE: []
|
604
|
+
end
|
605
|
+
|
606
|
+
class ListSipMediaApplicationsResponse
|
607
|
+
attr_accessor sip_media_applications: ::Array[Types::SipMediaApplication]
|
608
|
+
attr_accessor next_token: ::String
|
609
|
+
SENSITIVE: []
|
610
|
+
end
|
611
|
+
|
612
|
+
class ListSipRulesRequest
|
613
|
+
attr_accessor sip_media_application_id: ::String
|
614
|
+
attr_accessor max_results: ::Integer
|
615
|
+
attr_accessor next_token: ::String
|
616
|
+
SENSITIVE: []
|
617
|
+
end
|
618
|
+
|
619
|
+
class ListSipRulesResponse
|
620
|
+
attr_accessor sip_rules: ::Array[Types::SipRule]
|
621
|
+
attr_accessor next_token: ::String
|
622
|
+
SENSITIVE: []
|
623
|
+
end
|
624
|
+
|
625
|
+
class ListSupportedPhoneNumberCountriesRequest
|
626
|
+
attr_accessor product_type: ("VoiceConnector" | "SipMediaApplicationDialIn")
|
627
|
+
SENSITIVE: []
|
628
|
+
end
|
629
|
+
|
630
|
+
class ListSupportedPhoneNumberCountriesResponse
|
631
|
+
attr_accessor phone_number_countries: ::Array[Types::PhoneNumberCountry]
|
632
|
+
SENSITIVE: []
|
633
|
+
end
|
634
|
+
|
635
|
+
class ListTagsForResourceRequest
|
636
|
+
attr_accessor resource_arn: ::String
|
637
|
+
SENSITIVE: [:resource_arn]
|
638
|
+
end
|
639
|
+
|
640
|
+
class ListTagsForResourceResponse
|
641
|
+
attr_accessor tags: ::Array[Types::Tag]
|
642
|
+
SENSITIVE: []
|
643
|
+
end
|
644
|
+
|
645
|
+
class ListVoiceConnectorGroupsRequest
|
646
|
+
attr_accessor next_token: ::String
|
647
|
+
attr_accessor max_results: ::Integer
|
648
|
+
SENSITIVE: []
|
649
|
+
end
|
650
|
+
|
651
|
+
class ListVoiceConnectorGroupsResponse
|
652
|
+
attr_accessor voice_connector_groups: ::Array[Types::VoiceConnectorGroup]
|
653
|
+
attr_accessor next_token: ::String
|
654
|
+
SENSITIVE: []
|
655
|
+
end
|
656
|
+
|
657
|
+
class ListVoiceConnectorTerminationCredentialsRequest
|
658
|
+
attr_accessor voice_connector_id: ::String
|
659
|
+
SENSITIVE: []
|
660
|
+
end
|
661
|
+
|
662
|
+
class ListVoiceConnectorTerminationCredentialsResponse
|
663
|
+
attr_accessor usernames: ::Array[::String]
|
664
|
+
SENSITIVE: []
|
665
|
+
end
|
666
|
+
|
667
|
+
class ListVoiceConnectorsRequest
|
668
|
+
attr_accessor next_token: ::String
|
669
|
+
attr_accessor max_results: ::Integer
|
670
|
+
SENSITIVE: []
|
671
|
+
end
|
672
|
+
|
673
|
+
class ListVoiceConnectorsResponse
|
674
|
+
attr_accessor voice_connectors: ::Array[Types::VoiceConnector]
|
675
|
+
attr_accessor next_token: ::String
|
676
|
+
SENSITIVE: []
|
677
|
+
end
|
678
|
+
|
679
|
+
class ListVoiceProfileDomainsRequest
|
680
|
+
attr_accessor next_token: ::String
|
681
|
+
attr_accessor max_results: ::Integer
|
682
|
+
SENSITIVE: []
|
683
|
+
end
|
684
|
+
|
685
|
+
class ListVoiceProfileDomainsResponse
|
686
|
+
attr_accessor voice_profile_domains: ::Array[Types::VoiceProfileDomainSummary]
|
687
|
+
attr_accessor next_token: ::String
|
688
|
+
SENSITIVE: []
|
689
|
+
end
|
690
|
+
|
691
|
+
class ListVoiceProfilesRequest
|
692
|
+
attr_accessor voice_profile_domain_id: ::String
|
693
|
+
attr_accessor next_token: ::String
|
694
|
+
attr_accessor max_results: ::Integer
|
695
|
+
SENSITIVE: []
|
696
|
+
end
|
697
|
+
|
698
|
+
class ListVoiceProfilesResponse
|
699
|
+
attr_accessor voice_profiles: ::Array[Types::VoiceProfileSummary]
|
700
|
+
attr_accessor next_token: ::String
|
701
|
+
SENSITIVE: []
|
702
|
+
end
|
703
|
+
|
704
|
+
class LoggingConfiguration
|
705
|
+
attr_accessor enable_sip_logs: bool
|
706
|
+
attr_accessor enable_media_metric_logs: bool
|
707
|
+
SENSITIVE: []
|
708
|
+
end
|
709
|
+
|
710
|
+
class MediaInsightsConfiguration
|
711
|
+
attr_accessor disabled: bool
|
712
|
+
attr_accessor configuration_arn: ::String
|
713
|
+
SENSITIVE: [:configuration_arn]
|
714
|
+
end
|
715
|
+
|
716
|
+
class NotFoundException < Aws::EmptyStructure
|
717
|
+
end
|
718
|
+
|
719
|
+
class OrderedPhoneNumber
|
720
|
+
attr_accessor e164_phone_number: ::String
|
721
|
+
attr_accessor status: ("Processing" | "Acquired" | "Failed")
|
722
|
+
SENSITIVE: [:e164_phone_number]
|
723
|
+
end
|
724
|
+
|
725
|
+
class Origination
|
726
|
+
attr_accessor routes: ::Array[Types::OriginationRoute]
|
727
|
+
attr_accessor disabled: bool
|
728
|
+
SENSITIVE: []
|
729
|
+
end
|
730
|
+
|
731
|
+
class OriginationRoute
|
732
|
+
attr_accessor host: ::String
|
733
|
+
attr_accessor port: ::Integer
|
734
|
+
attr_accessor protocol: ("TCP" | "UDP")
|
735
|
+
attr_accessor priority: ::Integer
|
736
|
+
attr_accessor weight: ::Integer
|
737
|
+
SENSITIVE: []
|
738
|
+
end
|
739
|
+
|
740
|
+
class Participant
|
741
|
+
attr_accessor phone_number: ::String
|
742
|
+
attr_accessor proxy_phone_number: ::String
|
743
|
+
SENSITIVE: [:phone_number, :proxy_phone_number]
|
744
|
+
end
|
745
|
+
|
746
|
+
class PhoneNumber
|
747
|
+
attr_accessor phone_number_id: ::String
|
748
|
+
attr_accessor e164_phone_number: ::String
|
749
|
+
attr_accessor country: ::String
|
750
|
+
attr_accessor type: ("Local" | "TollFree")
|
751
|
+
attr_accessor product_type: ("VoiceConnector" | "SipMediaApplicationDialIn")
|
752
|
+
attr_accessor status: ("Cancelled" | "PortinCancelRequested" | "PortinInProgress" | "AcquireInProgress" | "AcquireFailed" | "Unassigned" | "Assigned" | "ReleaseInProgress" | "DeleteInProgress" | "ReleaseFailed" | "DeleteFailed")
|
753
|
+
attr_accessor capabilities: Types::PhoneNumberCapabilities
|
754
|
+
attr_accessor associations: ::Array[Types::PhoneNumberAssociation]
|
755
|
+
attr_accessor calling_name: ::String
|
756
|
+
attr_accessor calling_name_status: ("Unassigned" | "UpdateInProgress" | "UpdateSucceeded" | "UpdateFailed")
|
757
|
+
attr_accessor created_timestamp: ::Time
|
758
|
+
attr_accessor updated_timestamp: ::Time
|
759
|
+
attr_accessor deletion_timestamp: ::Time
|
760
|
+
attr_accessor order_id: ::String
|
761
|
+
attr_accessor name: ::String
|
762
|
+
SENSITIVE: [:phone_number_id, :e164_phone_number, :calling_name, :name]
|
763
|
+
end
|
764
|
+
|
765
|
+
class PhoneNumberAssociation
|
766
|
+
attr_accessor value: ::String
|
767
|
+
attr_accessor name: ("VoiceConnectorId" | "VoiceConnectorGroupId" | "SipRuleId")
|
768
|
+
attr_accessor associated_timestamp: ::Time
|
769
|
+
SENSITIVE: []
|
770
|
+
end
|
771
|
+
|
772
|
+
class PhoneNumberCapabilities
|
773
|
+
attr_accessor inbound_call: bool
|
774
|
+
attr_accessor outbound_call: bool
|
775
|
+
attr_accessor inbound_sms: bool
|
776
|
+
attr_accessor outbound_sms: bool
|
777
|
+
attr_accessor inbound_mms: bool
|
778
|
+
attr_accessor outbound_mms: bool
|
779
|
+
SENSITIVE: []
|
780
|
+
end
|
781
|
+
|
782
|
+
class PhoneNumberCountry
|
783
|
+
attr_accessor country_code: ::String
|
784
|
+
attr_accessor supported_phone_number_types: ::Array[("Local" | "TollFree")]
|
785
|
+
SENSITIVE: []
|
786
|
+
end
|
787
|
+
|
788
|
+
class PhoneNumberError
|
789
|
+
attr_accessor phone_number_id: ::String
|
790
|
+
attr_accessor error_code: ("BadRequest" | "Conflict" | "Forbidden" | "NotFound" | "PreconditionFailed" | "ResourceLimitExceeded" | "ServiceFailure" | "AccessDenied" | "ServiceUnavailable" | "Throttled" | "Throttling" | "Unauthorized" | "Unprocessable" | "VoiceConnectorGroupAssociationsExist" | "PhoneNumberAssociationsExist" | "Gone")
|
791
|
+
attr_accessor error_message: ::String
|
792
|
+
SENSITIVE: [:phone_number_id]
|
793
|
+
end
|
794
|
+
|
795
|
+
class PhoneNumberOrder
|
796
|
+
attr_accessor phone_number_order_id: ::String
|
797
|
+
attr_accessor product_type: ("VoiceConnector" | "SipMediaApplicationDialIn")
|
798
|
+
attr_accessor status: ("Processing" | "Successful" | "Failed" | "Partial" | "PendingDocuments" | "Submitted" | "FOC" | "ChangeRequested" | "Exception" | "CancelRequested" | "Cancelled")
|
799
|
+
attr_accessor order_type: ("New" | "Porting")
|
800
|
+
attr_accessor ordered_phone_numbers: ::Array[Types::OrderedPhoneNumber]
|
801
|
+
attr_accessor created_timestamp: ::Time
|
802
|
+
attr_accessor updated_timestamp: ::Time
|
803
|
+
SENSITIVE: []
|
804
|
+
end
|
805
|
+
|
806
|
+
class Proxy
|
807
|
+
attr_accessor default_session_expiry_minutes: ::Integer
|
808
|
+
attr_accessor disabled: bool
|
809
|
+
attr_accessor fall_back_phone_number: ::String
|
810
|
+
attr_accessor phone_number_countries: ::Array[::String]
|
811
|
+
SENSITIVE: [:fall_back_phone_number]
|
812
|
+
end
|
813
|
+
|
814
|
+
class ProxySession
|
815
|
+
attr_accessor voice_connector_id: ::String
|
816
|
+
attr_accessor proxy_session_id: ::String
|
817
|
+
attr_accessor name: ::String
|
818
|
+
attr_accessor status: ("Open" | "InProgress" | "Closed")
|
819
|
+
attr_accessor expiry_minutes: ::Integer
|
820
|
+
attr_accessor capabilities: ::Array[("Voice" | "SMS")]
|
821
|
+
attr_accessor created_timestamp: ::Time
|
822
|
+
attr_accessor updated_timestamp: ::Time
|
823
|
+
attr_accessor ended_timestamp: ::Time
|
824
|
+
attr_accessor participants: ::Array[Types::Participant]
|
825
|
+
attr_accessor number_selection_behavior: ("PreferSticky" | "AvoidSticky")
|
826
|
+
attr_accessor geo_match_level: ("Country" | "AreaCode")
|
827
|
+
attr_accessor geo_match_params: Types::GeoMatchParams
|
828
|
+
SENSITIVE: []
|
829
|
+
end
|
830
|
+
|
831
|
+
class PutSipMediaApplicationAlexaSkillConfigurationRequest
|
832
|
+
attr_accessor sip_media_application_id: ::String
|
833
|
+
attr_accessor sip_media_application_alexa_skill_configuration: Types::SipMediaApplicationAlexaSkillConfiguration
|
834
|
+
SENSITIVE: []
|
835
|
+
end
|
836
|
+
|
837
|
+
class PutSipMediaApplicationAlexaSkillConfigurationResponse
|
838
|
+
attr_accessor sip_media_application_alexa_skill_configuration: Types::SipMediaApplicationAlexaSkillConfiguration
|
839
|
+
SENSITIVE: []
|
840
|
+
end
|
841
|
+
|
842
|
+
class PutSipMediaApplicationLoggingConfigurationRequest
|
843
|
+
attr_accessor sip_media_application_id: ::String
|
844
|
+
attr_accessor sip_media_application_logging_configuration: Types::SipMediaApplicationLoggingConfiguration
|
845
|
+
SENSITIVE: []
|
846
|
+
end
|
847
|
+
|
848
|
+
class PutSipMediaApplicationLoggingConfigurationResponse
|
849
|
+
attr_accessor sip_media_application_logging_configuration: Types::SipMediaApplicationLoggingConfiguration
|
850
|
+
SENSITIVE: []
|
851
|
+
end
|
852
|
+
|
853
|
+
class PutVoiceConnectorEmergencyCallingConfigurationRequest
|
854
|
+
attr_accessor voice_connector_id: ::String
|
855
|
+
attr_accessor emergency_calling_configuration: Types::EmergencyCallingConfiguration
|
856
|
+
SENSITIVE: []
|
857
|
+
end
|
858
|
+
|
859
|
+
class PutVoiceConnectorEmergencyCallingConfigurationResponse
|
860
|
+
attr_accessor emergency_calling_configuration: Types::EmergencyCallingConfiguration
|
861
|
+
SENSITIVE: []
|
862
|
+
end
|
863
|
+
|
864
|
+
class PutVoiceConnectorLoggingConfigurationRequest
|
865
|
+
attr_accessor voice_connector_id: ::String
|
866
|
+
attr_accessor logging_configuration: Types::LoggingConfiguration
|
867
|
+
SENSITIVE: []
|
868
|
+
end
|
869
|
+
|
870
|
+
class PutVoiceConnectorLoggingConfigurationResponse
|
871
|
+
attr_accessor logging_configuration: Types::LoggingConfiguration
|
872
|
+
SENSITIVE: []
|
873
|
+
end
|
874
|
+
|
875
|
+
class PutVoiceConnectorOriginationRequest
|
876
|
+
attr_accessor voice_connector_id: ::String
|
877
|
+
attr_accessor origination: Types::Origination
|
878
|
+
SENSITIVE: []
|
879
|
+
end
|
880
|
+
|
881
|
+
class PutVoiceConnectorOriginationResponse
|
882
|
+
attr_accessor origination: Types::Origination
|
883
|
+
SENSITIVE: []
|
884
|
+
end
|
885
|
+
|
886
|
+
class PutVoiceConnectorProxyRequest
|
887
|
+
attr_accessor voice_connector_id: ::String
|
888
|
+
attr_accessor default_session_expiry_minutes: ::Integer
|
889
|
+
attr_accessor phone_number_pool_countries: ::Array[::String]
|
890
|
+
attr_accessor fall_back_phone_number: ::String
|
891
|
+
attr_accessor disabled: bool
|
892
|
+
SENSITIVE: [:fall_back_phone_number]
|
893
|
+
end
|
894
|
+
|
895
|
+
class PutVoiceConnectorProxyResponse
|
896
|
+
attr_accessor proxy: Types::Proxy
|
897
|
+
SENSITIVE: []
|
898
|
+
end
|
899
|
+
|
900
|
+
class PutVoiceConnectorStreamingConfigurationRequest
|
901
|
+
attr_accessor voice_connector_id: ::String
|
902
|
+
attr_accessor streaming_configuration: Types::StreamingConfiguration
|
903
|
+
SENSITIVE: []
|
904
|
+
end
|
905
|
+
|
906
|
+
class PutVoiceConnectorStreamingConfigurationResponse
|
907
|
+
attr_accessor streaming_configuration: Types::StreamingConfiguration
|
908
|
+
SENSITIVE: []
|
909
|
+
end
|
910
|
+
|
911
|
+
class PutVoiceConnectorTerminationCredentialsRequest
|
912
|
+
attr_accessor voice_connector_id: ::String
|
913
|
+
attr_accessor credentials: ::Array[Types::Credential]
|
914
|
+
SENSITIVE: []
|
915
|
+
end
|
916
|
+
|
917
|
+
class PutVoiceConnectorTerminationRequest
|
918
|
+
attr_accessor voice_connector_id: ::String
|
919
|
+
attr_accessor termination: Types::Termination
|
920
|
+
SENSITIVE: []
|
921
|
+
end
|
922
|
+
|
923
|
+
class PutVoiceConnectorTerminationResponse
|
924
|
+
attr_accessor termination: Types::Termination
|
925
|
+
SENSITIVE: []
|
926
|
+
end
|
927
|
+
|
928
|
+
class ResourceLimitExceededException < Aws::EmptyStructure
|
929
|
+
end
|
930
|
+
|
931
|
+
class RestorePhoneNumberRequest
|
932
|
+
attr_accessor phone_number_id: ::String
|
933
|
+
SENSITIVE: [:phone_number_id]
|
934
|
+
end
|
935
|
+
|
936
|
+
class RestorePhoneNumberResponse
|
937
|
+
attr_accessor phone_number: Types::PhoneNumber
|
938
|
+
SENSITIVE: []
|
939
|
+
end
|
940
|
+
|
941
|
+
class SearchAvailablePhoneNumbersRequest
|
942
|
+
attr_accessor area_code: ::String
|
943
|
+
attr_accessor city: ::String
|
944
|
+
attr_accessor country: ::String
|
945
|
+
attr_accessor state: ::String
|
946
|
+
attr_accessor toll_free_prefix: ::String
|
947
|
+
attr_accessor phone_number_type: ("Local" | "TollFree")
|
948
|
+
attr_accessor max_results: ::Integer
|
949
|
+
attr_accessor next_token: ::String
|
950
|
+
SENSITIVE: []
|
951
|
+
end
|
952
|
+
|
953
|
+
class SearchAvailablePhoneNumbersResponse
|
954
|
+
attr_accessor e164_phone_numbers: ::Array[::String]
|
955
|
+
attr_accessor next_token: ::String
|
956
|
+
SENSITIVE: []
|
957
|
+
end
|
958
|
+
|
959
|
+
class ServerSideEncryptionConfiguration
|
960
|
+
attr_accessor kms_key_arn: ::String
|
961
|
+
SENSITIVE: [:kms_key_arn]
|
962
|
+
end
|
963
|
+
|
964
|
+
class ServiceFailureException < Aws::EmptyStructure
|
965
|
+
end
|
966
|
+
|
967
|
+
class ServiceUnavailableException < Aws::EmptyStructure
|
968
|
+
end
|
969
|
+
|
970
|
+
class SipMediaApplication
|
971
|
+
attr_accessor sip_media_application_id: ::String
|
972
|
+
attr_accessor aws_region: ::String
|
973
|
+
attr_accessor name: ::String
|
974
|
+
attr_accessor endpoints: ::Array[Types::SipMediaApplicationEndpoint]
|
975
|
+
attr_accessor created_timestamp: ::Time
|
976
|
+
attr_accessor updated_timestamp: ::Time
|
977
|
+
attr_accessor sip_media_application_arn: ::String
|
978
|
+
SENSITIVE: []
|
979
|
+
end
|
980
|
+
|
981
|
+
class SipMediaApplicationAlexaSkillConfiguration
|
982
|
+
attr_accessor alexa_skill_status: ("ACTIVE" | "INACTIVE")
|
983
|
+
attr_accessor alexa_skill_ids: ::Array[::String]
|
984
|
+
SENSITIVE: []
|
985
|
+
end
|
986
|
+
|
987
|
+
class SipMediaApplicationCall
|
988
|
+
attr_accessor transaction_id: ::String
|
989
|
+
SENSITIVE: []
|
990
|
+
end
|
991
|
+
|
992
|
+
class SipMediaApplicationEndpoint
|
993
|
+
attr_accessor lambda_arn: ::String
|
994
|
+
SENSITIVE: [:lambda_arn]
|
995
|
+
end
|
996
|
+
|
997
|
+
class SipMediaApplicationLoggingConfiguration
|
998
|
+
attr_accessor enable_sip_media_application_message_logs: bool
|
999
|
+
SENSITIVE: []
|
1000
|
+
end
|
1001
|
+
|
1002
|
+
class SipRule
|
1003
|
+
attr_accessor sip_rule_id: ::String
|
1004
|
+
attr_accessor name: ::String
|
1005
|
+
attr_accessor disabled: bool
|
1006
|
+
attr_accessor trigger_type: ("ToPhoneNumber" | "RequestUriHostname")
|
1007
|
+
attr_accessor trigger_value: ::String
|
1008
|
+
attr_accessor target_applications: ::Array[Types::SipRuleTargetApplication]
|
1009
|
+
attr_accessor created_timestamp: ::Time
|
1010
|
+
attr_accessor updated_timestamp: ::Time
|
1011
|
+
SENSITIVE: []
|
1012
|
+
end
|
1013
|
+
|
1014
|
+
class SipRuleTargetApplication
|
1015
|
+
attr_accessor sip_media_application_id: ::String
|
1016
|
+
attr_accessor priority: ::Integer
|
1017
|
+
attr_accessor aws_region: ::String
|
1018
|
+
SENSITIVE: []
|
1019
|
+
end
|
1020
|
+
|
1021
|
+
class SpeakerSearchDetails
|
1022
|
+
attr_accessor results: ::Array[Types::SpeakerSearchResult]
|
1023
|
+
attr_accessor voiceprint_generation_status: ::String
|
1024
|
+
SENSITIVE: []
|
1025
|
+
end
|
1026
|
+
|
1027
|
+
class SpeakerSearchResult
|
1028
|
+
attr_accessor confidence_score: ::Float
|
1029
|
+
attr_accessor voice_profile_id: ::String
|
1030
|
+
SENSITIVE: []
|
1031
|
+
end
|
1032
|
+
|
1033
|
+
class SpeakerSearchTask
|
1034
|
+
attr_accessor speaker_search_task_id: ::String
|
1035
|
+
attr_accessor speaker_search_task_status: ::String
|
1036
|
+
attr_accessor call_details: Types::CallDetails
|
1037
|
+
attr_accessor speaker_search_details: Types::SpeakerSearchDetails
|
1038
|
+
attr_accessor created_timestamp: ::Time
|
1039
|
+
attr_accessor updated_timestamp: ::Time
|
1040
|
+
attr_accessor started_timestamp: ::Time
|
1041
|
+
attr_accessor status_message: ::String
|
1042
|
+
SENSITIVE: []
|
1043
|
+
end
|
1044
|
+
|
1045
|
+
class StartSpeakerSearchTaskRequest
|
1046
|
+
attr_accessor voice_connector_id: ::String
|
1047
|
+
attr_accessor transaction_id: ::String
|
1048
|
+
attr_accessor voice_profile_domain_id: ::String
|
1049
|
+
attr_accessor client_request_token: ::String
|
1050
|
+
attr_accessor call_leg: ("Caller" | "Callee")
|
1051
|
+
SENSITIVE: []
|
1052
|
+
end
|
1053
|
+
|
1054
|
+
class StartSpeakerSearchTaskResponse
|
1055
|
+
attr_accessor speaker_search_task: Types::SpeakerSearchTask
|
1056
|
+
SENSITIVE: []
|
1057
|
+
end
|
1058
|
+
|
1059
|
+
class StartVoiceToneAnalysisTaskRequest
|
1060
|
+
attr_accessor voice_connector_id: ::String
|
1061
|
+
attr_accessor transaction_id: ::String
|
1062
|
+
attr_accessor language_code: ("en-US")
|
1063
|
+
attr_accessor client_request_token: ::String
|
1064
|
+
SENSITIVE: []
|
1065
|
+
end
|
1066
|
+
|
1067
|
+
class StartVoiceToneAnalysisTaskResponse
|
1068
|
+
attr_accessor voice_tone_analysis_task: Types::VoiceToneAnalysisTask
|
1069
|
+
SENSITIVE: []
|
1070
|
+
end
|
1071
|
+
|
1072
|
+
class StopSpeakerSearchTaskRequest
|
1073
|
+
attr_accessor voice_connector_id: ::String
|
1074
|
+
attr_accessor speaker_search_task_id: ::String
|
1075
|
+
SENSITIVE: []
|
1076
|
+
end
|
1077
|
+
|
1078
|
+
class StopVoiceToneAnalysisTaskRequest
|
1079
|
+
attr_accessor voice_connector_id: ::String
|
1080
|
+
attr_accessor voice_tone_analysis_task_id: ::String
|
1081
|
+
SENSITIVE: []
|
1082
|
+
end
|
1083
|
+
|
1084
|
+
class StreamingConfiguration
|
1085
|
+
attr_accessor data_retention_in_hours: ::Integer
|
1086
|
+
attr_accessor disabled: bool
|
1087
|
+
attr_accessor streaming_notification_targets: ::Array[Types::StreamingNotificationTarget]
|
1088
|
+
attr_accessor media_insights_configuration: Types::MediaInsightsConfiguration
|
1089
|
+
SENSITIVE: []
|
1090
|
+
end
|
1091
|
+
|
1092
|
+
class StreamingNotificationTarget
|
1093
|
+
attr_accessor notification_target: ("EventBridge" | "SNS" | "SQS")
|
1094
|
+
SENSITIVE: []
|
1095
|
+
end
|
1096
|
+
|
1097
|
+
class Tag
|
1098
|
+
attr_accessor key: ::String
|
1099
|
+
attr_accessor value: ::String
|
1100
|
+
SENSITIVE: [:key, :value]
|
1101
|
+
end
|
1102
|
+
|
1103
|
+
class TagResourceRequest
|
1104
|
+
attr_accessor resource_arn: ::String
|
1105
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1106
|
+
SENSITIVE: [:resource_arn]
|
1107
|
+
end
|
1108
|
+
|
1109
|
+
class Termination
|
1110
|
+
attr_accessor cps_limit: ::Integer
|
1111
|
+
attr_accessor default_phone_number: ::String
|
1112
|
+
attr_accessor calling_regions: ::Array[::String]
|
1113
|
+
attr_accessor cidr_allowed_list: ::Array[::String]
|
1114
|
+
attr_accessor disabled: bool
|
1115
|
+
SENSITIVE: [:default_phone_number]
|
1116
|
+
end
|
1117
|
+
|
1118
|
+
class TerminationHealth
|
1119
|
+
attr_accessor timestamp: ::Time
|
1120
|
+
attr_accessor source: ::String
|
1121
|
+
SENSITIVE: []
|
1122
|
+
end
|
1123
|
+
|
1124
|
+
class ThrottledClientException < Aws::EmptyStructure
|
1125
|
+
end
|
1126
|
+
|
1127
|
+
class UnauthorizedClientException < Aws::EmptyStructure
|
1128
|
+
end
|
1129
|
+
|
1130
|
+
class UnprocessableEntityException < Aws::EmptyStructure
|
1131
|
+
end
|
1132
|
+
|
1133
|
+
class UntagResourceRequest
|
1134
|
+
attr_accessor resource_arn: ::String
|
1135
|
+
attr_accessor tag_keys: ::Array[::String]
|
1136
|
+
SENSITIVE: [:resource_arn]
|
1137
|
+
end
|
1138
|
+
|
1139
|
+
class UpdateGlobalSettingsRequest
|
1140
|
+
attr_accessor voice_connector: Types::VoiceConnectorSettings
|
1141
|
+
SENSITIVE: []
|
1142
|
+
end
|
1143
|
+
|
1144
|
+
class UpdatePhoneNumberRequest
|
1145
|
+
attr_accessor phone_number_id: ::String
|
1146
|
+
attr_accessor product_type: ("VoiceConnector" | "SipMediaApplicationDialIn")
|
1147
|
+
attr_accessor calling_name: ::String
|
1148
|
+
attr_accessor name: ::String
|
1149
|
+
SENSITIVE: [:phone_number_id, :calling_name, :name]
|
1150
|
+
end
|
1151
|
+
|
1152
|
+
class UpdatePhoneNumberRequestItem
|
1153
|
+
attr_accessor phone_number_id: ::String
|
1154
|
+
attr_accessor product_type: ("VoiceConnector" | "SipMediaApplicationDialIn")
|
1155
|
+
attr_accessor calling_name: ::String
|
1156
|
+
attr_accessor name: ::String
|
1157
|
+
SENSITIVE: [:phone_number_id, :calling_name, :name]
|
1158
|
+
end
|
1159
|
+
|
1160
|
+
class UpdatePhoneNumberResponse
|
1161
|
+
attr_accessor phone_number: Types::PhoneNumber
|
1162
|
+
SENSITIVE: []
|
1163
|
+
end
|
1164
|
+
|
1165
|
+
class UpdatePhoneNumberSettingsRequest
|
1166
|
+
attr_accessor calling_name: ::String
|
1167
|
+
SENSITIVE: [:calling_name]
|
1168
|
+
end
|
1169
|
+
|
1170
|
+
class UpdateProxySessionRequest
|
1171
|
+
attr_accessor voice_connector_id: ::String
|
1172
|
+
attr_accessor proxy_session_id: ::String
|
1173
|
+
attr_accessor capabilities: ::Array[("Voice" | "SMS")]
|
1174
|
+
attr_accessor expiry_minutes: ::Integer
|
1175
|
+
SENSITIVE: []
|
1176
|
+
end
|
1177
|
+
|
1178
|
+
class UpdateProxySessionResponse
|
1179
|
+
attr_accessor proxy_session: Types::ProxySession
|
1180
|
+
SENSITIVE: []
|
1181
|
+
end
|
1182
|
+
|
1183
|
+
class UpdateSipMediaApplicationCallRequest
|
1184
|
+
attr_accessor sip_media_application_id: ::String
|
1185
|
+
attr_accessor transaction_id: ::String
|
1186
|
+
attr_accessor arguments: ::Hash[::String, ::String]
|
1187
|
+
SENSITIVE: []
|
1188
|
+
end
|
1189
|
+
|
1190
|
+
class UpdateSipMediaApplicationCallResponse
|
1191
|
+
attr_accessor sip_media_application_call: Types::SipMediaApplicationCall
|
1192
|
+
SENSITIVE: []
|
1193
|
+
end
|
1194
|
+
|
1195
|
+
class UpdateSipMediaApplicationRequest
|
1196
|
+
attr_accessor sip_media_application_id: ::String
|
1197
|
+
attr_accessor name: ::String
|
1198
|
+
attr_accessor endpoints: ::Array[Types::SipMediaApplicationEndpoint]
|
1199
|
+
SENSITIVE: []
|
1200
|
+
end
|
1201
|
+
|
1202
|
+
class UpdateSipMediaApplicationResponse
|
1203
|
+
attr_accessor sip_media_application: Types::SipMediaApplication
|
1204
|
+
SENSITIVE: []
|
1205
|
+
end
|
1206
|
+
|
1207
|
+
class UpdateSipRuleRequest
|
1208
|
+
attr_accessor sip_rule_id: ::String
|
1209
|
+
attr_accessor name: ::String
|
1210
|
+
attr_accessor disabled: bool
|
1211
|
+
attr_accessor target_applications: ::Array[Types::SipRuleTargetApplication]
|
1212
|
+
SENSITIVE: []
|
1213
|
+
end
|
1214
|
+
|
1215
|
+
class UpdateSipRuleResponse
|
1216
|
+
attr_accessor sip_rule: Types::SipRule
|
1217
|
+
SENSITIVE: []
|
1218
|
+
end
|
1219
|
+
|
1220
|
+
class UpdateVoiceConnectorGroupRequest
|
1221
|
+
attr_accessor voice_connector_group_id: ::String
|
1222
|
+
attr_accessor name: ::String
|
1223
|
+
attr_accessor voice_connector_items: ::Array[Types::VoiceConnectorItem]
|
1224
|
+
SENSITIVE: []
|
1225
|
+
end
|
1226
|
+
|
1227
|
+
class UpdateVoiceConnectorGroupResponse
|
1228
|
+
attr_accessor voice_connector_group: Types::VoiceConnectorGroup
|
1229
|
+
SENSITIVE: []
|
1230
|
+
end
|
1231
|
+
|
1232
|
+
class UpdateVoiceConnectorRequest
|
1233
|
+
attr_accessor voice_connector_id: ::String
|
1234
|
+
attr_accessor name: ::String
|
1235
|
+
attr_accessor require_encryption: bool
|
1236
|
+
SENSITIVE: []
|
1237
|
+
end
|
1238
|
+
|
1239
|
+
class UpdateVoiceConnectorResponse
|
1240
|
+
attr_accessor voice_connector: Types::VoiceConnector
|
1241
|
+
SENSITIVE: []
|
1242
|
+
end
|
1243
|
+
|
1244
|
+
class UpdateVoiceProfileDomainRequest
|
1245
|
+
attr_accessor voice_profile_domain_id: ::String
|
1246
|
+
attr_accessor name: ::String
|
1247
|
+
attr_accessor description: ::String
|
1248
|
+
SENSITIVE: []
|
1249
|
+
end
|
1250
|
+
|
1251
|
+
class UpdateVoiceProfileDomainResponse
|
1252
|
+
attr_accessor voice_profile_domain: Types::VoiceProfileDomain
|
1253
|
+
SENSITIVE: []
|
1254
|
+
end
|
1255
|
+
|
1256
|
+
class UpdateVoiceProfileRequest
|
1257
|
+
attr_accessor voice_profile_id: ::String
|
1258
|
+
attr_accessor speaker_search_task_id: ::String
|
1259
|
+
SENSITIVE: []
|
1260
|
+
end
|
1261
|
+
|
1262
|
+
class UpdateVoiceProfileResponse
|
1263
|
+
attr_accessor voice_profile: Types::VoiceProfile
|
1264
|
+
SENSITIVE: []
|
1265
|
+
end
|
1266
|
+
|
1267
|
+
class ValidateE911AddressRequest
|
1268
|
+
attr_accessor aws_account_id: ::String
|
1269
|
+
attr_accessor street_number: ::String
|
1270
|
+
attr_accessor street_info: ::String
|
1271
|
+
attr_accessor city: ::String
|
1272
|
+
attr_accessor state: ::String
|
1273
|
+
attr_accessor country: ::String
|
1274
|
+
attr_accessor postal_code: ::String
|
1275
|
+
SENSITIVE: [:street_number, :street_info, :city, :state, :country, :postal_code]
|
1276
|
+
end
|
1277
|
+
|
1278
|
+
class ValidateE911AddressResponse
|
1279
|
+
attr_accessor validation_result: ::Integer
|
1280
|
+
attr_accessor address_external_id: ::String
|
1281
|
+
attr_accessor address: Types::Address
|
1282
|
+
attr_accessor candidate_address_list: ::Array[Types::CandidateAddress]
|
1283
|
+
SENSITIVE: []
|
1284
|
+
end
|
1285
|
+
|
1286
|
+
class VoiceConnector
|
1287
|
+
attr_accessor voice_connector_id: ::String
|
1288
|
+
attr_accessor aws_region: ("us-east-1" | "us-west-2" | "ca-central-1" | "eu-central-1" | "eu-west-1" | "eu-west-2" | "ap-northeast-2" | "ap-northeast-1" | "ap-southeast-1" | "ap-southeast-2")
|
1289
|
+
attr_accessor name: ::String
|
1290
|
+
attr_accessor outbound_host_name: ::String
|
1291
|
+
attr_accessor require_encryption: bool
|
1292
|
+
attr_accessor created_timestamp: ::Time
|
1293
|
+
attr_accessor updated_timestamp: ::Time
|
1294
|
+
attr_accessor voice_connector_arn: ::String
|
1295
|
+
SENSITIVE: []
|
1296
|
+
end
|
1297
|
+
|
1298
|
+
class VoiceConnectorGroup
|
1299
|
+
attr_accessor voice_connector_group_id: ::String
|
1300
|
+
attr_accessor name: ::String
|
1301
|
+
attr_accessor voice_connector_items: ::Array[Types::VoiceConnectorItem]
|
1302
|
+
attr_accessor created_timestamp: ::Time
|
1303
|
+
attr_accessor updated_timestamp: ::Time
|
1304
|
+
attr_accessor voice_connector_group_arn: ::String
|
1305
|
+
SENSITIVE: []
|
1306
|
+
end
|
1307
|
+
|
1308
|
+
class VoiceConnectorItem
|
1309
|
+
attr_accessor voice_connector_id: ::String
|
1310
|
+
attr_accessor priority: ::Integer
|
1311
|
+
SENSITIVE: []
|
1312
|
+
end
|
1313
|
+
|
1314
|
+
class VoiceConnectorSettings
|
1315
|
+
attr_accessor cdr_bucket: ::String
|
1316
|
+
SENSITIVE: []
|
1317
|
+
end
|
1318
|
+
|
1319
|
+
class VoiceProfile
|
1320
|
+
attr_accessor voice_profile_id: ::String
|
1321
|
+
attr_accessor voice_profile_arn: ::String
|
1322
|
+
attr_accessor voice_profile_domain_id: ::String
|
1323
|
+
attr_accessor created_timestamp: ::Time
|
1324
|
+
attr_accessor updated_timestamp: ::Time
|
1325
|
+
attr_accessor expiration_timestamp: ::Time
|
1326
|
+
SENSITIVE: [:voice_profile_arn]
|
1327
|
+
end
|
1328
|
+
|
1329
|
+
class VoiceProfileDomain
|
1330
|
+
attr_accessor voice_profile_domain_id: ::String
|
1331
|
+
attr_accessor voice_profile_domain_arn: ::String
|
1332
|
+
attr_accessor name: ::String
|
1333
|
+
attr_accessor description: ::String
|
1334
|
+
attr_accessor server_side_encryption_configuration: Types::ServerSideEncryptionConfiguration
|
1335
|
+
attr_accessor created_timestamp: ::Time
|
1336
|
+
attr_accessor updated_timestamp: ::Time
|
1337
|
+
SENSITIVE: [:voice_profile_domain_arn]
|
1338
|
+
end
|
1339
|
+
|
1340
|
+
class VoiceProfileDomainSummary
|
1341
|
+
attr_accessor voice_profile_domain_id: ::String
|
1342
|
+
attr_accessor voice_profile_domain_arn: ::String
|
1343
|
+
attr_accessor name: ::String
|
1344
|
+
attr_accessor description: ::String
|
1345
|
+
attr_accessor created_timestamp: ::Time
|
1346
|
+
attr_accessor updated_timestamp: ::Time
|
1347
|
+
SENSITIVE: [:voice_profile_domain_arn]
|
1348
|
+
end
|
1349
|
+
|
1350
|
+
class VoiceProfileSummary
|
1351
|
+
attr_accessor voice_profile_id: ::String
|
1352
|
+
attr_accessor voice_profile_arn: ::String
|
1353
|
+
attr_accessor voice_profile_domain_id: ::String
|
1354
|
+
attr_accessor created_timestamp: ::Time
|
1355
|
+
attr_accessor updated_timestamp: ::Time
|
1356
|
+
attr_accessor expiration_timestamp: ::Time
|
1357
|
+
SENSITIVE: [:voice_profile_arn]
|
1358
|
+
end
|
1359
|
+
|
1360
|
+
class VoiceToneAnalysisTask
|
1361
|
+
attr_accessor voice_tone_analysis_task_id: ::String
|
1362
|
+
attr_accessor voice_tone_analysis_task_status: ::String
|
1363
|
+
attr_accessor call_details: Types::CallDetails
|
1364
|
+
attr_accessor created_timestamp: ::Time
|
1365
|
+
attr_accessor updated_timestamp: ::Time
|
1366
|
+
attr_accessor started_timestamp: ::Time
|
1367
|
+
attr_accessor status_message: ::String
|
1368
|
+
SENSITIVE: []
|
1369
|
+
end
|
1370
|
+
end
|
1371
|
+
end
|