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
Note:
When making an API call, you may pass SipAddress data as a hash:
{
uri: "SipUri", # required
type: "WORK", # required, accepts WORK
}
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.
5347 5348 5349 5350 5351 5352 |
# File 'gems/aws-sdk-alexaforbusiness/lib/aws-sdk-alexaforbusiness/types.rb', line 5347 class SipAddress < Struct.new( :uri, :type) SENSITIVE = [:uri, :type] include Aws::Structure end |
#uri ⇒ String
The URI for the SIP address.
5347 5348 5349 5350 5351 5352 |
# File 'gems/aws-sdk-alexaforbusiness/lib/aws-sdk-alexaforbusiness/types.rb', line 5347 class SipAddress < Struct.new( :uri, :type) SENSITIVE = [:uri, :type] include Aws::Structure end |