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)


2455
2456
2457
2458
2459
2460
2461
# File 'lib/aws-sdk-chime/types.rb', line 2455

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

#outbound_callingBoolean

Allows or denies outbound calling.

Returns:

  • (Boolean)


2455
2456
2457
2458
2459
2460
2461
# File 'lib/aws-sdk-chime/types.rb', line 2455

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

#smsBoolean

Allows or denies SMS messaging.

Returns:

  • (Boolean)


2455
2456
2457
2458
2459
2460
2461
# File 'lib/aws-sdk-chime/types.rb', line 2455

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