Class: Aws::Chime::Types::TelephonySettings

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-chime/types.rb

Overview

Settings that allow management of telephony permissions for an Amazon Chime user, such as inbound and outbound calling and text messaging.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#inbound_callingBoolean

Allows or denies inbound calling.

Returns:

  • (Boolean)

7827
7828
7829
7830
7831
7832
7833
# File 'lib/aws-sdk-chime/types.rb', line 7827

class TelephonySettings < Struct.new(
  :inbound_calling,
  :outbound_calling,
  :sms)
  SENSITIVE = []
  include Aws::Structure
end

#outbound_callingBoolean

Allows or denies outbound calling.

Returns:

  • (Boolean)

7827
7828
7829
7830
7831
7832
7833
# File 'lib/aws-sdk-chime/types.rb', line 7827

class TelephonySettings < Struct.new(
  :inbound_calling,
  :outbound_calling,
  :sms)
  SENSITIVE = []
  include Aws::Structure
end

#smsBoolean

Allows or denies SMS messaging.

Returns:

  • (Boolean)

7827
7828
7829
7830
7831
7832
7833
# File 'lib/aws-sdk-chime/types.rb', line 7827

class TelephonySettings < Struct.new(
  :inbound_calling,
  :outbound_calling,
  :sms)
  SENSITIVE = []
  include Aws::Structure
end