Class: Aws::ChimeSDKVoice::Types::Termination
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::ChimeSDKVoice::Types::Termination
 
 
- Defined in:
 - gems/aws-sdk-chimesdkvoice/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.
      3531 3532 3533 3534 3535 3536 3537 3538 3539  | 
    
      # File 'gems/aws-sdk-chimesdkvoice/lib/aws-sdk-chimesdkvoice/types.rb', line 3531 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.
      3531 3532 3533 3534 3535 3536 3537 3538 3539  | 
    
      # File 'gems/aws-sdk-chimesdkvoice/lib/aws-sdk-chimesdkvoice/types.rb', line 3531 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.
      3531 3532 3533 3534 3535 3536 3537 3538 3539  | 
    
      # File 'gems/aws-sdk-chimesdkvoice/lib/aws-sdk-chimesdkvoice/types.rb', line 3531 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.
      3531 3532 3533 3534 3535 3536 3537 3538 3539  | 
    
      # File 'gems/aws-sdk-chimesdkvoice/lib/aws-sdk-chimesdkvoice/types.rb', line 3531 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.
      3531 3532 3533 3534 3535 3536 3537 3538 3539  | 
    
      # File 'gems/aws-sdk-chimesdkvoice/lib/aws-sdk-chimesdkvoice/types.rb', line 3531 class Termination < Struct.new( :cps_limit, :default_phone_number, :calling_regions, :cidr_allowed_list, :disabled) SENSITIVE = [:default_phone_number] include Aws::Structure end  |