Class: Aws::SSMContacts::Types::ContactChannelAddress
- Inherits:
-
Struct
- Object
- Struct
- Aws::SSMContacts::Types::ContactChannelAddress
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-ssmcontacts/types.rb
Overview
The details that Incident Manager uses when trying to engage the contact channel.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#simple_address ⇒ String
The format is dependent on the type of the contact channel.
Instance Attribute Details
#simple_address ⇒ String
The format is dependent on the type of the contact channel. The following are the expected formats:
-
SMS - ‘+’ followed by the country code and phone number
-
VOICE - ‘+’ followed by the country code and phone number
-
EMAIL - any standard email format
246 247 248 249 250 |
# File 'lib/aws-sdk-ssmcontacts/types.rb', line 246 class ContactChannelAddress < Struct.new( :simple_address) SENSITIVE = [] include Aws::Structure end |