aws-sdk-chimesdkvoice 1.0.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.
@@ -0,0 +1,3517 @@
1
+ # frozen_string_literal: true
2
+
3
+ # WARNING ABOUT GENERATED CODE
4
+ #
5
+ # This file is generated. See the contributing guide for more information:
6
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
7
+ #
8
+ # WARNING ABOUT GENERATED CODE
9
+
10
+ module Aws::ChimeSDKVoice
11
+ module Types
12
+
13
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/AccessDeniedException AWS API Documentation
14
+ #
15
+ class AccessDeniedException < Aws::EmptyStructure; end
16
+
17
+ # @!attribute [rw] street_name
18
+ # @return [String]
19
+ #
20
+ # @!attribute [rw] street_suffix
21
+ # @return [String]
22
+ #
23
+ # @!attribute [rw] post_directional
24
+ # @return [String]
25
+ #
26
+ # @!attribute [rw] pre_directional
27
+ # @return [String]
28
+ #
29
+ # @!attribute [rw] street_number
30
+ # @return [String]
31
+ #
32
+ # @!attribute [rw] city
33
+ # @return [String]
34
+ #
35
+ # @!attribute [rw] state
36
+ # @return [String]
37
+ #
38
+ # @!attribute [rw] postal_code
39
+ # @return [String]
40
+ #
41
+ # @!attribute [rw] postal_code_plus_4
42
+ # @return [String]
43
+ #
44
+ # @!attribute [rw] country
45
+ # @return [String]
46
+ #
47
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/Address AWS API Documentation
48
+ #
49
+ class Address < Struct.new(
50
+ :street_name,
51
+ :street_suffix,
52
+ :post_directional,
53
+ :pre_directional,
54
+ :street_number,
55
+ :city,
56
+ :state,
57
+ :postal_code,
58
+ :postal_code_plus_4,
59
+ :country)
60
+ SENSITIVE = [:street_name, :street_suffix, :post_directional, :pre_directional, :street_number, :city, :state, :postal_code, :postal_code_plus_4, :country]
61
+ include Aws::Structure
62
+ end
63
+
64
+ # @note When making an API call, you may pass AssociatePhoneNumbersWithVoiceConnectorGroupRequest
65
+ # data as a hash:
66
+ #
67
+ # {
68
+ # voice_connector_group_id: "NonEmptyString", # required
69
+ # e164_phone_numbers: ["E164PhoneNumber"], # required
70
+ # force_associate: false,
71
+ # }
72
+ #
73
+ # @!attribute [rw] voice_connector_group_id
74
+ # @return [String]
75
+ #
76
+ # @!attribute [rw] e164_phone_numbers
77
+ # @return [Array<String>]
78
+ #
79
+ # @!attribute [rw] force_associate
80
+ # @return [Boolean]
81
+ #
82
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/AssociatePhoneNumbersWithVoiceConnectorGroupRequest AWS API Documentation
83
+ #
84
+ class AssociatePhoneNumbersWithVoiceConnectorGroupRequest < Struct.new(
85
+ :voice_connector_group_id,
86
+ :e164_phone_numbers,
87
+ :force_associate)
88
+ SENSITIVE = []
89
+ include Aws::Structure
90
+ end
91
+
92
+ # @!attribute [rw] phone_number_errors
93
+ # @return [Array<Types::PhoneNumberError>]
94
+ #
95
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/AssociatePhoneNumbersWithVoiceConnectorGroupResponse AWS API Documentation
96
+ #
97
+ class AssociatePhoneNumbersWithVoiceConnectorGroupResponse < Struct.new(
98
+ :phone_number_errors)
99
+ SENSITIVE = []
100
+ include Aws::Structure
101
+ end
102
+
103
+ # @note When making an API call, you may pass AssociatePhoneNumbersWithVoiceConnectorRequest
104
+ # data as a hash:
105
+ #
106
+ # {
107
+ # voice_connector_id: "NonEmptyString", # required
108
+ # e164_phone_numbers: ["E164PhoneNumber"], # required
109
+ # force_associate: false,
110
+ # }
111
+ #
112
+ # @!attribute [rw] voice_connector_id
113
+ # @return [String]
114
+ #
115
+ # @!attribute [rw] e164_phone_numbers
116
+ # @return [Array<String>]
117
+ #
118
+ # @!attribute [rw] force_associate
119
+ # @return [Boolean]
120
+ #
121
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/AssociatePhoneNumbersWithVoiceConnectorRequest AWS API Documentation
122
+ #
123
+ class AssociatePhoneNumbersWithVoiceConnectorRequest < Struct.new(
124
+ :voice_connector_id,
125
+ :e164_phone_numbers,
126
+ :force_associate)
127
+ SENSITIVE = []
128
+ include Aws::Structure
129
+ end
130
+
131
+ # @!attribute [rw] phone_number_errors
132
+ # @return [Array<Types::PhoneNumberError>]
133
+ #
134
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/AssociatePhoneNumbersWithVoiceConnectorResponse AWS API Documentation
135
+ #
136
+ class AssociatePhoneNumbersWithVoiceConnectorResponse < Struct.new(
137
+ :phone_number_errors)
138
+ SENSITIVE = []
139
+ include Aws::Structure
140
+ end
141
+
142
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/BadRequestException AWS API Documentation
143
+ #
144
+ class BadRequestException < Aws::EmptyStructure; end
145
+
146
+ # @note When making an API call, you may pass BatchDeletePhoneNumberRequest
147
+ # data as a hash:
148
+ #
149
+ # {
150
+ # phone_number_ids: ["String"], # required
151
+ # }
152
+ #
153
+ # @!attribute [rw] phone_number_ids
154
+ # @return [Array<String>]
155
+ #
156
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/BatchDeletePhoneNumberRequest AWS API Documentation
157
+ #
158
+ class BatchDeletePhoneNumberRequest < Struct.new(
159
+ :phone_number_ids)
160
+ SENSITIVE = []
161
+ include Aws::Structure
162
+ end
163
+
164
+ # @!attribute [rw] phone_number_errors
165
+ # @return [Array<Types::PhoneNumberError>]
166
+ #
167
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/BatchDeletePhoneNumberResponse AWS API Documentation
168
+ #
169
+ class BatchDeletePhoneNumberResponse < Struct.new(
170
+ :phone_number_errors)
171
+ SENSITIVE = []
172
+ include Aws::Structure
173
+ end
174
+
175
+ # @note When making an API call, you may pass BatchUpdatePhoneNumberRequest
176
+ # data as a hash:
177
+ #
178
+ # {
179
+ # update_phone_number_request_items: [ # required
180
+ # {
181
+ # phone_number_id: "SensitiveNonEmptyString", # required
182
+ # product_type: "VoiceConnector", # accepts VoiceConnector, SipMediaApplicationDialIn
183
+ # calling_name: "CallingName",
184
+ # },
185
+ # ],
186
+ # }
187
+ #
188
+ # @!attribute [rw] update_phone_number_request_items
189
+ # @return [Array<Types::UpdatePhoneNumberRequestItem>]
190
+ #
191
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/BatchUpdatePhoneNumberRequest AWS API Documentation
192
+ #
193
+ class BatchUpdatePhoneNumberRequest < Struct.new(
194
+ :update_phone_number_request_items)
195
+ SENSITIVE = []
196
+ include Aws::Structure
197
+ end
198
+
199
+ # @!attribute [rw] phone_number_errors
200
+ # @return [Array<Types::PhoneNumberError>]
201
+ #
202
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/BatchUpdatePhoneNumberResponse AWS API Documentation
203
+ #
204
+ class BatchUpdatePhoneNumberResponse < Struct.new(
205
+ :phone_number_errors)
206
+ SENSITIVE = []
207
+ include Aws::Structure
208
+ end
209
+
210
+ # @!attribute [rw] street_info
211
+ # @return [String]
212
+ #
213
+ # @!attribute [rw] street_number
214
+ # @return [String]
215
+ #
216
+ # @!attribute [rw] city
217
+ # @return [String]
218
+ #
219
+ # @!attribute [rw] state
220
+ # @return [String]
221
+ #
222
+ # @!attribute [rw] postal_code
223
+ # @return [String]
224
+ #
225
+ # @!attribute [rw] postal_code_plus_4
226
+ # @return [String]
227
+ #
228
+ # @!attribute [rw] country
229
+ # @return [String]
230
+ #
231
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/CandidateAddress AWS API Documentation
232
+ #
233
+ class CandidateAddress < Struct.new(
234
+ :street_info,
235
+ :street_number,
236
+ :city,
237
+ :state,
238
+ :postal_code,
239
+ :postal_code_plus_4,
240
+ :country)
241
+ SENSITIVE = [:street_info, :street_number, :city, :state, :postal_code, :postal_code_plus_4, :country]
242
+ include Aws::Structure
243
+ end
244
+
245
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/ConflictException AWS API Documentation
246
+ #
247
+ class ConflictException < Aws::EmptyStructure; end
248
+
249
+ # @note When making an API call, you may pass CreatePhoneNumberOrderRequest
250
+ # data as a hash:
251
+ #
252
+ # {
253
+ # product_type: "VoiceConnector", # required, accepts VoiceConnector, SipMediaApplicationDialIn
254
+ # e164_phone_numbers: ["E164PhoneNumber"], # required
255
+ # }
256
+ #
257
+ # @!attribute [rw] product_type
258
+ # @return [String]
259
+ #
260
+ # @!attribute [rw] e164_phone_numbers
261
+ # @return [Array<String>]
262
+ #
263
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/CreatePhoneNumberOrderRequest AWS API Documentation
264
+ #
265
+ class CreatePhoneNumberOrderRequest < Struct.new(
266
+ :product_type,
267
+ :e164_phone_numbers)
268
+ SENSITIVE = []
269
+ include Aws::Structure
270
+ end
271
+
272
+ # @!attribute [rw] phone_number_order
273
+ # @return [Types::PhoneNumberOrder]
274
+ #
275
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/CreatePhoneNumberOrderResponse AWS API Documentation
276
+ #
277
+ class CreatePhoneNumberOrderResponse < Struct.new(
278
+ :phone_number_order)
279
+ SENSITIVE = []
280
+ include Aws::Structure
281
+ end
282
+
283
+ # @note When making an API call, you may pass CreateProxySessionRequest
284
+ # data as a hash:
285
+ #
286
+ # {
287
+ # voice_connector_id: "NonEmptyString128", # required
288
+ # participant_phone_numbers: ["E164PhoneNumber"], # required
289
+ # name: "ProxySessionNameString",
290
+ # expiry_minutes: 1,
291
+ # capabilities: ["Voice"], # required, accepts Voice, SMS
292
+ # number_selection_behavior: "PreferSticky", # accepts PreferSticky, AvoidSticky
293
+ # geo_match_level: "Country", # accepts Country, AreaCode
294
+ # geo_match_params: {
295
+ # country: "Country", # required
296
+ # area_code: "AreaCode", # required
297
+ # },
298
+ # }
299
+ #
300
+ # @!attribute [rw] voice_connector_id
301
+ # @return [String]
302
+ #
303
+ # @!attribute [rw] participant_phone_numbers
304
+ # @return [Array<String>]
305
+ #
306
+ # @!attribute [rw] name
307
+ # @return [String]
308
+ #
309
+ # @!attribute [rw] expiry_minutes
310
+ # @return [Integer]
311
+ #
312
+ # @!attribute [rw] capabilities
313
+ # @return [Array<String>]
314
+ #
315
+ # @!attribute [rw] number_selection_behavior
316
+ # @return [String]
317
+ #
318
+ # @!attribute [rw] geo_match_level
319
+ # @return [String]
320
+ #
321
+ # @!attribute [rw] geo_match_params
322
+ # @return [Types::GeoMatchParams]
323
+ #
324
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/CreateProxySessionRequest AWS API Documentation
325
+ #
326
+ class CreateProxySessionRequest < Struct.new(
327
+ :voice_connector_id,
328
+ :participant_phone_numbers,
329
+ :name,
330
+ :expiry_minutes,
331
+ :capabilities,
332
+ :number_selection_behavior,
333
+ :geo_match_level,
334
+ :geo_match_params)
335
+ SENSITIVE = [:name]
336
+ include Aws::Structure
337
+ end
338
+
339
+ # @!attribute [rw] proxy_session
340
+ # @return [Types::ProxySession]
341
+ #
342
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/CreateProxySessionResponse AWS API Documentation
343
+ #
344
+ class CreateProxySessionResponse < Struct.new(
345
+ :proxy_session)
346
+ SENSITIVE = []
347
+ include Aws::Structure
348
+ end
349
+
350
+ # @note When making an API call, you may pass CreateSipMediaApplicationCallRequest
351
+ # data as a hash:
352
+ #
353
+ # {
354
+ # from_phone_number: "E164PhoneNumber", # required
355
+ # to_phone_number: "E164PhoneNumber", # required
356
+ # sip_media_application_id: "NonEmptyString", # required
357
+ # sip_headers: {
358
+ # "SensitiveString" => "SensitiveString",
359
+ # },
360
+ # arguments_map: {
361
+ # "SensitiveString" => "SensitiveString",
362
+ # },
363
+ # }
364
+ #
365
+ # @!attribute [rw] from_phone_number
366
+ # @return [String]
367
+ #
368
+ # @!attribute [rw] to_phone_number
369
+ # @return [String]
370
+ #
371
+ # @!attribute [rw] sip_media_application_id
372
+ # @return [String]
373
+ #
374
+ # @!attribute [rw] sip_headers
375
+ # @return [Hash<String,String>]
376
+ #
377
+ # @!attribute [rw] arguments_map
378
+ # @return [Hash<String,String>]
379
+ #
380
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/CreateSipMediaApplicationCallRequest AWS API Documentation
381
+ #
382
+ class CreateSipMediaApplicationCallRequest < Struct.new(
383
+ :from_phone_number,
384
+ :to_phone_number,
385
+ :sip_media_application_id,
386
+ :sip_headers,
387
+ :arguments_map)
388
+ SENSITIVE = [:from_phone_number, :to_phone_number]
389
+ include Aws::Structure
390
+ end
391
+
392
+ # @!attribute [rw] sip_media_application_call
393
+ # @return [Types::SipMediaApplicationCall]
394
+ #
395
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/CreateSipMediaApplicationCallResponse AWS API Documentation
396
+ #
397
+ class CreateSipMediaApplicationCallResponse < Struct.new(
398
+ :sip_media_application_call)
399
+ SENSITIVE = []
400
+ include Aws::Structure
401
+ end
402
+
403
+ # @note When making an API call, you may pass CreateSipMediaApplicationRequest
404
+ # data as a hash:
405
+ #
406
+ # {
407
+ # aws_region: "String", # required
408
+ # name: "SipMediaApplicationName", # required
409
+ # endpoints: [ # required
410
+ # {
411
+ # lambda_arn: "FunctionArn",
412
+ # },
413
+ # ],
414
+ # }
415
+ #
416
+ # @!attribute [rw] aws_region
417
+ # @return [String]
418
+ #
419
+ # @!attribute [rw] name
420
+ # @return [String]
421
+ #
422
+ # @!attribute [rw] endpoints
423
+ # @return [Array<Types::SipMediaApplicationEndpoint>]
424
+ #
425
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/CreateSipMediaApplicationRequest AWS API Documentation
426
+ #
427
+ class CreateSipMediaApplicationRequest < Struct.new(
428
+ :aws_region,
429
+ :name,
430
+ :endpoints)
431
+ SENSITIVE = []
432
+ include Aws::Structure
433
+ end
434
+
435
+ # @!attribute [rw] sip_media_application
436
+ # @return [Types::SipMediaApplication]
437
+ #
438
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/CreateSipMediaApplicationResponse AWS API Documentation
439
+ #
440
+ class CreateSipMediaApplicationResponse < Struct.new(
441
+ :sip_media_application)
442
+ SENSITIVE = []
443
+ include Aws::Structure
444
+ end
445
+
446
+ # @note When making an API call, you may pass CreateSipRuleRequest
447
+ # data as a hash:
448
+ #
449
+ # {
450
+ # name: "SipRuleName", # required
451
+ # trigger_type: "ToPhoneNumber", # required, accepts ToPhoneNumber, RequestUriHostname
452
+ # trigger_value: "NonEmptyString", # required
453
+ # disabled: false,
454
+ # target_applications: [
455
+ # {
456
+ # sip_media_application_id: "NonEmptyString",
457
+ # priority: 1,
458
+ # aws_region: "String",
459
+ # },
460
+ # ],
461
+ # }
462
+ #
463
+ # @!attribute [rw] name
464
+ # @return [String]
465
+ #
466
+ # @!attribute [rw] trigger_type
467
+ # @return [String]
468
+ #
469
+ # @!attribute [rw] trigger_value
470
+ # @return [String]
471
+ #
472
+ # @!attribute [rw] disabled
473
+ # @return [Boolean]
474
+ #
475
+ # @!attribute [rw] target_applications
476
+ # @return [Array<Types::SipRuleTargetApplication>]
477
+ #
478
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/CreateSipRuleRequest AWS API Documentation
479
+ #
480
+ class CreateSipRuleRequest < Struct.new(
481
+ :name,
482
+ :trigger_type,
483
+ :trigger_value,
484
+ :disabled,
485
+ :target_applications)
486
+ SENSITIVE = []
487
+ include Aws::Structure
488
+ end
489
+
490
+ # @!attribute [rw] sip_rule
491
+ # @return [Types::SipRule]
492
+ #
493
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/CreateSipRuleResponse AWS API Documentation
494
+ #
495
+ class CreateSipRuleResponse < Struct.new(
496
+ :sip_rule)
497
+ SENSITIVE = []
498
+ include Aws::Structure
499
+ end
500
+
501
+ # @note When making an API call, you may pass CreateVoiceConnectorGroupRequest
502
+ # data as a hash:
503
+ #
504
+ # {
505
+ # name: "VoiceConnectorGroupName", # required
506
+ # voice_connector_items: [
507
+ # {
508
+ # voice_connector_id: "NonEmptyString", # required
509
+ # priority: 1, # required
510
+ # },
511
+ # ],
512
+ # }
513
+ #
514
+ # @!attribute [rw] name
515
+ # @return [String]
516
+ #
517
+ # @!attribute [rw] voice_connector_items
518
+ # @return [Array<Types::VoiceConnectorItem>]
519
+ #
520
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/CreateVoiceConnectorGroupRequest AWS API Documentation
521
+ #
522
+ class CreateVoiceConnectorGroupRequest < Struct.new(
523
+ :name,
524
+ :voice_connector_items)
525
+ SENSITIVE = []
526
+ include Aws::Structure
527
+ end
528
+
529
+ # @!attribute [rw] voice_connector_group
530
+ # @return [Types::VoiceConnectorGroup]
531
+ #
532
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/CreateVoiceConnectorGroupResponse AWS API Documentation
533
+ #
534
+ class CreateVoiceConnectorGroupResponse < Struct.new(
535
+ :voice_connector_group)
536
+ SENSITIVE = []
537
+ include Aws::Structure
538
+ end
539
+
540
+ # @note When making an API call, you may pass CreateVoiceConnectorRequest
541
+ # data as a hash:
542
+ #
543
+ # {
544
+ # name: "VoiceConnectorName", # required
545
+ # aws_region: "us-east-1", # accepts 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
546
+ # require_encryption: false, # required
547
+ # }
548
+ #
549
+ # @!attribute [rw] name
550
+ # @return [String]
551
+ #
552
+ # @!attribute [rw] aws_region
553
+ # @return [String]
554
+ #
555
+ # @!attribute [rw] require_encryption
556
+ # @return [Boolean]
557
+ #
558
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/CreateVoiceConnectorRequest AWS API Documentation
559
+ #
560
+ class CreateVoiceConnectorRequest < Struct.new(
561
+ :name,
562
+ :aws_region,
563
+ :require_encryption)
564
+ SENSITIVE = []
565
+ include Aws::Structure
566
+ end
567
+
568
+ # @!attribute [rw] voice_connector
569
+ # @return [Types::VoiceConnector]
570
+ #
571
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/CreateVoiceConnectorResponse AWS API Documentation
572
+ #
573
+ class CreateVoiceConnectorResponse < Struct.new(
574
+ :voice_connector)
575
+ SENSITIVE = []
576
+ include Aws::Structure
577
+ end
578
+
579
+ # @note When making an API call, you may pass Credential
580
+ # data as a hash:
581
+ #
582
+ # {
583
+ # username: "SensitiveString",
584
+ # password: "SensitiveString",
585
+ # }
586
+ #
587
+ # @!attribute [rw] username
588
+ # @return [String]
589
+ #
590
+ # @!attribute [rw] password
591
+ # @return [String]
592
+ #
593
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/Credential AWS API Documentation
594
+ #
595
+ class Credential < Struct.new(
596
+ :username,
597
+ :password)
598
+ SENSITIVE = [:username, :password]
599
+ include Aws::Structure
600
+ end
601
+
602
+ # @note When making an API call, you may pass DNISEmergencyCallingConfiguration
603
+ # data as a hash:
604
+ #
605
+ # {
606
+ # emergency_phone_number: "E164PhoneNumber", # required
607
+ # test_phone_number: "E164PhoneNumber",
608
+ # calling_country: "Alpha2CountryCode", # required
609
+ # }
610
+ #
611
+ # @!attribute [rw] emergency_phone_number
612
+ # @return [String]
613
+ #
614
+ # @!attribute [rw] test_phone_number
615
+ # @return [String]
616
+ #
617
+ # @!attribute [rw] calling_country
618
+ # @return [String]
619
+ #
620
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/DNISEmergencyCallingConfiguration AWS API Documentation
621
+ #
622
+ class DNISEmergencyCallingConfiguration < Struct.new(
623
+ :emergency_phone_number,
624
+ :test_phone_number,
625
+ :calling_country)
626
+ SENSITIVE = [:emergency_phone_number, :test_phone_number]
627
+ include Aws::Structure
628
+ end
629
+
630
+ # @note When making an API call, you may pass DeletePhoneNumberRequest
631
+ # data as a hash:
632
+ #
633
+ # {
634
+ # phone_number_id: "SensitiveNonEmptyString", # required
635
+ # }
636
+ #
637
+ # @!attribute [rw] phone_number_id
638
+ # @return [String]
639
+ #
640
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/DeletePhoneNumberRequest AWS API Documentation
641
+ #
642
+ class DeletePhoneNumberRequest < Struct.new(
643
+ :phone_number_id)
644
+ SENSITIVE = [:phone_number_id]
645
+ include Aws::Structure
646
+ end
647
+
648
+ # @note When making an API call, you may pass DeleteProxySessionRequest
649
+ # data as a hash:
650
+ #
651
+ # {
652
+ # voice_connector_id: "NonEmptyString128", # required
653
+ # proxy_session_id: "NonEmptyString128", # required
654
+ # }
655
+ #
656
+ # @!attribute [rw] voice_connector_id
657
+ # @return [String]
658
+ #
659
+ # @!attribute [rw] proxy_session_id
660
+ # @return [String]
661
+ #
662
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/DeleteProxySessionRequest AWS API Documentation
663
+ #
664
+ class DeleteProxySessionRequest < Struct.new(
665
+ :voice_connector_id,
666
+ :proxy_session_id)
667
+ SENSITIVE = []
668
+ include Aws::Structure
669
+ end
670
+
671
+ # @note When making an API call, you may pass DeleteSipMediaApplicationRequest
672
+ # data as a hash:
673
+ #
674
+ # {
675
+ # sip_media_application_id: "NonEmptyString", # required
676
+ # }
677
+ #
678
+ # @!attribute [rw] sip_media_application_id
679
+ # @return [String]
680
+ #
681
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/DeleteSipMediaApplicationRequest AWS API Documentation
682
+ #
683
+ class DeleteSipMediaApplicationRequest < Struct.new(
684
+ :sip_media_application_id)
685
+ SENSITIVE = []
686
+ include Aws::Structure
687
+ end
688
+
689
+ # @note When making an API call, you may pass DeleteSipRuleRequest
690
+ # data as a hash:
691
+ #
692
+ # {
693
+ # sip_rule_id: "NonEmptyString", # required
694
+ # }
695
+ #
696
+ # @!attribute [rw] sip_rule_id
697
+ # @return [String]
698
+ #
699
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/DeleteSipRuleRequest AWS API Documentation
700
+ #
701
+ class DeleteSipRuleRequest < Struct.new(
702
+ :sip_rule_id)
703
+ SENSITIVE = []
704
+ include Aws::Structure
705
+ end
706
+
707
+ # @note When making an API call, you may pass DeleteVoiceConnectorEmergencyCallingConfigurationRequest
708
+ # data as a hash:
709
+ #
710
+ # {
711
+ # voice_connector_id: "NonEmptyString", # required
712
+ # }
713
+ #
714
+ # @!attribute [rw] voice_connector_id
715
+ # @return [String]
716
+ #
717
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/DeleteVoiceConnectorEmergencyCallingConfigurationRequest AWS API Documentation
718
+ #
719
+ class DeleteVoiceConnectorEmergencyCallingConfigurationRequest < Struct.new(
720
+ :voice_connector_id)
721
+ SENSITIVE = []
722
+ include Aws::Structure
723
+ end
724
+
725
+ # @note When making an API call, you may pass DeleteVoiceConnectorGroupRequest
726
+ # data as a hash:
727
+ #
728
+ # {
729
+ # voice_connector_group_id: "NonEmptyString", # required
730
+ # }
731
+ #
732
+ # @!attribute [rw] voice_connector_group_id
733
+ # @return [String]
734
+ #
735
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/DeleteVoiceConnectorGroupRequest AWS API Documentation
736
+ #
737
+ class DeleteVoiceConnectorGroupRequest < Struct.new(
738
+ :voice_connector_group_id)
739
+ SENSITIVE = []
740
+ include Aws::Structure
741
+ end
742
+
743
+ # @note When making an API call, you may pass DeleteVoiceConnectorOriginationRequest
744
+ # data as a hash:
745
+ #
746
+ # {
747
+ # voice_connector_id: "NonEmptyString", # required
748
+ # }
749
+ #
750
+ # @!attribute [rw] voice_connector_id
751
+ # @return [String]
752
+ #
753
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/DeleteVoiceConnectorOriginationRequest AWS API Documentation
754
+ #
755
+ class DeleteVoiceConnectorOriginationRequest < Struct.new(
756
+ :voice_connector_id)
757
+ SENSITIVE = []
758
+ include Aws::Structure
759
+ end
760
+
761
+ # @note When making an API call, you may pass DeleteVoiceConnectorProxyRequest
762
+ # data as a hash:
763
+ #
764
+ # {
765
+ # voice_connector_id: "NonEmptyString128", # required
766
+ # }
767
+ #
768
+ # @!attribute [rw] voice_connector_id
769
+ # @return [String]
770
+ #
771
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/DeleteVoiceConnectorProxyRequest AWS API Documentation
772
+ #
773
+ class DeleteVoiceConnectorProxyRequest < Struct.new(
774
+ :voice_connector_id)
775
+ SENSITIVE = []
776
+ include Aws::Structure
777
+ end
778
+
779
+ # @note When making an API call, you may pass DeleteVoiceConnectorRequest
780
+ # data as a hash:
781
+ #
782
+ # {
783
+ # voice_connector_id: "NonEmptyString", # required
784
+ # }
785
+ #
786
+ # @!attribute [rw] voice_connector_id
787
+ # @return [String]
788
+ #
789
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/DeleteVoiceConnectorRequest AWS API Documentation
790
+ #
791
+ class DeleteVoiceConnectorRequest < Struct.new(
792
+ :voice_connector_id)
793
+ SENSITIVE = []
794
+ include Aws::Structure
795
+ end
796
+
797
+ # @note When making an API call, you may pass DeleteVoiceConnectorStreamingConfigurationRequest
798
+ # data as a hash:
799
+ #
800
+ # {
801
+ # voice_connector_id: "NonEmptyString", # required
802
+ # }
803
+ #
804
+ # @!attribute [rw] voice_connector_id
805
+ # @return [String]
806
+ #
807
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/DeleteVoiceConnectorStreamingConfigurationRequest AWS API Documentation
808
+ #
809
+ class DeleteVoiceConnectorStreamingConfigurationRequest < Struct.new(
810
+ :voice_connector_id)
811
+ SENSITIVE = []
812
+ include Aws::Structure
813
+ end
814
+
815
+ # @note When making an API call, you may pass DeleteVoiceConnectorTerminationCredentialsRequest
816
+ # data as a hash:
817
+ #
818
+ # {
819
+ # voice_connector_id: "NonEmptyString", # required
820
+ # usernames: ["SensitiveString"], # required
821
+ # }
822
+ #
823
+ # @!attribute [rw] voice_connector_id
824
+ # @return [String]
825
+ #
826
+ # @!attribute [rw] usernames
827
+ # @return [Array<String>]
828
+ #
829
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/DeleteVoiceConnectorTerminationCredentialsRequest AWS API Documentation
830
+ #
831
+ class DeleteVoiceConnectorTerminationCredentialsRequest < Struct.new(
832
+ :voice_connector_id,
833
+ :usernames)
834
+ SENSITIVE = []
835
+ include Aws::Structure
836
+ end
837
+
838
+ # @note When making an API call, you may pass DeleteVoiceConnectorTerminationRequest
839
+ # data as a hash:
840
+ #
841
+ # {
842
+ # voice_connector_id: "NonEmptyString", # required
843
+ # }
844
+ #
845
+ # @!attribute [rw] voice_connector_id
846
+ # @return [String]
847
+ #
848
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/DeleteVoiceConnectorTerminationRequest AWS API Documentation
849
+ #
850
+ class DeleteVoiceConnectorTerminationRequest < Struct.new(
851
+ :voice_connector_id)
852
+ SENSITIVE = []
853
+ include Aws::Structure
854
+ end
855
+
856
+ # @note When making an API call, you may pass DisassociatePhoneNumbersFromVoiceConnectorGroupRequest
857
+ # data as a hash:
858
+ #
859
+ # {
860
+ # voice_connector_group_id: "NonEmptyString", # required
861
+ # e164_phone_numbers: ["E164PhoneNumber"], # required
862
+ # }
863
+ #
864
+ # @!attribute [rw] voice_connector_group_id
865
+ # @return [String]
866
+ #
867
+ # @!attribute [rw] e164_phone_numbers
868
+ # @return [Array<String>]
869
+ #
870
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/DisassociatePhoneNumbersFromVoiceConnectorGroupRequest AWS API Documentation
871
+ #
872
+ class DisassociatePhoneNumbersFromVoiceConnectorGroupRequest < Struct.new(
873
+ :voice_connector_group_id,
874
+ :e164_phone_numbers)
875
+ SENSITIVE = []
876
+ include Aws::Structure
877
+ end
878
+
879
+ # @!attribute [rw] phone_number_errors
880
+ # @return [Array<Types::PhoneNumberError>]
881
+ #
882
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/DisassociatePhoneNumbersFromVoiceConnectorGroupResponse AWS API Documentation
883
+ #
884
+ class DisassociatePhoneNumbersFromVoiceConnectorGroupResponse < Struct.new(
885
+ :phone_number_errors)
886
+ SENSITIVE = []
887
+ include Aws::Structure
888
+ end
889
+
890
+ # @note When making an API call, you may pass DisassociatePhoneNumbersFromVoiceConnectorRequest
891
+ # data as a hash:
892
+ #
893
+ # {
894
+ # voice_connector_id: "NonEmptyString", # required
895
+ # e164_phone_numbers: ["E164PhoneNumber"], # required
896
+ # }
897
+ #
898
+ # @!attribute [rw] voice_connector_id
899
+ # @return [String]
900
+ #
901
+ # @!attribute [rw] e164_phone_numbers
902
+ # @return [Array<String>]
903
+ #
904
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/DisassociatePhoneNumbersFromVoiceConnectorRequest AWS API Documentation
905
+ #
906
+ class DisassociatePhoneNumbersFromVoiceConnectorRequest < Struct.new(
907
+ :voice_connector_id,
908
+ :e164_phone_numbers)
909
+ SENSITIVE = []
910
+ include Aws::Structure
911
+ end
912
+
913
+ # @!attribute [rw] phone_number_errors
914
+ # @return [Array<Types::PhoneNumberError>]
915
+ #
916
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/DisassociatePhoneNumbersFromVoiceConnectorResponse AWS API Documentation
917
+ #
918
+ class DisassociatePhoneNumbersFromVoiceConnectorResponse < Struct.new(
919
+ :phone_number_errors)
920
+ SENSITIVE = []
921
+ include Aws::Structure
922
+ end
923
+
924
+ # @note When making an API call, you may pass EmergencyCallingConfiguration
925
+ # data as a hash:
926
+ #
927
+ # {
928
+ # dnis: [
929
+ # {
930
+ # emergency_phone_number: "E164PhoneNumber", # required
931
+ # test_phone_number: "E164PhoneNumber",
932
+ # calling_country: "Alpha2CountryCode", # required
933
+ # },
934
+ # ],
935
+ # }
936
+ #
937
+ # @!attribute [rw] dnis
938
+ # @return [Array<Types::DNISEmergencyCallingConfiguration>]
939
+ #
940
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/EmergencyCallingConfiguration AWS API Documentation
941
+ #
942
+ class EmergencyCallingConfiguration < Struct.new(
943
+ :dnis)
944
+ SENSITIVE = []
945
+ include Aws::Structure
946
+ end
947
+
948
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/ForbiddenException AWS API Documentation
949
+ #
950
+ class ForbiddenException < Aws::EmptyStructure; end
951
+
952
+ # @note When making an API call, you may pass GeoMatchParams
953
+ # data as a hash:
954
+ #
955
+ # {
956
+ # country: "Country", # required
957
+ # area_code: "AreaCode", # required
958
+ # }
959
+ #
960
+ # @!attribute [rw] country
961
+ # @return [String]
962
+ #
963
+ # @!attribute [rw] area_code
964
+ # @return [String]
965
+ #
966
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/GeoMatchParams AWS API Documentation
967
+ #
968
+ class GeoMatchParams < Struct.new(
969
+ :country,
970
+ :area_code)
971
+ SENSITIVE = []
972
+ include Aws::Structure
973
+ end
974
+
975
+ # @!attribute [rw] voice_connector
976
+ # @return [Types::VoiceConnectorSettings]
977
+ #
978
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/GetGlobalSettingsResponse AWS API Documentation
979
+ #
980
+ class GetGlobalSettingsResponse < Struct.new(
981
+ :voice_connector)
982
+ SENSITIVE = []
983
+ include Aws::Structure
984
+ end
985
+
986
+ # @note When making an API call, you may pass GetPhoneNumberOrderRequest
987
+ # data as a hash:
988
+ #
989
+ # {
990
+ # phone_number_order_id: "GuidString", # required
991
+ # }
992
+ #
993
+ # @!attribute [rw] phone_number_order_id
994
+ # @return [String]
995
+ #
996
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/GetPhoneNumberOrderRequest AWS API Documentation
997
+ #
998
+ class GetPhoneNumberOrderRequest < Struct.new(
999
+ :phone_number_order_id)
1000
+ SENSITIVE = []
1001
+ include Aws::Structure
1002
+ end
1003
+
1004
+ # @!attribute [rw] phone_number_order
1005
+ # @return [Types::PhoneNumberOrder]
1006
+ #
1007
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/GetPhoneNumberOrderResponse AWS API Documentation
1008
+ #
1009
+ class GetPhoneNumberOrderResponse < Struct.new(
1010
+ :phone_number_order)
1011
+ SENSITIVE = []
1012
+ include Aws::Structure
1013
+ end
1014
+
1015
+ # @note When making an API call, you may pass GetPhoneNumberRequest
1016
+ # data as a hash:
1017
+ #
1018
+ # {
1019
+ # phone_number_id: "SensitiveNonEmptyString", # required
1020
+ # }
1021
+ #
1022
+ # @!attribute [rw] phone_number_id
1023
+ # @return [String]
1024
+ #
1025
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/GetPhoneNumberRequest AWS API Documentation
1026
+ #
1027
+ class GetPhoneNumberRequest < Struct.new(
1028
+ :phone_number_id)
1029
+ SENSITIVE = [:phone_number_id]
1030
+ include Aws::Structure
1031
+ end
1032
+
1033
+ # @!attribute [rw] phone_number
1034
+ # @return [Types::PhoneNumber]
1035
+ #
1036
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/GetPhoneNumberResponse AWS API Documentation
1037
+ #
1038
+ class GetPhoneNumberResponse < Struct.new(
1039
+ :phone_number)
1040
+ SENSITIVE = []
1041
+ include Aws::Structure
1042
+ end
1043
+
1044
+ # @!attribute [rw] calling_name
1045
+ # @return [String]
1046
+ #
1047
+ # @!attribute [rw] calling_name_updated_timestamp
1048
+ # @return [Time]
1049
+ #
1050
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/GetPhoneNumberSettingsResponse AWS API Documentation
1051
+ #
1052
+ class GetPhoneNumberSettingsResponse < Struct.new(
1053
+ :calling_name,
1054
+ :calling_name_updated_timestamp)
1055
+ SENSITIVE = [:calling_name]
1056
+ include Aws::Structure
1057
+ end
1058
+
1059
+ # @note When making an API call, you may pass GetProxySessionRequest
1060
+ # data as a hash:
1061
+ #
1062
+ # {
1063
+ # voice_connector_id: "NonEmptyString128", # required
1064
+ # proxy_session_id: "NonEmptyString128", # required
1065
+ # }
1066
+ #
1067
+ # @!attribute [rw] voice_connector_id
1068
+ # @return [String]
1069
+ #
1070
+ # @!attribute [rw] proxy_session_id
1071
+ # @return [String]
1072
+ #
1073
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/GetProxySessionRequest AWS API Documentation
1074
+ #
1075
+ class GetProxySessionRequest < Struct.new(
1076
+ :voice_connector_id,
1077
+ :proxy_session_id)
1078
+ SENSITIVE = []
1079
+ include Aws::Structure
1080
+ end
1081
+
1082
+ # @!attribute [rw] proxy_session
1083
+ # @return [Types::ProxySession]
1084
+ #
1085
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/GetProxySessionResponse AWS API Documentation
1086
+ #
1087
+ class GetProxySessionResponse < Struct.new(
1088
+ :proxy_session)
1089
+ SENSITIVE = []
1090
+ include Aws::Structure
1091
+ end
1092
+
1093
+ # @note When making an API call, you may pass GetSipMediaApplicationAlexaSkillConfigurationRequest
1094
+ # data as a hash:
1095
+ #
1096
+ # {
1097
+ # sip_media_application_id: "NonEmptyString", # required
1098
+ # }
1099
+ #
1100
+ # @!attribute [rw] sip_media_application_id
1101
+ # @return [String]
1102
+ #
1103
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/GetSipMediaApplicationAlexaSkillConfigurationRequest AWS API Documentation
1104
+ #
1105
+ class GetSipMediaApplicationAlexaSkillConfigurationRequest < Struct.new(
1106
+ :sip_media_application_id)
1107
+ SENSITIVE = []
1108
+ include Aws::Structure
1109
+ end
1110
+
1111
+ # @!attribute [rw] sip_media_application_alexa_skill_configuration
1112
+ # @return [Types::SipMediaApplicationAlexaSkillConfiguration]
1113
+ #
1114
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/GetSipMediaApplicationAlexaSkillConfigurationResponse AWS API Documentation
1115
+ #
1116
+ class GetSipMediaApplicationAlexaSkillConfigurationResponse < Struct.new(
1117
+ :sip_media_application_alexa_skill_configuration)
1118
+ SENSITIVE = []
1119
+ include Aws::Structure
1120
+ end
1121
+
1122
+ # @note When making an API call, you may pass GetSipMediaApplicationLoggingConfigurationRequest
1123
+ # data as a hash:
1124
+ #
1125
+ # {
1126
+ # sip_media_application_id: "NonEmptyString", # required
1127
+ # }
1128
+ #
1129
+ # @!attribute [rw] sip_media_application_id
1130
+ # @return [String]
1131
+ #
1132
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/GetSipMediaApplicationLoggingConfigurationRequest AWS API Documentation
1133
+ #
1134
+ class GetSipMediaApplicationLoggingConfigurationRequest < Struct.new(
1135
+ :sip_media_application_id)
1136
+ SENSITIVE = []
1137
+ include Aws::Structure
1138
+ end
1139
+
1140
+ # @!attribute [rw] sip_media_application_logging_configuration
1141
+ # @return [Types::SipMediaApplicationLoggingConfiguration]
1142
+ #
1143
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/GetSipMediaApplicationLoggingConfigurationResponse AWS API Documentation
1144
+ #
1145
+ class GetSipMediaApplicationLoggingConfigurationResponse < Struct.new(
1146
+ :sip_media_application_logging_configuration)
1147
+ SENSITIVE = []
1148
+ include Aws::Structure
1149
+ end
1150
+
1151
+ # @note When making an API call, you may pass GetSipMediaApplicationRequest
1152
+ # data as a hash:
1153
+ #
1154
+ # {
1155
+ # sip_media_application_id: "NonEmptyString", # required
1156
+ # }
1157
+ #
1158
+ # @!attribute [rw] sip_media_application_id
1159
+ # @return [String]
1160
+ #
1161
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/GetSipMediaApplicationRequest AWS API Documentation
1162
+ #
1163
+ class GetSipMediaApplicationRequest < Struct.new(
1164
+ :sip_media_application_id)
1165
+ SENSITIVE = []
1166
+ include Aws::Structure
1167
+ end
1168
+
1169
+ # @!attribute [rw] sip_media_application
1170
+ # @return [Types::SipMediaApplication]
1171
+ #
1172
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/GetSipMediaApplicationResponse AWS API Documentation
1173
+ #
1174
+ class GetSipMediaApplicationResponse < Struct.new(
1175
+ :sip_media_application)
1176
+ SENSITIVE = []
1177
+ include Aws::Structure
1178
+ end
1179
+
1180
+ # @note When making an API call, you may pass GetSipRuleRequest
1181
+ # data as a hash:
1182
+ #
1183
+ # {
1184
+ # sip_rule_id: "NonEmptyString", # required
1185
+ # }
1186
+ #
1187
+ # @!attribute [rw] sip_rule_id
1188
+ # @return [String]
1189
+ #
1190
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/GetSipRuleRequest AWS API Documentation
1191
+ #
1192
+ class GetSipRuleRequest < Struct.new(
1193
+ :sip_rule_id)
1194
+ SENSITIVE = []
1195
+ include Aws::Structure
1196
+ end
1197
+
1198
+ # @!attribute [rw] sip_rule
1199
+ # @return [Types::SipRule]
1200
+ #
1201
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/GetSipRuleResponse AWS API Documentation
1202
+ #
1203
+ class GetSipRuleResponse < Struct.new(
1204
+ :sip_rule)
1205
+ SENSITIVE = []
1206
+ include Aws::Structure
1207
+ end
1208
+
1209
+ # @note When making an API call, you may pass GetVoiceConnectorEmergencyCallingConfigurationRequest
1210
+ # data as a hash:
1211
+ #
1212
+ # {
1213
+ # voice_connector_id: "NonEmptyString", # required
1214
+ # }
1215
+ #
1216
+ # @!attribute [rw] voice_connector_id
1217
+ # @return [String]
1218
+ #
1219
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/GetVoiceConnectorEmergencyCallingConfigurationRequest AWS API Documentation
1220
+ #
1221
+ class GetVoiceConnectorEmergencyCallingConfigurationRequest < Struct.new(
1222
+ :voice_connector_id)
1223
+ SENSITIVE = []
1224
+ include Aws::Structure
1225
+ end
1226
+
1227
+ # @!attribute [rw] emergency_calling_configuration
1228
+ # @return [Types::EmergencyCallingConfiguration]
1229
+ #
1230
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/GetVoiceConnectorEmergencyCallingConfigurationResponse AWS API Documentation
1231
+ #
1232
+ class GetVoiceConnectorEmergencyCallingConfigurationResponse < Struct.new(
1233
+ :emergency_calling_configuration)
1234
+ SENSITIVE = []
1235
+ include Aws::Structure
1236
+ end
1237
+
1238
+ # @note When making an API call, you may pass GetVoiceConnectorGroupRequest
1239
+ # data as a hash:
1240
+ #
1241
+ # {
1242
+ # voice_connector_group_id: "NonEmptyString", # required
1243
+ # }
1244
+ #
1245
+ # @!attribute [rw] voice_connector_group_id
1246
+ # @return [String]
1247
+ #
1248
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/GetVoiceConnectorGroupRequest AWS API Documentation
1249
+ #
1250
+ class GetVoiceConnectorGroupRequest < Struct.new(
1251
+ :voice_connector_group_id)
1252
+ SENSITIVE = []
1253
+ include Aws::Structure
1254
+ end
1255
+
1256
+ # @!attribute [rw] voice_connector_group
1257
+ # @return [Types::VoiceConnectorGroup]
1258
+ #
1259
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/GetVoiceConnectorGroupResponse AWS API Documentation
1260
+ #
1261
+ class GetVoiceConnectorGroupResponse < Struct.new(
1262
+ :voice_connector_group)
1263
+ SENSITIVE = []
1264
+ include Aws::Structure
1265
+ end
1266
+
1267
+ # @note When making an API call, you may pass GetVoiceConnectorLoggingConfigurationRequest
1268
+ # data as a hash:
1269
+ #
1270
+ # {
1271
+ # voice_connector_id: "NonEmptyString", # required
1272
+ # }
1273
+ #
1274
+ # @!attribute [rw] voice_connector_id
1275
+ # @return [String]
1276
+ #
1277
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/GetVoiceConnectorLoggingConfigurationRequest AWS API Documentation
1278
+ #
1279
+ class GetVoiceConnectorLoggingConfigurationRequest < Struct.new(
1280
+ :voice_connector_id)
1281
+ SENSITIVE = []
1282
+ include Aws::Structure
1283
+ end
1284
+
1285
+ # @!attribute [rw] logging_configuration
1286
+ # @return [Types::LoggingConfiguration]
1287
+ #
1288
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/GetVoiceConnectorLoggingConfigurationResponse AWS API Documentation
1289
+ #
1290
+ class GetVoiceConnectorLoggingConfigurationResponse < Struct.new(
1291
+ :logging_configuration)
1292
+ SENSITIVE = []
1293
+ include Aws::Structure
1294
+ end
1295
+
1296
+ # @note When making an API call, you may pass GetVoiceConnectorOriginationRequest
1297
+ # data as a hash:
1298
+ #
1299
+ # {
1300
+ # voice_connector_id: "NonEmptyString", # required
1301
+ # }
1302
+ #
1303
+ # @!attribute [rw] voice_connector_id
1304
+ # @return [String]
1305
+ #
1306
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/GetVoiceConnectorOriginationRequest AWS API Documentation
1307
+ #
1308
+ class GetVoiceConnectorOriginationRequest < Struct.new(
1309
+ :voice_connector_id)
1310
+ SENSITIVE = []
1311
+ include Aws::Structure
1312
+ end
1313
+
1314
+ # @!attribute [rw] origination
1315
+ # @return [Types::Origination]
1316
+ #
1317
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/GetVoiceConnectorOriginationResponse AWS API Documentation
1318
+ #
1319
+ class GetVoiceConnectorOriginationResponse < Struct.new(
1320
+ :origination)
1321
+ SENSITIVE = []
1322
+ include Aws::Structure
1323
+ end
1324
+
1325
+ # @note When making an API call, you may pass GetVoiceConnectorProxyRequest
1326
+ # data as a hash:
1327
+ #
1328
+ # {
1329
+ # voice_connector_id: "NonEmptyString128", # required
1330
+ # }
1331
+ #
1332
+ # @!attribute [rw] voice_connector_id
1333
+ # @return [String]
1334
+ #
1335
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/GetVoiceConnectorProxyRequest AWS API Documentation
1336
+ #
1337
+ class GetVoiceConnectorProxyRequest < Struct.new(
1338
+ :voice_connector_id)
1339
+ SENSITIVE = []
1340
+ include Aws::Structure
1341
+ end
1342
+
1343
+ # @!attribute [rw] proxy
1344
+ # @return [Types::Proxy]
1345
+ #
1346
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/GetVoiceConnectorProxyResponse AWS API Documentation
1347
+ #
1348
+ class GetVoiceConnectorProxyResponse < Struct.new(
1349
+ :proxy)
1350
+ SENSITIVE = []
1351
+ include Aws::Structure
1352
+ end
1353
+
1354
+ # @note When making an API call, you may pass GetVoiceConnectorRequest
1355
+ # data as a hash:
1356
+ #
1357
+ # {
1358
+ # voice_connector_id: "NonEmptyString", # required
1359
+ # }
1360
+ #
1361
+ # @!attribute [rw] voice_connector_id
1362
+ # @return [String]
1363
+ #
1364
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/GetVoiceConnectorRequest AWS API Documentation
1365
+ #
1366
+ class GetVoiceConnectorRequest < Struct.new(
1367
+ :voice_connector_id)
1368
+ SENSITIVE = []
1369
+ include Aws::Structure
1370
+ end
1371
+
1372
+ # @!attribute [rw] voice_connector
1373
+ # @return [Types::VoiceConnector]
1374
+ #
1375
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/GetVoiceConnectorResponse AWS API Documentation
1376
+ #
1377
+ class GetVoiceConnectorResponse < Struct.new(
1378
+ :voice_connector)
1379
+ SENSITIVE = []
1380
+ include Aws::Structure
1381
+ end
1382
+
1383
+ # @note When making an API call, you may pass GetVoiceConnectorStreamingConfigurationRequest
1384
+ # data as a hash:
1385
+ #
1386
+ # {
1387
+ # voice_connector_id: "NonEmptyString", # required
1388
+ # }
1389
+ #
1390
+ # @!attribute [rw] voice_connector_id
1391
+ # @return [String]
1392
+ #
1393
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/GetVoiceConnectorStreamingConfigurationRequest AWS API Documentation
1394
+ #
1395
+ class GetVoiceConnectorStreamingConfigurationRequest < Struct.new(
1396
+ :voice_connector_id)
1397
+ SENSITIVE = []
1398
+ include Aws::Structure
1399
+ end
1400
+
1401
+ # @!attribute [rw] streaming_configuration
1402
+ # @return [Types::StreamingConfiguration]
1403
+ #
1404
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/GetVoiceConnectorStreamingConfigurationResponse AWS API Documentation
1405
+ #
1406
+ class GetVoiceConnectorStreamingConfigurationResponse < Struct.new(
1407
+ :streaming_configuration)
1408
+ SENSITIVE = []
1409
+ include Aws::Structure
1410
+ end
1411
+
1412
+ # @note When making an API call, you may pass GetVoiceConnectorTerminationHealthRequest
1413
+ # data as a hash:
1414
+ #
1415
+ # {
1416
+ # voice_connector_id: "NonEmptyString", # required
1417
+ # }
1418
+ #
1419
+ # @!attribute [rw] voice_connector_id
1420
+ # @return [String]
1421
+ #
1422
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/GetVoiceConnectorTerminationHealthRequest AWS API Documentation
1423
+ #
1424
+ class GetVoiceConnectorTerminationHealthRequest < Struct.new(
1425
+ :voice_connector_id)
1426
+ SENSITIVE = []
1427
+ include Aws::Structure
1428
+ end
1429
+
1430
+ # @!attribute [rw] termination_health
1431
+ # @return [Types::TerminationHealth]
1432
+ #
1433
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/GetVoiceConnectorTerminationHealthResponse AWS API Documentation
1434
+ #
1435
+ class GetVoiceConnectorTerminationHealthResponse < Struct.new(
1436
+ :termination_health)
1437
+ SENSITIVE = []
1438
+ include Aws::Structure
1439
+ end
1440
+
1441
+ # @note When making an API call, you may pass GetVoiceConnectorTerminationRequest
1442
+ # data as a hash:
1443
+ #
1444
+ # {
1445
+ # voice_connector_id: "NonEmptyString", # required
1446
+ # }
1447
+ #
1448
+ # @!attribute [rw] voice_connector_id
1449
+ # @return [String]
1450
+ #
1451
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/GetVoiceConnectorTerminationRequest AWS API Documentation
1452
+ #
1453
+ class GetVoiceConnectorTerminationRequest < Struct.new(
1454
+ :voice_connector_id)
1455
+ SENSITIVE = []
1456
+ include Aws::Structure
1457
+ end
1458
+
1459
+ # @!attribute [rw] termination
1460
+ # @return [Types::Termination]
1461
+ #
1462
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/GetVoiceConnectorTerminationResponse AWS API Documentation
1463
+ #
1464
+ class GetVoiceConnectorTerminationResponse < Struct.new(
1465
+ :termination)
1466
+ SENSITIVE = []
1467
+ include Aws::Structure
1468
+ end
1469
+
1470
+ # @!attribute [rw] voice_connector_regions
1471
+ # @return [Array<String>]
1472
+ #
1473
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/ListAvailableVoiceConnectorRegionsResponse AWS API Documentation
1474
+ #
1475
+ class ListAvailableVoiceConnectorRegionsResponse < Struct.new(
1476
+ :voice_connector_regions)
1477
+ SENSITIVE = []
1478
+ include Aws::Structure
1479
+ end
1480
+
1481
+ # @note When making an API call, you may pass ListPhoneNumberOrdersRequest
1482
+ # data as a hash:
1483
+ #
1484
+ # {
1485
+ # next_token: "String",
1486
+ # max_results: 1,
1487
+ # }
1488
+ #
1489
+ # @!attribute [rw] next_token
1490
+ # @return [String]
1491
+ #
1492
+ # @!attribute [rw] max_results
1493
+ # @return [Integer]
1494
+ #
1495
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/ListPhoneNumberOrdersRequest AWS API Documentation
1496
+ #
1497
+ class ListPhoneNumberOrdersRequest < Struct.new(
1498
+ :next_token,
1499
+ :max_results)
1500
+ SENSITIVE = []
1501
+ include Aws::Structure
1502
+ end
1503
+
1504
+ # @!attribute [rw] phone_number_orders
1505
+ # @return [Array<Types::PhoneNumberOrder>]
1506
+ #
1507
+ # @!attribute [rw] next_token
1508
+ # @return [String]
1509
+ #
1510
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/ListPhoneNumberOrdersResponse AWS API Documentation
1511
+ #
1512
+ class ListPhoneNumberOrdersResponse < Struct.new(
1513
+ :phone_number_orders,
1514
+ :next_token)
1515
+ SENSITIVE = []
1516
+ include Aws::Structure
1517
+ end
1518
+
1519
+ # @note When making an API call, you may pass ListPhoneNumbersRequest
1520
+ # data as a hash:
1521
+ #
1522
+ # {
1523
+ # status: "String",
1524
+ # product_type: "VoiceConnector", # accepts VoiceConnector, SipMediaApplicationDialIn
1525
+ # filter_name: "VoiceConnectorId", # accepts VoiceConnectorId, VoiceConnectorGroupId, SipRuleId
1526
+ # filter_value: "String",
1527
+ # max_results: 1,
1528
+ # next_token: "String",
1529
+ # }
1530
+ #
1531
+ # @!attribute [rw] status
1532
+ # @return [String]
1533
+ #
1534
+ # @!attribute [rw] product_type
1535
+ # @return [String]
1536
+ #
1537
+ # @!attribute [rw] filter_name
1538
+ # @return [String]
1539
+ #
1540
+ # @!attribute [rw] filter_value
1541
+ # @return [String]
1542
+ #
1543
+ # @!attribute [rw] max_results
1544
+ # @return [Integer]
1545
+ #
1546
+ # @!attribute [rw] next_token
1547
+ # @return [String]
1548
+ #
1549
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/ListPhoneNumbersRequest AWS API Documentation
1550
+ #
1551
+ class ListPhoneNumbersRequest < Struct.new(
1552
+ :status,
1553
+ :product_type,
1554
+ :filter_name,
1555
+ :filter_value,
1556
+ :max_results,
1557
+ :next_token)
1558
+ SENSITIVE = []
1559
+ include Aws::Structure
1560
+ end
1561
+
1562
+ # @!attribute [rw] phone_numbers
1563
+ # @return [Array<Types::PhoneNumber>]
1564
+ #
1565
+ # @!attribute [rw] next_token
1566
+ # @return [String]
1567
+ #
1568
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/ListPhoneNumbersResponse AWS API Documentation
1569
+ #
1570
+ class ListPhoneNumbersResponse < Struct.new(
1571
+ :phone_numbers,
1572
+ :next_token)
1573
+ SENSITIVE = []
1574
+ include Aws::Structure
1575
+ end
1576
+
1577
+ # @note When making an API call, you may pass ListProxySessionsRequest
1578
+ # data as a hash:
1579
+ #
1580
+ # {
1581
+ # voice_connector_id: "NonEmptyString128", # required
1582
+ # status: "Open", # accepts Open, InProgress, Closed
1583
+ # next_token: "NextTokenString",
1584
+ # max_results: 1,
1585
+ # }
1586
+ #
1587
+ # @!attribute [rw] voice_connector_id
1588
+ # @return [String]
1589
+ #
1590
+ # @!attribute [rw] status
1591
+ # @return [String]
1592
+ #
1593
+ # @!attribute [rw] next_token
1594
+ # @return [String]
1595
+ #
1596
+ # @!attribute [rw] max_results
1597
+ # @return [Integer]
1598
+ #
1599
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/ListProxySessionsRequest AWS API Documentation
1600
+ #
1601
+ class ListProxySessionsRequest < Struct.new(
1602
+ :voice_connector_id,
1603
+ :status,
1604
+ :next_token,
1605
+ :max_results)
1606
+ SENSITIVE = []
1607
+ include Aws::Structure
1608
+ end
1609
+
1610
+ # @!attribute [rw] proxy_sessions
1611
+ # @return [Array<Types::ProxySession>]
1612
+ #
1613
+ # @!attribute [rw] next_token
1614
+ # @return [String]
1615
+ #
1616
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/ListProxySessionsResponse AWS API Documentation
1617
+ #
1618
+ class ListProxySessionsResponse < Struct.new(
1619
+ :proxy_sessions,
1620
+ :next_token)
1621
+ SENSITIVE = []
1622
+ include Aws::Structure
1623
+ end
1624
+
1625
+ # @note When making an API call, you may pass ListSipMediaApplicationsRequest
1626
+ # data as a hash:
1627
+ #
1628
+ # {
1629
+ # max_results: 1,
1630
+ # next_token: "NextTokenString",
1631
+ # }
1632
+ #
1633
+ # @!attribute [rw] max_results
1634
+ # @return [Integer]
1635
+ #
1636
+ # @!attribute [rw] next_token
1637
+ # @return [String]
1638
+ #
1639
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/ListSipMediaApplicationsRequest AWS API Documentation
1640
+ #
1641
+ class ListSipMediaApplicationsRequest < Struct.new(
1642
+ :max_results,
1643
+ :next_token)
1644
+ SENSITIVE = []
1645
+ include Aws::Structure
1646
+ end
1647
+
1648
+ # @!attribute [rw] sip_media_applications
1649
+ # @return [Array<Types::SipMediaApplication>]
1650
+ #
1651
+ # @!attribute [rw] next_token
1652
+ # @return [String]
1653
+ #
1654
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/ListSipMediaApplicationsResponse AWS API Documentation
1655
+ #
1656
+ class ListSipMediaApplicationsResponse < Struct.new(
1657
+ :sip_media_applications,
1658
+ :next_token)
1659
+ SENSITIVE = []
1660
+ include Aws::Structure
1661
+ end
1662
+
1663
+ # @note When making an API call, you may pass ListSipRulesRequest
1664
+ # data as a hash:
1665
+ #
1666
+ # {
1667
+ # sip_media_application_id: "NonEmptyString",
1668
+ # max_results: 1,
1669
+ # next_token: "NextTokenString",
1670
+ # }
1671
+ #
1672
+ # @!attribute [rw] sip_media_application_id
1673
+ # @return [String]
1674
+ #
1675
+ # @!attribute [rw] max_results
1676
+ # @return [Integer]
1677
+ #
1678
+ # @!attribute [rw] next_token
1679
+ # @return [String]
1680
+ #
1681
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/ListSipRulesRequest AWS API Documentation
1682
+ #
1683
+ class ListSipRulesRequest < Struct.new(
1684
+ :sip_media_application_id,
1685
+ :max_results,
1686
+ :next_token)
1687
+ SENSITIVE = []
1688
+ include Aws::Structure
1689
+ end
1690
+
1691
+ # @!attribute [rw] sip_rules
1692
+ # @return [Array<Types::SipRule>]
1693
+ #
1694
+ # @!attribute [rw] next_token
1695
+ # @return [String]
1696
+ #
1697
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/ListSipRulesResponse AWS API Documentation
1698
+ #
1699
+ class ListSipRulesResponse < Struct.new(
1700
+ :sip_rules,
1701
+ :next_token)
1702
+ SENSITIVE = []
1703
+ include Aws::Structure
1704
+ end
1705
+
1706
+ # @note When making an API call, you may pass ListSupportedPhoneNumberCountriesRequest
1707
+ # data as a hash:
1708
+ #
1709
+ # {
1710
+ # product_type: "VoiceConnector", # required, accepts VoiceConnector, SipMediaApplicationDialIn
1711
+ # }
1712
+ #
1713
+ # @!attribute [rw] product_type
1714
+ # @return [String]
1715
+ #
1716
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/ListSupportedPhoneNumberCountriesRequest AWS API Documentation
1717
+ #
1718
+ class ListSupportedPhoneNumberCountriesRequest < Struct.new(
1719
+ :product_type)
1720
+ SENSITIVE = []
1721
+ include Aws::Structure
1722
+ end
1723
+
1724
+ # @!attribute [rw] phone_number_countries
1725
+ # @return [Array<Types::PhoneNumberCountry>]
1726
+ #
1727
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/ListSupportedPhoneNumberCountriesResponse AWS API Documentation
1728
+ #
1729
+ class ListSupportedPhoneNumberCountriesResponse < Struct.new(
1730
+ :phone_number_countries)
1731
+ SENSITIVE = []
1732
+ include Aws::Structure
1733
+ end
1734
+
1735
+ # @note When making an API call, you may pass ListVoiceConnectorGroupsRequest
1736
+ # data as a hash:
1737
+ #
1738
+ # {
1739
+ # next_token: "String",
1740
+ # max_results: 1,
1741
+ # }
1742
+ #
1743
+ # @!attribute [rw] next_token
1744
+ # @return [String]
1745
+ #
1746
+ # @!attribute [rw] max_results
1747
+ # @return [Integer]
1748
+ #
1749
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/ListVoiceConnectorGroupsRequest AWS API Documentation
1750
+ #
1751
+ class ListVoiceConnectorGroupsRequest < Struct.new(
1752
+ :next_token,
1753
+ :max_results)
1754
+ SENSITIVE = []
1755
+ include Aws::Structure
1756
+ end
1757
+
1758
+ # @!attribute [rw] voice_connector_groups
1759
+ # @return [Array<Types::VoiceConnectorGroup>]
1760
+ #
1761
+ # @!attribute [rw] next_token
1762
+ # @return [String]
1763
+ #
1764
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/ListVoiceConnectorGroupsResponse AWS API Documentation
1765
+ #
1766
+ class ListVoiceConnectorGroupsResponse < Struct.new(
1767
+ :voice_connector_groups,
1768
+ :next_token)
1769
+ SENSITIVE = []
1770
+ include Aws::Structure
1771
+ end
1772
+
1773
+ # @note When making an API call, you may pass ListVoiceConnectorTerminationCredentialsRequest
1774
+ # data as a hash:
1775
+ #
1776
+ # {
1777
+ # voice_connector_id: "NonEmptyString", # required
1778
+ # }
1779
+ #
1780
+ # @!attribute [rw] voice_connector_id
1781
+ # @return [String]
1782
+ #
1783
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/ListVoiceConnectorTerminationCredentialsRequest AWS API Documentation
1784
+ #
1785
+ class ListVoiceConnectorTerminationCredentialsRequest < Struct.new(
1786
+ :voice_connector_id)
1787
+ SENSITIVE = []
1788
+ include Aws::Structure
1789
+ end
1790
+
1791
+ # @!attribute [rw] usernames
1792
+ # @return [Array<String>]
1793
+ #
1794
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/ListVoiceConnectorTerminationCredentialsResponse AWS API Documentation
1795
+ #
1796
+ class ListVoiceConnectorTerminationCredentialsResponse < Struct.new(
1797
+ :usernames)
1798
+ SENSITIVE = []
1799
+ include Aws::Structure
1800
+ end
1801
+
1802
+ # @note When making an API call, you may pass ListVoiceConnectorsRequest
1803
+ # data as a hash:
1804
+ #
1805
+ # {
1806
+ # next_token: "String",
1807
+ # max_results: 1,
1808
+ # }
1809
+ #
1810
+ # @!attribute [rw] next_token
1811
+ # @return [String]
1812
+ #
1813
+ # @!attribute [rw] max_results
1814
+ # @return [Integer]
1815
+ #
1816
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/ListVoiceConnectorsRequest AWS API Documentation
1817
+ #
1818
+ class ListVoiceConnectorsRequest < Struct.new(
1819
+ :next_token,
1820
+ :max_results)
1821
+ SENSITIVE = []
1822
+ include Aws::Structure
1823
+ end
1824
+
1825
+ # @!attribute [rw] voice_connectors
1826
+ # @return [Array<Types::VoiceConnector>]
1827
+ #
1828
+ # @!attribute [rw] next_token
1829
+ # @return [String]
1830
+ #
1831
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/ListVoiceConnectorsResponse AWS API Documentation
1832
+ #
1833
+ class ListVoiceConnectorsResponse < Struct.new(
1834
+ :voice_connectors,
1835
+ :next_token)
1836
+ SENSITIVE = []
1837
+ include Aws::Structure
1838
+ end
1839
+
1840
+ # @note When making an API call, you may pass LoggingConfiguration
1841
+ # data as a hash:
1842
+ #
1843
+ # {
1844
+ # enable_sip_logs: false,
1845
+ # }
1846
+ #
1847
+ # @!attribute [rw] enable_sip_logs
1848
+ # @return [Boolean]
1849
+ #
1850
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/LoggingConfiguration AWS API Documentation
1851
+ #
1852
+ class LoggingConfiguration < Struct.new(
1853
+ :enable_sip_logs)
1854
+ SENSITIVE = []
1855
+ include Aws::Structure
1856
+ end
1857
+
1858
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/NotFoundException AWS API Documentation
1859
+ #
1860
+ class NotFoundException < Aws::EmptyStructure; end
1861
+
1862
+ # @!attribute [rw] e164_phone_number
1863
+ # @return [String]
1864
+ #
1865
+ # @!attribute [rw] status
1866
+ # @return [String]
1867
+ #
1868
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/OrderedPhoneNumber AWS API Documentation
1869
+ #
1870
+ class OrderedPhoneNumber < Struct.new(
1871
+ :e164_phone_number,
1872
+ :status)
1873
+ SENSITIVE = [:e164_phone_number]
1874
+ include Aws::Structure
1875
+ end
1876
+
1877
+ # @note When making an API call, you may pass Origination
1878
+ # data as a hash:
1879
+ #
1880
+ # {
1881
+ # routes: [
1882
+ # {
1883
+ # host: "String",
1884
+ # port: 1,
1885
+ # protocol: "TCP", # accepts TCP, UDP
1886
+ # priority: 1,
1887
+ # weight: 1,
1888
+ # },
1889
+ # ],
1890
+ # disabled: false,
1891
+ # }
1892
+ #
1893
+ # @!attribute [rw] routes
1894
+ # @return [Array<Types::OriginationRoute>]
1895
+ #
1896
+ # @!attribute [rw] disabled
1897
+ # @return [Boolean]
1898
+ #
1899
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/Origination AWS API Documentation
1900
+ #
1901
+ class Origination < Struct.new(
1902
+ :routes,
1903
+ :disabled)
1904
+ SENSITIVE = []
1905
+ include Aws::Structure
1906
+ end
1907
+
1908
+ # @note When making an API call, you may pass OriginationRoute
1909
+ # data as a hash:
1910
+ #
1911
+ # {
1912
+ # host: "String",
1913
+ # port: 1,
1914
+ # protocol: "TCP", # accepts TCP, UDP
1915
+ # priority: 1,
1916
+ # weight: 1,
1917
+ # }
1918
+ #
1919
+ # @!attribute [rw] host
1920
+ # @return [String]
1921
+ #
1922
+ # @!attribute [rw] port
1923
+ # @return [Integer]
1924
+ #
1925
+ # @!attribute [rw] protocol
1926
+ # @return [String]
1927
+ #
1928
+ # @!attribute [rw] priority
1929
+ # @return [Integer]
1930
+ #
1931
+ # @!attribute [rw] weight
1932
+ # @return [Integer]
1933
+ #
1934
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/OriginationRoute AWS API Documentation
1935
+ #
1936
+ class OriginationRoute < Struct.new(
1937
+ :host,
1938
+ :port,
1939
+ :protocol,
1940
+ :priority,
1941
+ :weight)
1942
+ SENSITIVE = []
1943
+ include Aws::Structure
1944
+ end
1945
+
1946
+ # @!attribute [rw] phone_number
1947
+ # @return [String]
1948
+ #
1949
+ # @!attribute [rw] proxy_phone_number
1950
+ # @return [String]
1951
+ #
1952
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/Participant AWS API Documentation
1953
+ #
1954
+ class Participant < Struct.new(
1955
+ :phone_number,
1956
+ :proxy_phone_number)
1957
+ SENSITIVE = [:phone_number, :proxy_phone_number]
1958
+ include Aws::Structure
1959
+ end
1960
+
1961
+ # @!attribute [rw] phone_number_id
1962
+ # @return [String]
1963
+ #
1964
+ # @!attribute [rw] e164_phone_number
1965
+ # @return [String]
1966
+ #
1967
+ # @!attribute [rw] country
1968
+ # @return [String]
1969
+ #
1970
+ # @!attribute [rw] type
1971
+ # @return [String]
1972
+ #
1973
+ # @!attribute [rw] product_type
1974
+ # @return [String]
1975
+ #
1976
+ # @!attribute [rw] status
1977
+ # @return [String]
1978
+ #
1979
+ # @!attribute [rw] capabilities
1980
+ # @return [Types::PhoneNumberCapabilities]
1981
+ #
1982
+ # @!attribute [rw] associations
1983
+ # @return [Array<Types::PhoneNumberAssociation>]
1984
+ #
1985
+ # @!attribute [rw] calling_name
1986
+ # @return [String]
1987
+ #
1988
+ # @!attribute [rw] calling_name_status
1989
+ # @return [String]
1990
+ #
1991
+ # @!attribute [rw] created_timestamp
1992
+ # @return [Time]
1993
+ #
1994
+ # @!attribute [rw] updated_timestamp
1995
+ # @return [Time]
1996
+ #
1997
+ # @!attribute [rw] deletion_timestamp
1998
+ # @return [Time]
1999
+ #
2000
+ # @!attribute [rw] order_id
2001
+ # @return [String]
2002
+ #
2003
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/PhoneNumber AWS API Documentation
2004
+ #
2005
+ class PhoneNumber < Struct.new(
2006
+ :phone_number_id,
2007
+ :e164_phone_number,
2008
+ :country,
2009
+ :type,
2010
+ :product_type,
2011
+ :status,
2012
+ :capabilities,
2013
+ :associations,
2014
+ :calling_name,
2015
+ :calling_name_status,
2016
+ :created_timestamp,
2017
+ :updated_timestamp,
2018
+ :deletion_timestamp,
2019
+ :order_id)
2020
+ SENSITIVE = [:phone_number_id, :e164_phone_number, :calling_name]
2021
+ include Aws::Structure
2022
+ end
2023
+
2024
+ # @!attribute [rw] value
2025
+ # @return [String]
2026
+ #
2027
+ # @!attribute [rw] name
2028
+ # @return [String]
2029
+ #
2030
+ # @!attribute [rw] associated_timestamp
2031
+ # @return [Time]
2032
+ #
2033
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/PhoneNumberAssociation AWS API Documentation
2034
+ #
2035
+ class PhoneNumberAssociation < Struct.new(
2036
+ :value,
2037
+ :name,
2038
+ :associated_timestamp)
2039
+ SENSITIVE = []
2040
+ include Aws::Structure
2041
+ end
2042
+
2043
+ # @!attribute [rw] inbound_call
2044
+ # @return [Boolean]
2045
+ #
2046
+ # @!attribute [rw] outbound_call
2047
+ # @return [Boolean]
2048
+ #
2049
+ # @!attribute [rw] inbound_sms
2050
+ # @return [Boolean]
2051
+ #
2052
+ # @!attribute [rw] outbound_sms
2053
+ # @return [Boolean]
2054
+ #
2055
+ # @!attribute [rw] inbound_mms
2056
+ # @return [Boolean]
2057
+ #
2058
+ # @!attribute [rw] outbound_mms
2059
+ # @return [Boolean]
2060
+ #
2061
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/PhoneNumberCapabilities AWS API Documentation
2062
+ #
2063
+ class PhoneNumberCapabilities < Struct.new(
2064
+ :inbound_call,
2065
+ :outbound_call,
2066
+ :inbound_sms,
2067
+ :outbound_sms,
2068
+ :inbound_mms,
2069
+ :outbound_mms)
2070
+ SENSITIVE = []
2071
+ include Aws::Structure
2072
+ end
2073
+
2074
+ # @!attribute [rw] country_code
2075
+ # @return [String]
2076
+ #
2077
+ # @!attribute [rw] supported_phone_number_types
2078
+ # @return [Array<String>]
2079
+ #
2080
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/PhoneNumberCountry AWS API Documentation
2081
+ #
2082
+ class PhoneNumberCountry < Struct.new(
2083
+ :country_code,
2084
+ :supported_phone_number_types)
2085
+ SENSITIVE = []
2086
+ include Aws::Structure
2087
+ end
2088
+
2089
+ # @!attribute [rw] phone_number_id
2090
+ # @return [String]
2091
+ #
2092
+ # @!attribute [rw] error_code
2093
+ # @return [String]
2094
+ #
2095
+ # @!attribute [rw] error_message
2096
+ # @return [String]
2097
+ #
2098
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/PhoneNumberError AWS API Documentation
2099
+ #
2100
+ class PhoneNumberError < Struct.new(
2101
+ :phone_number_id,
2102
+ :error_code,
2103
+ :error_message)
2104
+ SENSITIVE = [:phone_number_id]
2105
+ include Aws::Structure
2106
+ end
2107
+
2108
+ # @!attribute [rw] phone_number_order_id
2109
+ # @return [String]
2110
+ #
2111
+ # @!attribute [rw] product_type
2112
+ # @return [String]
2113
+ #
2114
+ # @!attribute [rw] status
2115
+ # @return [String]
2116
+ #
2117
+ # @!attribute [rw] order_type
2118
+ # @return [String]
2119
+ #
2120
+ # @!attribute [rw] ordered_phone_numbers
2121
+ # @return [Array<Types::OrderedPhoneNumber>]
2122
+ #
2123
+ # @!attribute [rw] created_timestamp
2124
+ # @return [Time]
2125
+ #
2126
+ # @!attribute [rw] updated_timestamp
2127
+ # @return [Time]
2128
+ #
2129
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/PhoneNumberOrder AWS API Documentation
2130
+ #
2131
+ class PhoneNumberOrder < Struct.new(
2132
+ :phone_number_order_id,
2133
+ :product_type,
2134
+ :status,
2135
+ :order_type,
2136
+ :ordered_phone_numbers,
2137
+ :created_timestamp,
2138
+ :updated_timestamp)
2139
+ SENSITIVE = []
2140
+ include Aws::Structure
2141
+ end
2142
+
2143
+ # @!attribute [rw] default_session_expiry_minutes
2144
+ # @return [Integer]
2145
+ #
2146
+ # @!attribute [rw] disabled
2147
+ # @return [Boolean]
2148
+ #
2149
+ # @!attribute [rw] fall_back_phone_number
2150
+ # @return [String]
2151
+ #
2152
+ # @!attribute [rw] phone_number_countries
2153
+ # @return [Array<String>]
2154
+ #
2155
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/Proxy AWS API Documentation
2156
+ #
2157
+ class Proxy < Struct.new(
2158
+ :default_session_expiry_minutes,
2159
+ :disabled,
2160
+ :fall_back_phone_number,
2161
+ :phone_number_countries)
2162
+ SENSITIVE = [:fall_back_phone_number]
2163
+ include Aws::Structure
2164
+ end
2165
+
2166
+ # @!attribute [rw] voice_connector_id
2167
+ # @return [String]
2168
+ #
2169
+ # @!attribute [rw] proxy_session_id
2170
+ # @return [String]
2171
+ #
2172
+ # @!attribute [rw] name
2173
+ # @return [String]
2174
+ #
2175
+ # @!attribute [rw] status
2176
+ # @return [String]
2177
+ #
2178
+ # @!attribute [rw] expiry_minutes
2179
+ # @return [Integer]
2180
+ #
2181
+ # @!attribute [rw] capabilities
2182
+ # @return [Array<String>]
2183
+ #
2184
+ # @!attribute [rw] created_timestamp
2185
+ # @return [Time]
2186
+ #
2187
+ # @!attribute [rw] updated_timestamp
2188
+ # @return [Time]
2189
+ #
2190
+ # @!attribute [rw] ended_timestamp
2191
+ # @return [Time]
2192
+ #
2193
+ # @!attribute [rw] participants
2194
+ # @return [Array<Types::Participant>]
2195
+ #
2196
+ # @!attribute [rw] number_selection_behavior
2197
+ # @return [String]
2198
+ #
2199
+ # @!attribute [rw] geo_match_level
2200
+ # @return [String]
2201
+ #
2202
+ # @!attribute [rw] geo_match_params
2203
+ # @return [Types::GeoMatchParams]
2204
+ #
2205
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/ProxySession AWS API Documentation
2206
+ #
2207
+ class ProxySession < Struct.new(
2208
+ :voice_connector_id,
2209
+ :proxy_session_id,
2210
+ :name,
2211
+ :status,
2212
+ :expiry_minutes,
2213
+ :capabilities,
2214
+ :created_timestamp,
2215
+ :updated_timestamp,
2216
+ :ended_timestamp,
2217
+ :participants,
2218
+ :number_selection_behavior,
2219
+ :geo_match_level,
2220
+ :geo_match_params)
2221
+ SENSITIVE = []
2222
+ include Aws::Structure
2223
+ end
2224
+
2225
+ # @note When making an API call, you may pass PutSipMediaApplicationAlexaSkillConfigurationRequest
2226
+ # data as a hash:
2227
+ #
2228
+ # {
2229
+ # sip_media_application_id: "NonEmptyString", # required
2230
+ # sip_media_application_alexa_skill_configuration: {
2231
+ # alexa_skill_status: "ACTIVE", # required, accepts ACTIVE, INACTIVE
2232
+ # alexa_skill_ids: ["AlexaSkillId"], # required
2233
+ # },
2234
+ # }
2235
+ #
2236
+ # @!attribute [rw] sip_media_application_id
2237
+ # @return [String]
2238
+ #
2239
+ # @!attribute [rw] sip_media_application_alexa_skill_configuration
2240
+ # @return [Types::SipMediaApplicationAlexaSkillConfiguration]
2241
+ #
2242
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/PutSipMediaApplicationAlexaSkillConfigurationRequest AWS API Documentation
2243
+ #
2244
+ class PutSipMediaApplicationAlexaSkillConfigurationRequest < Struct.new(
2245
+ :sip_media_application_id,
2246
+ :sip_media_application_alexa_skill_configuration)
2247
+ SENSITIVE = []
2248
+ include Aws::Structure
2249
+ end
2250
+
2251
+ # @!attribute [rw] sip_media_application_alexa_skill_configuration
2252
+ # @return [Types::SipMediaApplicationAlexaSkillConfiguration]
2253
+ #
2254
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/PutSipMediaApplicationAlexaSkillConfigurationResponse AWS API Documentation
2255
+ #
2256
+ class PutSipMediaApplicationAlexaSkillConfigurationResponse < Struct.new(
2257
+ :sip_media_application_alexa_skill_configuration)
2258
+ SENSITIVE = []
2259
+ include Aws::Structure
2260
+ end
2261
+
2262
+ # @note When making an API call, you may pass PutSipMediaApplicationLoggingConfigurationRequest
2263
+ # data as a hash:
2264
+ #
2265
+ # {
2266
+ # sip_media_application_id: "NonEmptyString", # required
2267
+ # sip_media_application_logging_configuration: {
2268
+ # enable_sip_media_application_message_logs: false,
2269
+ # },
2270
+ # }
2271
+ #
2272
+ # @!attribute [rw] sip_media_application_id
2273
+ # @return [String]
2274
+ #
2275
+ # @!attribute [rw] sip_media_application_logging_configuration
2276
+ # @return [Types::SipMediaApplicationLoggingConfiguration]
2277
+ #
2278
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/PutSipMediaApplicationLoggingConfigurationRequest AWS API Documentation
2279
+ #
2280
+ class PutSipMediaApplicationLoggingConfigurationRequest < Struct.new(
2281
+ :sip_media_application_id,
2282
+ :sip_media_application_logging_configuration)
2283
+ SENSITIVE = []
2284
+ include Aws::Structure
2285
+ end
2286
+
2287
+ # @!attribute [rw] sip_media_application_logging_configuration
2288
+ # @return [Types::SipMediaApplicationLoggingConfiguration]
2289
+ #
2290
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/PutSipMediaApplicationLoggingConfigurationResponse AWS API Documentation
2291
+ #
2292
+ class PutSipMediaApplicationLoggingConfigurationResponse < Struct.new(
2293
+ :sip_media_application_logging_configuration)
2294
+ SENSITIVE = []
2295
+ include Aws::Structure
2296
+ end
2297
+
2298
+ # @note When making an API call, you may pass PutVoiceConnectorEmergencyCallingConfigurationRequest
2299
+ # data as a hash:
2300
+ #
2301
+ # {
2302
+ # voice_connector_id: "NonEmptyString", # required
2303
+ # emergency_calling_configuration: { # required
2304
+ # dnis: [
2305
+ # {
2306
+ # emergency_phone_number: "E164PhoneNumber", # required
2307
+ # test_phone_number: "E164PhoneNumber",
2308
+ # calling_country: "Alpha2CountryCode", # required
2309
+ # },
2310
+ # ],
2311
+ # },
2312
+ # }
2313
+ #
2314
+ # @!attribute [rw] voice_connector_id
2315
+ # @return [String]
2316
+ #
2317
+ # @!attribute [rw] emergency_calling_configuration
2318
+ # @return [Types::EmergencyCallingConfiguration]
2319
+ #
2320
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/PutVoiceConnectorEmergencyCallingConfigurationRequest AWS API Documentation
2321
+ #
2322
+ class PutVoiceConnectorEmergencyCallingConfigurationRequest < Struct.new(
2323
+ :voice_connector_id,
2324
+ :emergency_calling_configuration)
2325
+ SENSITIVE = []
2326
+ include Aws::Structure
2327
+ end
2328
+
2329
+ # @!attribute [rw] emergency_calling_configuration
2330
+ # @return [Types::EmergencyCallingConfiguration]
2331
+ #
2332
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/PutVoiceConnectorEmergencyCallingConfigurationResponse AWS API Documentation
2333
+ #
2334
+ class PutVoiceConnectorEmergencyCallingConfigurationResponse < Struct.new(
2335
+ :emergency_calling_configuration)
2336
+ SENSITIVE = []
2337
+ include Aws::Structure
2338
+ end
2339
+
2340
+ # @note When making an API call, you may pass PutVoiceConnectorLoggingConfigurationRequest
2341
+ # data as a hash:
2342
+ #
2343
+ # {
2344
+ # voice_connector_id: "NonEmptyString", # required
2345
+ # logging_configuration: { # required
2346
+ # enable_sip_logs: false,
2347
+ # },
2348
+ # }
2349
+ #
2350
+ # @!attribute [rw] voice_connector_id
2351
+ # @return [String]
2352
+ #
2353
+ # @!attribute [rw] logging_configuration
2354
+ # @return [Types::LoggingConfiguration]
2355
+ #
2356
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/PutVoiceConnectorLoggingConfigurationRequest AWS API Documentation
2357
+ #
2358
+ class PutVoiceConnectorLoggingConfigurationRequest < Struct.new(
2359
+ :voice_connector_id,
2360
+ :logging_configuration)
2361
+ SENSITIVE = []
2362
+ include Aws::Structure
2363
+ end
2364
+
2365
+ # @!attribute [rw] logging_configuration
2366
+ # @return [Types::LoggingConfiguration]
2367
+ #
2368
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/PutVoiceConnectorLoggingConfigurationResponse AWS API Documentation
2369
+ #
2370
+ class PutVoiceConnectorLoggingConfigurationResponse < Struct.new(
2371
+ :logging_configuration)
2372
+ SENSITIVE = []
2373
+ include Aws::Structure
2374
+ end
2375
+
2376
+ # @note When making an API call, you may pass PutVoiceConnectorOriginationRequest
2377
+ # data as a hash:
2378
+ #
2379
+ # {
2380
+ # voice_connector_id: "NonEmptyString", # required
2381
+ # origination: { # required
2382
+ # routes: [
2383
+ # {
2384
+ # host: "String",
2385
+ # port: 1,
2386
+ # protocol: "TCP", # accepts TCP, UDP
2387
+ # priority: 1,
2388
+ # weight: 1,
2389
+ # },
2390
+ # ],
2391
+ # disabled: false,
2392
+ # },
2393
+ # }
2394
+ #
2395
+ # @!attribute [rw] voice_connector_id
2396
+ # @return [String]
2397
+ #
2398
+ # @!attribute [rw] origination
2399
+ # @return [Types::Origination]
2400
+ #
2401
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/PutVoiceConnectorOriginationRequest AWS API Documentation
2402
+ #
2403
+ class PutVoiceConnectorOriginationRequest < Struct.new(
2404
+ :voice_connector_id,
2405
+ :origination)
2406
+ SENSITIVE = []
2407
+ include Aws::Structure
2408
+ end
2409
+
2410
+ # @!attribute [rw] origination
2411
+ # @return [Types::Origination]
2412
+ #
2413
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/PutVoiceConnectorOriginationResponse AWS API Documentation
2414
+ #
2415
+ class PutVoiceConnectorOriginationResponse < Struct.new(
2416
+ :origination)
2417
+ SENSITIVE = []
2418
+ include Aws::Structure
2419
+ end
2420
+
2421
+ # @note When making an API call, you may pass PutVoiceConnectorProxyRequest
2422
+ # data as a hash:
2423
+ #
2424
+ # {
2425
+ # voice_connector_id: "NonEmptyString128", # required
2426
+ # default_session_expiry_minutes: 1, # required
2427
+ # phone_number_pool_countries: ["Country"], # required
2428
+ # fall_back_phone_number: "E164PhoneNumber",
2429
+ # disabled: false,
2430
+ # }
2431
+ #
2432
+ # @!attribute [rw] voice_connector_id
2433
+ # @return [String]
2434
+ #
2435
+ # @!attribute [rw] default_session_expiry_minutes
2436
+ # @return [Integer]
2437
+ #
2438
+ # @!attribute [rw] phone_number_pool_countries
2439
+ # @return [Array<String>]
2440
+ #
2441
+ # @!attribute [rw] fall_back_phone_number
2442
+ # @return [String]
2443
+ #
2444
+ # @!attribute [rw] disabled
2445
+ # @return [Boolean]
2446
+ #
2447
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/PutVoiceConnectorProxyRequest AWS API Documentation
2448
+ #
2449
+ class PutVoiceConnectorProxyRequest < Struct.new(
2450
+ :voice_connector_id,
2451
+ :default_session_expiry_minutes,
2452
+ :phone_number_pool_countries,
2453
+ :fall_back_phone_number,
2454
+ :disabled)
2455
+ SENSITIVE = [:fall_back_phone_number]
2456
+ include Aws::Structure
2457
+ end
2458
+
2459
+ # @!attribute [rw] proxy
2460
+ # @return [Types::Proxy]
2461
+ #
2462
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/PutVoiceConnectorProxyResponse AWS API Documentation
2463
+ #
2464
+ class PutVoiceConnectorProxyResponse < Struct.new(
2465
+ :proxy)
2466
+ SENSITIVE = []
2467
+ include Aws::Structure
2468
+ end
2469
+
2470
+ # @note When making an API call, you may pass PutVoiceConnectorStreamingConfigurationRequest
2471
+ # data as a hash:
2472
+ #
2473
+ # {
2474
+ # voice_connector_id: "NonEmptyString", # required
2475
+ # streaming_configuration: { # required
2476
+ # data_retention_in_hours: 1, # required
2477
+ # disabled: false, # required
2478
+ # streaming_notification_targets: [
2479
+ # {
2480
+ # notification_target: "EventBridge", # accepts EventBridge, SNS, SQS
2481
+ # },
2482
+ # ],
2483
+ # },
2484
+ # }
2485
+ #
2486
+ # @!attribute [rw] voice_connector_id
2487
+ # @return [String]
2488
+ #
2489
+ # @!attribute [rw] streaming_configuration
2490
+ # @return [Types::StreamingConfiguration]
2491
+ #
2492
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/PutVoiceConnectorStreamingConfigurationRequest AWS API Documentation
2493
+ #
2494
+ class PutVoiceConnectorStreamingConfigurationRequest < Struct.new(
2495
+ :voice_connector_id,
2496
+ :streaming_configuration)
2497
+ SENSITIVE = []
2498
+ include Aws::Structure
2499
+ end
2500
+
2501
+ # @!attribute [rw] streaming_configuration
2502
+ # @return [Types::StreamingConfiguration]
2503
+ #
2504
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/PutVoiceConnectorStreamingConfigurationResponse AWS API Documentation
2505
+ #
2506
+ class PutVoiceConnectorStreamingConfigurationResponse < Struct.new(
2507
+ :streaming_configuration)
2508
+ SENSITIVE = []
2509
+ include Aws::Structure
2510
+ end
2511
+
2512
+ # @note When making an API call, you may pass PutVoiceConnectorTerminationCredentialsRequest
2513
+ # data as a hash:
2514
+ #
2515
+ # {
2516
+ # voice_connector_id: "NonEmptyString", # required
2517
+ # credentials: [
2518
+ # {
2519
+ # username: "SensitiveString",
2520
+ # password: "SensitiveString",
2521
+ # },
2522
+ # ],
2523
+ # }
2524
+ #
2525
+ # @!attribute [rw] voice_connector_id
2526
+ # @return [String]
2527
+ #
2528
+ # @!attribute [rw] credentials
2529
+ # @return [Array<Types::Credential>]
2530
+ #
2531
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/PutVoiceConnectorTerminationCredentialsRequest AWS API Documentation
2532
+ #
2533
+ class PutVoiceConnectorTerminationCredentialsRequest < Struct.new(
2534
+ :voice_connector_id,
2535
+ :credentials)
2536
+ SENSITIVE = []
2537
+ include Aws::Structure
2538
+ end
2539
+
2540
+ # @note When making an API call, you may pass PutVoiceConnectorTerminationRequest
2541
+ # data as a hash:
2542
+ #
2543
+ # {
2544
+ # voice_connector_id: "NonEmptyString", # required
2545
+ # termination: { # required
2546
+ # cps_limit: 1,
2547
+ # default_phone_number: "E164PhoneNumber",
2548
+ # calling_regions: ["CallingRegion"],
2549
+ # cidr_allowed_list: ["String"],
2550
+ # disabled: false,
2551
+ # },
2552
+ # }
2553
+ #
2554
+ # @!attribute [rw] voice_connector_id
2555
+ # @return [String]
2556
+ #
2557
+ # @!attribute [rw] termination
2558
+ # @return [Types::Termination]
2559
+ #
2560
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/PutVoiceConnectorTerminationRequest AWS API Documentation
2561
+ #
2562
+ class PutVoiceConnectorTerminationRequest < Struct.new(
2563
+ :voice_connector_id,
2564
+ :termination)
2565
+ SENSITIVE = []
2566
+ include Aws::Structure
2567
+ end
2568
+
2569
+ # @!attribute [rw] termination
2570
+ # @return [Types::Termination]
2571
+ #
2572
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/PutVoiceConnectorTerminationResponse AWS API Documentation
2573
+ #
2574
+ class PutVoiceConnectorTerminationResponse < Struct.new(
2575
+ :termination)
2576
+ SENSITIVE = []
2577
+ include Aws::Structure
2578
+ end
2579
+
2580
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/ResourceLimitExceededException AWS API Documentation
2581
+ #
2582
+ class ResourceLimitExceededException < Aws::EmptyStructure; end
2583
+
2584
+ # @note When making an API call, you may pass RestorePhoneNumberRequest
2585
+ # data as a hash:
2586
+ #
2587
+ # {
2588
+ # phone_number_id: "SensitiveNonEmptyString", # required
2589
+ # }
2590
+ #
2591
+ # @!attribute [rw] phone_number_id
2592
+ # @return [String]
2593
+ #
2594
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/RestorePhoneNumberRequest AWS API Documentation
2595
+ #
2596
+ class RestorePhoneNumberRequest < Struct.new(
2597
+ :phone_number_id)
2598
+ SENSITIVE = [:phone_number_id]
2599
+ include Aws::Structure
2600
+ end
2601
+
2602
+ # @!attribute [rw] phone_number
2603
+ # @return [Types::PhoneNumber]
2604
+ #
2605
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/RestorePhoneNumberResponse AWS API Documentation
2606
+ #
2607
+ class RestorePhoneNumberResponse < Struct.new(
2608
+ :phone_number)
2609
+ SENSITIVE = []
2610
+ include Aws::Structure
2611
+ end
2612
+
2613
+ # @note When making an API call, you may pass SearchAvailablePhoneNumbersRequest
2614
+ # data as a hash:
2615
+ #
2616
+ # {
2617
+ # area_code: "String",
2618
+ # city: "String",
2619
+ # country: "Alpha2CountryCode",
2620
+ # state: "String",
2621
+ # toll_free_prefix: "TollFreePrefix",
2622
+ # phone_number_type: "Local", # accepts Local, TollFree
2623
+ # max_results: 1,
2624
+ # next_token: "String",
2625
+ # }
2626
+ #
2627
+ # @!attribute [rw] area_code
2628
+ # @return [String]
2629
+ #
2630
+ # @!attribute [rw] city
2631
+ # @return [String]
2632
+ #
2633
+ # @!attribute [rw] country
2634
+ # @return [String]
2635
+ #
2636
+ # @!attribute [rw] state
2637
+ # @return [String]
2638
+ #
2639
+ # @!attribute [rw] toll_free_prefix
2640
+ # @return [String]
2641
+ #
2642
+ # @!attribute [rw] phone_number_type
2643
+ # @return [String]
2644
+ #
2645
+ # @!attribute [rw] max_results
2646
+ # @return [Integer]
2647
+ #
2648
+ # @!attribute [rw] next_token
2649
+ # @return [String]
2650
+ #
2651
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/SearchAvailablePhoneNumbersRequest AWS API Documentation
2652
+ #
2653
+ class SearchAvailablePhoneNumbersRequest < Struct.new(
2654
+ :area_code,
2655
+ :city,
2656
+ :country,
2657
+ :state,
2658
+ :toll_free_prefix,
2659
+ :phone_number_type,
2660
+ :max_results,
2661
+ :next_token)
2662
+ SENSITIVE = []
2663
+ include Aws::Structure
2664
+ end
2665
+
2666
+ # @!attribute [rw] e164_phone_numbers
2667
+ # @return [Array<String>]
2668
+ #
2669
+ # @!attribute [rw] next_token
2670
+ # @return [String]
2671
+ #
2672
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/SearchAvailablePhoneNumbersResponse AWS API Documentation
2673
+ #
2674
+ class SearchAvailablePhoneNumbersResponse < Struct.new(
2675
+ :e164_phone_numbers,
2676
+ :next_token)
2677
+ SENSITIVE = []
2678
+ include Aws::Structure
2679
+ end
2680
+
2681
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/ServiceFailureException AWS API Documentation
2682
+ #
2683
+ class ServiceFailureException < Aws::EmptyStructure; end
2684
+
2685
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/ServiceUnavailableException AWS API Documentation
2686
+ #
2687
+ class ServiceUnavailableException < Aws::EmptyStructure; end
2688
+
2689
+ # @!attribute [rw] sip_media_application_id
2690
+ # @return [String]
2691
+ #
2692
+ # @!attribute [rw] aws_region
2693
+ # @return [String]
2694
+ #
2695
+ # @!attribute [rw] name
2696
+ # @return [String]
2697
+ #
2698
+ # @!attribute [rw] endpoints
2699
+ # @return [Array<Types::SipMediaApplicationEndpoint>]
2700
+ #
2701
+ # @!attribute [rw] created_timestamp
2702
+ # @return [Time]
2703
+ #
2704
+ # @!attribute [rw] updated_timestamp
2705
+ # @return [Time]
2706
+ #
2707
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/SipMediaApplication AWS API Documentation
2708
+ #
2709
+ class SipMediaApplication < Struct.new(
2710
+ :sip_media_application_id,
2711
+ :aws_region,
2712
+ :name,
2713
+ :endpoints,
2714
+ :created_timestamp,
2715
+ :updated_timestamp)
2716
+ SENSITIVE = []
2717
+ include Aws::Structure
2718
+ end
2719
+
2720
+ # @note When making an API call, you may pass SipMediaApplicationAlexaSkillConfiguration
2721
+ # data as a hash:
2722
+ #
2723
+ # {
2724
+ # alexa_skill_status: "ACTIVE", # required, accepts ACTIVE, INACTIVE
2725
+ # alexa_skill_ids: ["AlexaSkillId"], # required
2726
+ # }
2727
+ #
2728
+ # @!attribute [rw] alexa_skill_status
2729
+ # @return [String]
2730
+ #
2731
+ # @!attribute [rw] alexa_skill_ids
2732
+ # @return [Array<String>]
2733
+ #
2734
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/SipMediaApplicationAlexaSkillConfiguration AWS API Documentation
2735
+ #
2736
+ class SipMediaApplicationAlexaSkillConfiguration < Struct.new(
2737
+ :alexa_skill_status,
2738
+ :alexa_skill_ids)
2739
+ SENSITIVE = []
2740
+ include Aws::Structure
2741
+ end
2742
+
2743
+ # @!attribute [rw] transaction_id
2744
+ # @return [String]
2745
+ #
2746
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/SipMediaApplicationCall AWS API Documentation
2747
+ #
2748
+ class SipMediaApplicationCall < Struct.new(
2749
+ :transaction_id)
2750
+ SENSITIVE = []
2751
+ include Aws::Structure
2752
+ end
2753
+
2754
+ # @note When making an API call, you may pass SipMediaApplicationEndpoint
2755
+ # data as a hash:
2756
+ #
2757
+ # {
2758
+ # lambda_arn: "FunctionArn",
2759
+ # }
2760
+ #
2761
+ # @!attribute [rw] lambda_arn
2762
+ # @return [String]
2763
+ #
2764
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/SipMediaApplicationEndpoint AWS API Documentation
2765
+ #
2766
+ class SipMediaApplicationEndpoint < Struct.new(
2767
+ :lambda_arn)
2768
+ SENSITIVE = [:lambda_arn]
2769
+ include Aws::Structure
2770
+ end
2771
+
2772
+ # @note When making an API call, you may pass SipMediaApplicationLoggingConfiguration
2773
+ # data as a hash:
2774
+ #
2775
+ # {
2776
+ # enable_sip_media_application_message_logs: false,
2777
+ # }
2778
+ #
2779
+ # @!attribute [rw] enable_sip_media_application_message_logs
2780
+ # @return [Boolean]
2781
+ #
2782
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/SipMediaApplicationLoggingConfiguration AWS API Documentation
2783
+ #
2784
+ class SipMediaApplicationLoggingConfiguration < Struct.new(
2785
+ :enable_sip_media_application_message_logs)
2786
+ SENSITIVE = []
2787
+ include Aws::Structure
2788
+ end
2789
+
2790
+ # @!attribute [rw] sip_rule_id
2791
+ # @return [String]
2792
+ #
2793
+ # @!attribute [rw] name
2794
+ # @return [String]
2795
+ #
2796
+ # @!attribute [rw] disabled
2797
+ # @return [Boolean]
2798
+ #
2799
+ # @!attribute [rw] trigger_type
2800
+ # @return [String]
2801
+ #
2802
+ # @!attribute [rw] trigger_value
2803
+ # @return [String]
2804
+ #
2805
+ # @!attribute [rw] target_applications
2806
+ # @return [Array<Types::SipRuleTargetApplication>]
2807
+ #
2808
+ # @!attribute [rw] created_timestamp
2809
+ # @return [Time]
2810
+ #
2811
+ # @!attribute [rw] updated_timestamp
2812
+ # @return [Time]
2813
+ #
2814
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/SipRule AWS API Documentation
2815
+ #
2816
+ class SipRule < Struct.new(
2817
+ :sip_rule_id,
2818
+ :name,
2819
+ :disabled,
2820
+ :trigger_type,
2821
+ :trigger_value,
2822
+ :target_applications,
2823
+ :created_timestamp,
2824
+ :updated_timestamp)
2825
+ SENSITIVE = []
2826
+ include Aws::Structure
2827
+ end
2828
+
2829
+ # @note When making an API call, you may pass SipRuleTargetApplication
2830
+ # data as a hash:
2831
+ #
2832
+ # {
2833
+ # sip_media_application_id: "NonEmptyString",
2834
+ # priority: 1,
2835
+ # aws_region: "String",
2836
+ # }
2837
+ #
2838
+ # @!attribute [rw] sip_media_application_id
2839
+ # @return [String]
2840
+ #
2841
+ # @!attribute [rw] priority
2842
+ # @return [Integer]
2843
+ #
2844
+ # @!attribute [rw] aws_region
2845
+ # @return [String]
2846
+ #
2847
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/SipRuleTargetApplication AWS API Documentation
2848
+ #
2849
+ class SipRuleTargetApplication < Struct.new(
2850
+ :sip_media_application_id,
2851
+ :priority,
2852
+ :aws_region)
2853
+ SENSITIVE = []
2854
+ include Aws::Structure
2855
+ end
2856
+
2857
+ # @note When making an API call, you may pass StreamingConfiguration
2858
+ # data as a hash:
2859
+ #
2860
+ # {
2861
+ # data_retention_in_hours: 1, # required
2862
+ # disabled: false, # required
2863
+ # streaming_notification_targets: [
2864
+ # {
2865
+ # notification_target: "EventBridge", # accepts EventBridge, SNS, SQS
2866
+ # },
2867
+ # ],
2868
+ # }
2869
+ #
2870
+ # @!attribute [rw] data_retention_in_hours
2871
+ # @return [Integer]
2872
+ #
2873
+ # @!attribute [rw] disabled
2874
+ # @return [Boolean]
2875
+ #
2876
+ # @!attribute [rw] streaming_notification_targets
2877
+ # @return [Array<Types::StreamingNotificationTarget>]
2878
+ #
2879
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/StreamingConfiguration AWS API Documentation
2880
+ #
2881
+ class StreamingConfiguration < Struct.new(
2882
+ :data_retention_in_hours,
2883
+ :disabled,
2884
+ :streaming_notification_targets)
2885
+ SENSITIVE = []
2886
+ include Aws::Structure
2887
+ end
2888
+
2889
+ # @note When making an API call, you may pass StreamingNotificationTarget
2890
+ # data as a hash:
2891
+ #
2892
+ # {
2893
+ # notification_target: "EventBridge", # accepts EventBridge, SNS, SQS
2894
+ # }
2895
+ #
2896
+ # @!attribute [rw] notification_target
2897
+ # @return [String]
2898
+ #
2899
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/StreamingNotificationTarget AWS API Documentation
2900
+ #
2901
+ class StreamingNotificationTarget < Struct.new(
2902
+ :notification_target)
2903
+ SENSITIVE = []
2904
+ include Aws::Structure
2905
+ end
2906
+
2907
+ # @note When making an API call, you may pass Termination
2908
+ # data as a hash:
2909
+ #
2910
+ # {
2911
+ # cps_limit: 1,
2912
+ # default_phone_number: "E164PhoneNumber",
2913
+ # calling_regions: ["CallingRegion"],
2914
+ # cidr_allowed_list: ["String"],
2915
+ # disabled: false,
2916
+ # }
2917
+ #
2918
+ # @!attribute [rw] cps_limit
2919
+ # @return [Integer]
2920
+ #
2921
+ # @!attribute [rw] default_phone_number
2922
+ # @return [String]
2923
+ #
2924
+ # @!attribute [rw] calling_regions
2925
+ # @return [Array<String>]
2926
+ #
2927
+ # @!attribute [rw] cidr_allowed_list
2928
+ # @return [Array<String>]
2929
+ #
2930
+ # @!attribute [rw] disabled
2931
+ # @return [Boolean]
2932
+ #
2933
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/Termination AWS API Documentation
2934
+ #
2935
+ class Termination < Struct.new(
2936
+ :cps_limit,
2937
+ :default_phone_number,
2938
+ :calling_regions,
2939
+ :cidr_allowed_list,
2940
+ :disabled)
2941
+ SENSITIVE = [:default_phone_number]
2942
+ include Aws::Structure
2943
+ end
2944
+
2945
+ # @!attribute [rw] timestamp
2946
+ # @return [Time]
2947
+ #
2948
+ # @!attribute [rw] source
2949
+ # @return [String]
2950
+ #
2951
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/TerminationHealth AWS API Documentation
2952
+ #
2953
+ class TerminationHealth < Struct.new(
2954
+ :timestamp,
2955
+ :source)
2956
+ SENSITIVE = []
2957
+ include Aws::Structure
2958
+ end
2959
+
2960
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/ThrottledClientException AWS API Documentation
2961
+ #
2962
+ class ThrottledClientException < Aws::EmptyStructure; end
2963
+
2964
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/UnauthorizedClientException AWS API Documentation
2965
+ #
2966
+ class UnauthorizedClientException < Aws::EmptyStructure; end
2967
+
2968
+ # @note When making an API call, you may pass UpdateGlobalSettingsRequest
2969
+ # data as a hash:
2970
+ #
2971
+ # {
2972
+ # voice_connector: {
2973
+ # cdr_bucket: "String",
2974
+ # },
2975
+ # }
2976
+ #
2977
+ # @!attribute [rw] voice_connector
2978
+ # @return [Types::VoiceConnectorSettings]
2979
+ #
2980
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/UpdateGlobalSettingsRequest AWS API Documentation
2981
+ #
2982
+ class UpdateGlobalSettingsRequest < Struct.new(
2983
+ :voice_connector)
2984
+ SENSITIVE = []
2985
+ include Aws::Structure
2986
+ end
2987
+
2988
+ # @note When making an API call, you may pass UpdatePhoneNumberRequest
2989
+ # data as a hash:
2990
+ #
2991
+ # {
2992
+ # phone_number_id: "SensitiveNonEmptyString", # required
2993
+ # product_type: "VoiceConnector", # accepts VoiceConnector, SipMediaApplicationDialIn
2994
+ # calling_name: "CallingName",
2995
+ # }
2996
+ #
2997
+ # @!attribute [rw] phone_number_id
2998
+ # @return [String]
2999
+ #
3000
+ # @!attribute [rw] product_type
3001
+ # @return [String]
3002
+ #
3003
+ # @!attribute [rw] calling_name
3004
+ # @return [String]
3005
+ #
3006
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/UpdatePhoneNumberRequest AWS API Documentation
3007
+ #
3008
+ class UpdatePhoneNumberRequest < Struct.new(
3009
+ :phone_number_id,
3010
+ :product_type,
3011
+ :calling_name)
3012
+ SENSITIVE = [:phone_number_id, :calling_name]
3013
+ include Aws::Structure
3014
+ end
3015
+
3016
+ # @note When making an API call, you may pass UpdatePhoneNumberRequestItem
3017
+ # data as a hash:
3018
+ #
3019
+ # {
3020
+ # phone_number_id: "SensitiveNonEmptyString", # required
3021
+ # product_type: "VoiceConnector", # accepts VoiceConnector, SipMediaApplicationDialIn
3022
+ # calling_name: "CallingName",
3023
+ # }
3024
+ #
3025
+ # @!attribute [rw] phone_number_id
3026
+ # @return [String]
3027
+ #
3028
+ # @!attribute [rw] product_type
3029
+ # @return [String]
3030
+ #
3031
+ # @!attribute [rw] calling_name
3032
+ # @return [String]
3033
+ #
3034
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/UpdatePhoneNumberRequestItem AWS API Documentation
3035
+ #
3036
+ class UpdatePhoneNumberRequestItem < Struct.new(
3037
+ :phone_number_id,
3038
+ :product_type,
3039
+ :calling_name)
3040
+ SENSITIVE = [:phone_number_id, :calling_name]
3041
+ include Aws::Structure
3042
+ end
3043
+
3044
+ # @!attribute [rw] phone_number
3045
+ # @return [Types::PhoneNumber]
3046
+ #
3047
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/UpdatePhoneNumberResponse AWS API Documentation
3048
+ #
3049
+ class UpdatePhoneNumberResponse < Struct.new(
3050
+ :phone_number)
3051
+ SENSITIVE = []
3052
+ include Aws::Structure
3053
+ end
3054
+
3055
+ # @note When making an API call, you may pass UpdatePhoneNumberSettingsRequest
3056
+ # data as a hash:
3057
+ #
3058
+ # {
3059
+ # calling_name: "CallingName", # required
3060
+ # }
3061
+ #
3062
+ # @!attribute [rw] calling_name
3063
+ # @return [String]
3064
+ #
3065
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/UpdatePhoneNumberSettingsRequest AWS API Documentation
3066
+ #
3067
+ class UpdatePhoneNumberSettingsRequest < Struct.new(
3068
+ :calling_name)
3069
+ SENSITIVE = [:calling_name]
3070
+ include Aws::Structure
3071
+ end
3072
+
3073
+ # @note When making an API call, you may pass UpdateProxySessionRequest
3074
+ # data as a hash:
3075
+ #
3076
+ # {
3077
+ # voice_connector_id: "NonEmptyString128", # required
3078
+ # proxy_session_id: "NonEmptyString128", # required
3079
+ # capabilities: ["Voice"], # required, accepts Voice, SMS
3080
+ # expiry_minutes: 1,
3081
+ # }
3082
+ #
3083
+ # @!attribute [rw] voice_connector_id
3084
+ # @return [String]
3085
+ #
3086
+ # @!attribute [rw] proxy_session_id
3087
+ # @return [String]
3088
+ #
3089
+ # @!attribute [rw] capabilities
3090
+ # @return [Array<String>]
3091
+ #
3092
+ # @!attribute [rw] expiry_minutes
3093
+ # @return [Integer]
3094
+ #
3095
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/UpdateProxySessionRequest AWS API Documentation
3096
+ #
3097
+ class UpdateProxySessionRequest < Struct.new(
3098
+ :voice_connector_id,
3099
+ :proxy_session_id,
3100
+ :capabilities,
3101
+ :expiry_minutes)
3102
+ SENSITIVE = []
3103
+ include Aws::Structure
3104
+ end
3105
+
3106
+ # @!attribute [rw] proxy_session
3107
+ # @return [Types::ProxySession]
3108
+ #
3109
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/UpdateProxySessionResponse AWS API Documentation
3110
+ #
3111
+ class UpdateProxySessionResponse < Struct.new(
3112
+ :proxy_session)
3113
+ SENSITIVE = []
3114
+ include Aws::Structure
3115
+ end
3116
+
3117
+ # @note When making an API call, you may pass UpdateSipMediaApplicationCallRequest
3118
+ # data as a hash:
3119
+ #
3120
+ # {
3121
+ # sip_media_application_id: "NonEmptyString", # required
3122
+ # transaction_id: "NonEmptyString", # required
3123
+ # arguments: { # required
3124
+ # "SensitiveString" => "SensitiveString",
3125
+ # },
3126
+ # }
3127
+ #
3128
+ # @!attribute [rw] sip_media_application_id
3129
+ # @return [String]
3130
+ #
3131
+ # @!attribute [rw] transaction_id
3132
+ # @return [String]
3133
+ #
3134
+ # @!attribute [rw] arguments
3135
+ # @return [Hash<String,String>]
3136
+ #
3137
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/UpdateSipMediaApplicationCallRequest AWS API Documentation
3138
+ #
3139
+ class UpdateSipMediaApplicationCallRequest < Struct.new(
3140
+ :sip_media_application_id,
3141
+ :transaction_id,
3142
+ :arguments)
3143
+ SENSITIVE = []
3144
+ include Aws::Structure
3145
+ end
3146
+
3147
+ # @!attribute [rw] sip_media_application_call
3148
+ # @return [Types::SipMediaApplicationCall]
3149
+ #
3150
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/UpdateSipMediaApplicationCallResponse AWS API Documentation
3151
+ #
3152
+ class UpdateSipMediaApplicationCallResponse < Struct.new(
3153
+ :sip_media_application_call)
3154
+ SENSITIVE = []
3155
+ include Aws::Structure
3156
+ end
3157
+
3158
+ # @note When making an API call, you may pass UpdateSipMediaApplicationRequest
3159
+ # data as a hash:
3160
+ #
3161
+ # {
3162
+ # sip_media_application_id: "NonEmptyString", # required
3163
+ # name: "SipMediaApplicationName",
3164
+ # endpoints: [
3165
+ # {
3166
+ # lambda_arn: "FunctionArn",
3167
+ # },
3168
+ # ],
3169
+ # }
3170
+ #
3171
+ # @!attribute [rw] sip_media_application_id
3172
+ # @return [String]
3173
+ #
3174
+ # @!attribute [rw] name
3175
+ # @return [String]
3176
+ #
3177
+ # @!attribute [rw] endpoints
3178
+ # @return [Array<Types::SipMediaApplicationEndpoint>]
3179
+ #
3180
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/UpdateSipMediaApplicationRequest AWS API Documentation
3181
+ #
3182
+ class UpdateSipMediaApplicationRequest < Struct.new(
3183
+ :sip_media_application_id,
3184
+ :name,
3185
+ :endpoints)
3186
+ SENSITIVE = []
3187
+ include Aws::Structure
3188
+ end
3189
+
3190
+ # @!attribute [rw] sip_media_application
3191
+ # @return [Types::SipMediaApplication]
3192
+ #
3193
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/UpdateSipMediaApplicationResponse AWS API Documentation
3194
+ #
3195
+ class UpdateSipMediaApplicationResponse < Struct.new(
3196
+ :sip_media_application)
3197
+ SENSITIVE = []
3198
+ include Aws::Structure
3199
+ end
3200
+
3201
+ # @note When making an API call, you may pass UpdateSipRuleRequest
3202
+ # data as a hash:
3203
+ #
3204
+ # {
3205
+ # sip_rule_id: "NonEmptyString", # required
3206
+ # name: "SipRuleName", # required
3207
+ # disabled: false,
3208
+ # target_applications: [
3209
+ # {
3210
+ # sip_media_application_id: "NonEmptyString",
3211
+ # priority: 1,
3212
+ # aws_region: "String",
3213
+ # },
3214
+ # ],
3215
+ # }
3216
+ #
3217
+ # @!attribute [rw] sip_rule_id
3218
+ # @return [String]
3219
+ #
3220
+ # @!attribute [rw] name
3221
+ # @return [String]
3222
+ #
3223
+ # @!attribute [rw] disabled
3224
+ # @return [Boolean]
3225
+ #
3226
+ # @!attribute [rw] target_applications
3227
+ # @return [Array<Types::SipRuleTargetApplication>]
3228
+ #
3229
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/UpdateSipRuleRequest AWS API Documentation
3230
+ #
3231
+ class UpdateSipRuleRequest < Struct.new(
3232
+ :sip_rule_id,
3233
+ :name,
3234
+ :disabled,
3235
+ :target_applications)
3236
+ SENSITIVE = []
3237
+ include Aws::Structure
3238
+ end
3239
+
3240
+ # @!attribute [rw] sip_rule
3241
+ # @return [Types::SipRule]
3242
+ #
3243
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/UpdateSipRuleResponse AWS API Documentation
3244
+ #
3245
+ class UpdateSipRuleResponse < Struct.new(
3246
+ :sip_rule)
3247
+ SENSITIVE = []
3248
+ include Aws::Structure
3249
+ end
3250
+
3251
+ # @note When making an API call, you may pass UpdateVoiceConnectorGroupRequest
3252
+ # data as a hash:
3253
+ #
3254
+ # {
3255
+ # voice_connector_group_id: "NonEmptyString", # required
3256
+ # name: "VoiceConnectorGroupName", # required
3257
+ # voice_connector_items: [ # required
3258
+ # {
3259
+ # voice_connector_id: "NonEmptyString", # required
3260
+ # priority: 1, # required
3261
+ # },
3262
+ # ],
3263
+ # }
3264
+ #
3265
+ # @!attribute [rw] voice_connector_group_id
3266
+ # @return [String]
3267
+ #
3268
+ # @!attribute [rw] name
3269
+ # @return [String]
3270
+ #
3271
+ # @!attribute [rw] voice_connector_items
3272
+ # @return [Array<Types::VoiceConnectorItem>]
3273
+ #
3274
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/UpdateVoiceConnectorGroupRequest AWS API Documentation
3275
+ #
3276
+ class UpdateVoiceConnectorGroupRequest < Struct.new(
3277
+ :voice_connector_group_id,
3278
+ :name,
3279
+ :voice_connector_items)
3280
+ SENSITIVE = []
3281
+ include Aws::Structure
3282
+ end
3283
+
3284
+ # @!attribute [rw] voice_connector_group
3285
+ # @return [Types::VoiceConnectorGroup]
3286
+ #
3287
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/UpdateVoiceConnectorGroupResponse AWS API Documentation
3288
+ #
3289
+ class UpdateVoiceConnectorGroupResponse < Struct.new(
3290
+ :voice_connector_group)
3291
+ SENSITIVE = []
3292
+ include Aws::Structure
3293
+ end
3294
+
3295
+ # @note When making an API call, you may pass UpdateVoiceConnectorRequest
3296
+ # data as a hash:
3297
+ #
3298
+ # {
3299
+ # voice_connector_id: "NonEmptyString", # required
3300
+ # name: "VoiceConnectorName", # required
3301
+ # require_encryption: false, # required
3302
+ # }
3303
+ #
3304
+ # @!attribute [rw] voice_connector_id
3305
+ # @return [String]
3306
+ #
3307
+ # @!attribute [rw] name
3308
+ # @return [String]
3309
+ #
3310
+ # @!attribute [rw] require_encryption
3311
+ # @return [Boolean]
3312
+ #
3313
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/UpdateVoiceConnectorRequest AWS API Documentation
3314
+ #
3315
+ class UpdateVoiceConnectorRequest < Struct.new(
3316
+ :voice_connector_id,
3317
+ :name,
3318
+ :require_encryption)
3319
+ SENSITIVE = []
3320
+ include Aws::Structure
3321
+ end
3322
+
3323
+ # @!attribute [rw] voice_connector
3324
+ # @return [Types::VoiceConnector]
3325
+ #
3326
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/UpdateVoiceConnectorResponse AWS API Documentation
3327
+ #
3328
+ class UpdateVoiceConnectorResponse < Struct.new(
3329
+ :voice_connector)
3330
+ SENSITIVE = []
3331
+ include Aws::Structure
3332
+ end
3333
+
3334
+ # @note When making an API call, you may pass ValidateE911AddressRequest
3335
+ # data as a hash:
3336
+ #
3337
+ # {
3338
+ # aws_account_id: "NonEmptyString", # required
3339
+ # street_number: "SensitiveNonEmptyString", # required
3340
+ # street_info: "SensitiveNonEmptyString", # required
3341
+ # city: "SensitiveNonEmptyString", # required
3342
+ # state: "SensitiveNonEmptyString", # required
3343
+ # country: "SensitiveNonEmptyString", # required
3344
+ # postal_code: "SensitiveNonEmptyString", # required
3345
+ # }
3346
+ #
3347
+ # @!attribute [rw] aws_account_id
3348
+ # @return [String]
3349
+ #
3350
+ # @!attribute [rw] street_number
3351
+ # @return [String]
3352
+ #
3353
+ # @!attribute [rw] street_info
3354
+ # @return [String]
3355
+ #
3356
+ # @!attribute [rw] city
3357
+ # @return [String]
3358
+ #
3359
+ # @!attribute [rw] state
3360
+ # @return [String]
3361
+ #
3362
+ # @!attribute [rw] country
3363
+ # @return [String]
3364
+ #
3365
+ # @!attribute [rw] postal_code
3366
+ # @return [String]
3367
+ #
3368
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/ValidateE911AddressRequest AWS API Documentation
3369
+ #
3370
+ class ValidateE911AddressRequest < Struct.new(
3371
+ :aws_account_id,
3372
+ :street_number,
3373
+ :street_info,
3374
+ :city,
3375
+ :state,
3376
+ :country,
3377
+ :postal_code)
3378
+ SENSITIVE = [:street_number, :street_info, :city, :state, :country, :postal_code]
3379
+ include Aws::Structure
3380
+ end
3381
+
3382
+ # @!attribute [rw] validation_result
3383
+ # @return [Integer]
3384
+ #
3385
+ # @!attribute [rw] address_external_id
3386
+ # @return [String]
3387
+ #
3388
+ # @!attribute [rw] address
3389
+ # @return [Types::Address]
3390
+ #
3391
+ # @!attribute [rw] candidate_address_list
3392
+ # @return [Array<Types::CandidateAddress>]
3393
+ #
3394
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/ValidateE911AddressResponse AWS API Documentation
3395
+ #
3396
+ class ValidateE911AddressResponse < Struct.new(
3397
+ :validation_result,
3398
+ :address_external_id,
3399
+ :address,
3400
+ :candidate_address_list)
3401
+ SENSITIVE = []
3402
+ include Aws::Structure
3403
+ end
3404
+
3405
+ # @!attribute [rw] voice_connector_id
3406
+ # @return [String]
3407
+ #
3408
+ # @!attribute [rw] aws_region
3409
+ # @return [String]
3410
+ #
3411
+ # @!attribute [rw] name
3412
+ # @return [String]
3413
+ #
3414
+ # @!attribute [rw] outbound_host_name
3415
+ # @return [String]
3416
+ #
3417
+ # @!attribute [rw] require_encryption
3418
+ # @return [Boolean]
3419
+ #
3420
+ # @!attribute [rw] created_timestamp
3421
+ # @return [Time]
3422
+ #
3423
+ # @!attribute [rw] updated_timestamp
3424
+ # @return [Time]
3425
+ #
3426
+ # @!attribute [rw] voice_connector_arn
3427
+ # @return [String]
3428
+ #
3429
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/VoiceConnector AWS API Documentation
3430
+ #
3431
+ class VoiceConnector < Struct.new(
3432
+ :voice_connector_id,
3433
+ :aws_region,
3434
+ :name,
3435
+ :outbound_host_name,
3436
+ :require_encryption,
3437
+ :created_timestamp,
3438
+ :updated_timestamp,
3439
+ :voice_connector_arn)
3440
+ SENSITIVE = []
3441
+ include Aws::Structure
3442
+ end
3443
+
3444
+ # @!attribute [rw] voice_connector_group_id
3445
+ # @return [String]
3446
+ #
3447
+ # @!attribute [rw] name
3448
+ # @return [String]
3449
+ #
3450
+ # @!attribute [rw] voice_connector_items
3451
+ # @return [Array<Types::VoiceConnectorItem>]
3452
+ #
3453
+ # @!attribute [rw] created_timestamp
3454
+ # @return [Time]
3455
+ #
3456
+ # @!attribute [rw] updated_timestamp
3457
+ # @return [Time]
3458
+ #
3459
+ # @!attribute [rw] voice_connector_group_arn
3460
+ # @return [String]
3461
+ #
3462
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/VoiceConnectorGroup AWS API Documentation
3463
+ #
3464
+ class VoiceConnectorGroup < Struct.new(
3465
+ :voice_connector_group_id,
3466
+ :name,
3467
+ :voice_connector_items,
3468
+ :created_timestamp,
3469
+ :updated_timestamp,
3470
+ :voice_connector_group_arn)
3471
+ SENSITIVE = []
3472
+ include Aws::Structure
3473
+ end
3474
+
3475
+ # @note When making an API call, you may pass VoiceConnectorItem
3476
+ # data as a hash:
3477
+ #
3478
+ # {
3479
+ # voice_connector_id: "NonEmptyString", # required
3480
+ # priority: 1, # required
3481
+ # }
3482
+ #
3483
+ # @!attribute [rw] voice_connector_id
3484
+ # @return [String]
3485
+ #
3486
+ # @!attribute [rw] priority
3487
+ # @return [Integer]
3488
+ #
3489
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/VoiceConnectorItem AWS API Documentation
3490
+ #
3491
+ class VoiceConnectorItem < Struct.new(
3492
+ :voice_connector_id,
3493
+ :priority)
3494
+ SENSITIVE = []
3495
+ include Aws::Structure
3496
+ end
3497
+
3498
+ # @note When making an API call, you may pass VoiceConnectorSettings
3499
+ # data as a hash:
3500
+ #
3501
+ # {
3502
+ # cdr_bucket: "String",
3503
+ # }
3504
+ #
3505
+ # @!attribute [rw] cdr_bucket
3506
+ # @return [String]
3507
+ #
3508
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/VoiceConnectorSettings AWS API Documentation
3509
+ #
3510
+ class VoiceConnectorSettings < Struct.new(
3511
+ :cdr_bucket)
3512
+ SENSITIVE = []
3513
+ include Aws::Structure
3514
+ end
3515
+
3516
+ end
3517
+ end