libZSservicesZSamazonka-kinesis-video-signalingZSamazonka-kinesis-video-signaling
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.KinesisVideoSignaling.Types.IceServer

Description

 
Synopsis

Documentation

data IceServer Source #

A structure for the ICE server connection data.

See: newIceServer smart constructor.

Constructors

IceServer' 

Fields

Instances

Instances details
Eq IceServer Source # 
Instance details

Defined in Amazonka.KinesisVideoSignaling.Types.IceServer

Read IceServer Source # 
Instance details

Defined in Amazonka.KinesisVideoSignaling.Types.IceServer

Show IceServer Source # 
Instance details

Defined in Amazonka.KinesisVideoSignaling.Types.IceServer

Generic IceServer Source # 
Instance details

Defined in Amazonka.KinesisVideoSignaling.Types.IceServer

Associated Types

type Rep IceServer :: Type -> Type #

NFData IceServer Source # 
Instance details

Defined in Amazonka.KinesisVideoSignaling.Types.IceServer

Methods

rnf :: IceServer -> () #

Hashable IceServer Source # 
Instance details

Defined in Amazonka.KinesisVideoSignaling.Types.IceServer

FromJSON IceServer Source # 
Instance details

Defined in Amazonka.KinesisVideoSignaling.Types.IceServer

type Rep IceServer Source # 
Instance details

Defined in Amazonka.KinesisVideoSignaling.Types.IceServer

type Rep IceServer = D1 ('MetaData "IceServer" "Amazonka.KinesisVideoSignaling.Types.IceServer" "libZSservicesZSamazonka-kinesis-video-signalingZSamazonka-kinesis-video-signaling" 'False) (C1 ('MetaCons "IceServer'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "ttl") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: S1 ('MetaSel ('Just "uris") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Text]))) :*: (S1 ('MetaSel ('Just "username") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "password") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))))

newIceServer :: IceServer Source #

Create a value of IceServer with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:ttl:IceServer', iceServer_ttl - The period of time, in seconds, during which the username and password are valid.

$sel:uris:IceServer', iceServer_uris - 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.

$sel:username:IceServer', iceServer_username - A username to login to the ICE server.

$sel:password:IceServer', iceServer_password - A password to login to the ICE server.

iceServer_ttl :: Lens' IceServer (Maybe Natural) Source #

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

iceServer_uris :: Lens' IceServer (Maybe [Text]) Source #

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.

iceServer_username :: Lens' IceServer (Maybe Text) Source #

A username to login to the ICE server.

iceServer_password :: Lens' IceServer (Maybe Text) Source #

A password to login to the ICE server.