AWSKinesisVideoSignalingIceServer

Objective-C

@interface AWSKinesisVideoSignalingIceServer

Swift

class AWSKinesisVideoSignalingIceServer

A structure for the ICE server connection data.

  • A password to login to the ICE server.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable password;

    Swift

    var password: String? { get set }
  • ttl

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

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable ttl;

    Swift

    var ttl: NSNumber? { get set }
  • 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.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<NSString *> *_Nullable uris;

    Swift

    var uris: [String]? { get set }
  • A username to login to the ICE server.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable username;

    Swift

    var username: String? { get set }