Class: Aws::AlexaForBusiness::Types::IPDialIn

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-alexaforbusiness/types.rb

Overview

Note:

When making an API call, you may pass IPDialIn data as a hash:

{
  endpoint: "Endpoint", # required
  comms_protocol: "SIP", # required, accepts SIP, SIPS, H323
}

The IP endpoint and protocol for calling.

Instance Attribute Summary collapse

Instance Attribute Details

#comms_protocolString

The protocol, including SIP, SIPS, and H323.

Returns:

  • (String)


1964
1965
1966
1967
1968
# File 'lib/aws-sdk-alexaforbusiness/types.rb', line 1964

class IPDialIn < Struct.new(
  :endpoint,
  :comms_protocol)
  include Aws::Structure
end

#endpointString

The IP address.

Returns:

  • (String)


1964
1965
1966
1967
1968
# File 'lib/aws-sdk-alexaforbusiness/types.rb', line 1964

class IPDialIn < Struct.new(
  :endpoint,
  :comms_protocol)
  include Aws::Structure
end