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
.
9197 9198 9199 9200 9201 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 9197 class SystemEndpointAttributes < Struct.new( :address) SENSITIVE = [:address] include Aws::Structure end |