Class: Aws::QConnect::Types::SystemEndpointAttributes
- Inherits:
-
Struct
- Object
- Struct
- Aws::QConnect::Types::SystemEndpointAttributes
- Defined in:
- gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb
Overview
The system endpoint attributes that are used with the message template.
Constant Summary collapse
- SENSITIVE =
[:address]
Instance Attribute Summary collapse
-
#address ⇒ String
The customer's phone number if used with
customerEndpoint
, or the number the customer dialed to call your contact center if used withsystemEndpoint
.
Instance Attribute Details
#address ⇒ String
The customer's phone number if used with customerEndpoint
, or the
number the customer dialed to call your contact center if used with
systemEndpoint
.
7817 7818 7819 7820 7821 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 7817 class SystemEndpointAttributes < Struct.new( :address) SENSITIVE = [:address] include Aws::Structure end |