You are viewing documentation for version 3 of the AWS SDK for Ruby. Version 2 documentation can be found here.
Class: Aws::Chime::Types::TelephonySettings
- Inherits:
-
Struct
- Object
- Struct
- Aws::Chime::Types::TelephonySettings
- Defined in:
- gems/aws-sdk-chime/lib/aws-sdk-chime/types.rb
Overview
Note:
When making an API call, you may pass TelephonySettings data as a hash:
{
inbound_calling: false, # required
outbound_calling: false, # required
sms: false, # required
}
Settings that allow management of telephony permissions for an Amazon Chime user, such as inbound and outbound calling and text messaging.
Instance Attribute Summary collapse
-
#inbound_calling ⇒ Boolean
Allows or denies inbound calling.
-
#outbound_calling ⇒ Boolean
Allows or denies outbound calling.
-
#sms ⇒ Boolean
Allows or denies SMS messaging.
Instance Attribute Details
#inbound_calling ⇒ Boolean
Allows or denies inbound calling.
3872 3873 3874 3875 3876 3877 |
# File 'gems/aws-sdk-chime/lib/aws-sdk-chime/types.rb', line 3872 class TelephonySettings < Struct.new( :inbound_calling, :outbound_calling, :sms) include Aws::Structure end |
#outbound_calling ⇒ Boolean
Allows or denies outbound calling.
3872 3873 3874 3875 3876 3877 |
# File 'gems/aws-sdk-chime/lib/aws-sdk-chime/types.rb', line 3872 class TelephonySettings < Struct.new( :inbound_calling, :outbound_calling, :sms) include Aws::Structure end |
#sms ⇒ Boolean
Allows or denies SMS messaging.
3872 3873 3874 3875 3876 3877 |
# File 'gems/aws-sdk-chime/lib/aws-sdk-chime/types.rb', line 3872 class TelephonySettings < Struct.new( :inbound_calling, :outbound_calling, :sms) include Aws::Structure end |