Class: Aws::AlexaForBusiness::Types::SipAddress

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#typeString

The type of the SIP address.

Returns:

  • (String)


4348
4349
4350
4351
4352
4353
# File 'gems/aws-sdk-alexaforbusiness/lib/aws-sdk-alexaforbusiness/types.rb', line 4348

class SipAddress < Struct.new(
  :uri,
  :type)
  SENSITIVE = [:uri, :type]
  include Aws::Structure
end

#uriString

The URI for the SIP address.

Returns:

  • (String)


4348
4349
4350
4351
4352
4353
# File 'gems/aws-sdk-alexaforbusiness/lib/aws-sdk-alexaforbusiness/types.rb', line 4348

class SipAddress < Struct.new(
  :uri,
  :type)
  SENSITIVE = [:uri, :type]
  include Aws::Structure
end