Class: Aws::AlexaForBusiness::Types::SipAddress
- Inherits:
-
Struct
- Object
- Struct
- Aws::AlexaForBusiness::Types::SipAddress
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-alexaforbusiness/types.rb
Overview
The SIP address for the contact containing the URI and SIP address type.
Constant Summary collapse
- SENSITIVE =
[:uri, :type]
Instance Attribute Summary collapse
-
#type ⇒ String
The type of the SIP address.
-
#uri ⇒ String
The URI for the SIP address.
Instance Attribute Details
#type ⇒ String
The type of the SIP address.
4348 4349 4350 4351 4352 4353 |
# File 'lib/aws-sdk-alexaforbusiness/types.rb', line 4348 class SipAddress < Struct.new( :uri, :type) SENSITIVE = [:uri, :type] include Aws::Structure end |
#uri ⇒ String
The URI for the SIP address.
4348 4349 4350 4351 4352 4353 |
# File 'lib/aws-sdk-alexaforbusiness/types.rb', line 4348 class SipAddress < Struct.new( :uri, :type) SENSITIVE = [:uri, :type] include Aws::Structure end |