Class: Aws::Wickr::Types::CallingSettings
- Inherits:
-
Struct
- Object
- Struct
- Aws::Wickr::Types::CallingSettings
- Defined in:
- gems/aws-sdk-wickr/lib/aws-sdk-wickr/types.rb
Overview
Defines the calling feature permissions and settings for users in a security group, controlling what types of calls users can initiate and participate in.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#can_start_11_call ⇒ Boolean
Specifies whether users can start one-to-one calls.
-
#can_video_call ⇒ Boolean
Specifies whether users can make video calls (as opposed to audio-only calls).
-
#force_tcp_call ⇒ Boolean
When enabled, forces all calls to use TCP protocol instead of UDP for network traversal.
Instance Attribute Details
#can_start_11_call ⇒ Boolean
Specifies whether users can start one-to-one calls.
692 693 694 695 696 697 698 |
# File 'gems/aws-sdk-wickr/lib/aws-sdk-wickr/types.rb', line 692 class CallingSettings < Struct.new( :can_start_11_call, :can_video_call, :force_tcp_call) SENSITIVE = [] include Aws::Structure end |
#can_video_call ⇒ Boolean
Specifies whether users can make video calls (as opposed to audio-only calls). Valid only when audio call(canStart11Call) is enabled.
692 693 694 695 696 697 698 |
# File 'gems/aws-sdk-wickr/lib/aws-sdk-wickr/types.rb', line 692 class CallingSettings < Struct.new( :can_start_11_call, :can_video_call, :force_tcp_call) SENSITIVE = [] include Aws::Structure end |
#force_tcp_call ⇒ Boolean
When enabled, forces all calls to use TCP protocol instead of UDP for network traversal.
692 693 694 695 696 697 698 |
# File 'gems/aws-sdk-wickr/lib/aws-sdk-wickr/types.rb', line 692 class CallingSettings < Struct.new( :can_start_11_call, :can_video_call, :force_tcp_call) SENSITIVE = [] include Aws::Structure end |