Class: Aws::KinesisVideoSignalingChannels::Types::IceServer

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

Overview

A structure for the ICE server connection data.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#passwordString

A password to login to the ICE server.

Returns:

  • (String)


97
98
99
100
101
102
103
104
# File 'lib/aws-sdk-kinesisvideosignalingchannels/types.rb', line 97

class IceServer < Struct.new(
  :uris,
  :username,
  :password,
  :ttl)
  SENSITIVE = []
  include Aws::Structure
end

#ttlInteger

The period of time, in seconds, during which the username and password are valid.

Returns:

  • (Integer)


97
98
99
100
101
102
103
104
# File 'lib/aws-sdk-kinesisvideosignalingchannels/types.rb', line 97

class IceServer < Struct.new(
  :uris,
  :username,
  :password,
  :ttl)
  SENSITIVE = []
  include Aws::Structure
end

#urisArray<String>

An array of URIs, in the form specified in the

I-D.petithuguenin-behave-turn-uris][1

spec. These URIs provide the

different addresses and/or protocols that can be used to reach the TURN server.

[1]: tools.ietf.org/html/draft-petithuguenin-behave-turn-uris-03

Returns:

  • (Array<String>)


97
98
99
100
101
102
103
104
# File 'lib/aws-sdk-kinesisvideosignalingchannels/types.rb', line 97

class IceServer < Struct.new(
  :uris,
  :username,
  :password,
  :ttl)
  SENSITIVE = []
  include Aws::Structure
end

#usernameString

A username to login to the ICE server.

Returns:

  • (String)


97
98
99
100
101
102
103
104
# File 'lib/aws-sdk-kinesisvideosignalingchannels/types.rb', line 97

class IceServer < Struct.new(
  :uris,
  :username,
  :password,
  :ttl)
  SENSITIVE = []
  include Aws::Structure
end