Class: Aws::KinesisVideoSignalingChannels::Types::IceServer
- Inherits:
-
Struct
- Object
- Struct
- Aws::KinesisVideoSignalingChannels::Types::IceServer
- Defined in:
- gems/aws-sdk-kinesisvideosignalingchannels/lib/aws-sdk-kinesisvideosignalingchannels/types.rb
Overview
A structure for the ICE server connection data.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#password ⇒ String
A password to login to the ICE server.
-
#ttl ⇒ Integer
The period of time, in seconds, during which the username and password are valid.
-
#uris ⇒ Array<String>
An array of URIs, in the form specified in the [I-D.petithuguenin-behave-turn-uris][1] spec.
-
#username ⇒ String
A username to login to the ICE server.
Instance Attribute Details
#password ⇒ String
A password to login to the ICE server.
97 98 99 100 101 102 103 104 |
# File 'gems/aws-sdk-kinesisvideosignalingchannels/lib/aws-sdk-kinesisvideosignalingchannels/types.rb', line 97 class IceServer < Struct.new( :uris, :username, :password, :ttl) SENSITIVE = [] include Aws::Structure end |
#ttl ⇒ Integer
The period of time, in seconds, during which the username and password are valid.
97 98 99 100 101 102 103 104 |
# File 'gems/aws-sdk-kinesisvideosignalingchannels/lib/aws-sdk-kinesisvideosignalingchannels/types.rb', line 97 class IceServer < Struct.new( :uris, :username, :password, :ttl) SENSITIVE = [] include Aws::Structure end |
#uris ⇒ Array<String>
An array of URIs, in the form specified in the I-D.petithuguenin-behave-turn-uris spec. These URIs provide the different addresses and/or protocols that can be used to reach the TURN server.
97 98 99 100 101 102 103 104 |
# File 'gems/aws-sdk-kinesisvideosignalingchannels/lib/aws-sdk-kinesisvideosignalingchannels/types.rb', line 97 class IceServer < Struct.new( :uris, :username, :password, :ttl) SENSITIVE = [] include Aws::Structure end |
#username ⇒ String
A username to login to the ICE server.
97 98 99 100 101 102 103 104 |
# File 'gems/aws-sdk-kinesisvideosignalingchannels/lib/aws-sdk-kinesisvideosignalingchannels/types.rb', line 97 class IceServer < Struct.new( :uris, :username, :password, :ttl) SENSITIVE = [] include Aws::Structure end |