Class: Aws::Wickr::Types::CallingSettings

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#can_start_11_callBoolean

Specifies whether users can start one-to-one calls.

Returns:

  • (Boolean)


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_callBoolean

Specifies whether users can make video calls (as opposed to audio-only calls). Valid only when audio call(canStart11Call) is enabled.

Returns:

  • (Boolean)


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_callBoolean

When enabled, forces all calls to use TCP protocol instead of UDP for network traversal.

Returns:

  • (Boolean)


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