Class: Aws::SSMContacts::Types::ContactChannelAddress
- Inherits:
-
Struct
- Object
- Struct
- Aws::SSMContacts::Types::ContactChannelAddress
- Defined in:
- gems/aws-sdk-ssmcontacts/lib/aws-sdk-ssmcontacts/types.rb
Overview
Note:
When making an API call, you may pass ContactChannelAddress data as a hash:
{
simple_address: "SimpleAddress",
}
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
275 276 277 278 279 |
# File 'gems/aws-sdk-ssmcontacts/lib/aws-sdk-ssmcontacts/types.rb', line 275 class ContactChannelAddress < Struct.new( :simple_address) SENSITIVE = [] include Aws::Structure end |