Class: Aws::AlexaForBusiness::Types::SipAddress
- Inherits:
-
Struct
- Object
- Struct
- Aws::AlexaForBusiness::Types::SipAddress
- Defined in:
- gems/aws-sdk-alexaforbusiness/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.
4318 4319 4320 4321 4322 4323 |
# File 'gems/aws-sdk-alexaforbusiness/lib/aws-sdk-alexaforbusiness/types.rb', line 4318 class SipAddress < Struct.new( :uri, :type) SENSITIVE = [:uri, :type] include Aws::Structure end |
#uri ⇒ String
The URI for the SIP address.
4318 4319 4320 4321 4322 4323 |
# File 'gems/aws-sdk-alexaforbusiness/lib/aws-sdk-alexaforbusiness/types.rb', line 4318 class SipAddress < Struct.new( :uri, :type) SENSITIVE = [:uri, :type] include Aws::Structure end |