Class: Aws::ChimeSDKVoice::Types::Termination
- Inherits:
-
Struct
- Object
- Struct
- Aws::ChimeSDKVoice::Types::Termination
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-chimesdkvoice/types.rb
Overview
Termination settings enable SIP hosts to make outbound calls using an Amazon Chime SDK Voice Connector.
Constant Summary collapse
- SENSITIVE =
[:default_phone_number]
Instance Attribute Summary collapse
-
#calling_regions ⇒ Array<String>
The countries to which calls are allowed, in ISO 3166-1 alpha-2 format.
-
#cidr_allowed_list ⇒ Array<String>
The IP addresses allowed to make calls, in CIDR format.
-
#cps_limit ⇒ Integer
The limit on calls per second.
-
#default_phone_number ⇒ String
The default outbound calling number.
-
#disabled ⇒ Boolean
When termination is disabled, outbound calls cannot be made.
Instance Attribute Details
#calling_regions ⇒ Array<String>
The countries to which calls are allowed, in ISO 3166-1 alpha-2 format. Required.
3390 3391 3392 3393 3394 3395 3396 3397 3398 |
# File 'lib/aws-sdk-chimesdkvoice/types.rb', line 3390 class Termination < Struct.new( :cps_limit, :default_phone_number, :calling_regions, :cidr_allowed_list, :disabled) SENSITIVE = [:default_phone_number] include Aws::Structure end |
#cidr_allowed_list ⇒ Array<String>
The IP addresses allowed to make calls, in CIDR format.
3390 3391 3392 3393 3394 3395 3396 3397 3398 |
# File 'lib/aws-sdk-chimesdkvoice/types.rb', line 3390 class Termination < Struct.new( :cps_limit, :default_phone_number, :calling_regions, :cidr_allowed_list, :disabled) SENSITIVE = [:default_phone_number] include Aws::Structure end |
#cps_limit ⇒ Integer
The limit on calls per second. Max value based on account service quota. Default value of 1.
3390 3391 3392 3393 3394 3395 3396 3397 3398 |
# File 'lib/aws-sdk-chimesdkvoice/types.rb', line 3390 class Termination < Struct.new( :cps_limit, :default_phone_number, :calling_regions, :cidr_allowed_list, :disabled) SENSITIVE = [:default_phone_number] include Aws::Structure end |
#default_phone_number ⇒ String
The default outbound calling number.
3390 3391 3392 3393 3394 3395 3396 3397 3398 |
# File 'lib/aws-sdk-chimesdkvoice/types.rb', line 3390 class Termination < Struct.new( :cps_limit, :default_phone_number, :calling_regions, :cidr_allowed_list, :disabled) SENSITIVE = [:default_phone_number] include Aws::Structure end |
#disabled ⇒ Boolean
When termination is disabled, outbound calls cannot be made.
3390 3391 3392 3393 3394 3395 3396 3397 3398 |
# File 'lib/aws-sdk-chimesdkvoice/types.rb', line 3390 class Termination < Struct.new( :cps_limit, :default_phone_number, :calling_regions, :cidr_allowed_list, :disabled) SENSITIVE = [:default_phone_number] include Aws::Structure end |