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

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

Instance Attribute Details

#typeString

The type of the SIP address.

Returns:

  • (String)

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

#uriString

The URI for the SIP address.

Returns:

  • (String)

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