Yandex Cloud
Search
Discuss with expertTry it for free
  • Customer Stories
  • Documentation
  • Blog
  • All Services
  • System Status
  • Marketplace
    • Featured
    • Infrastructure & Network
    • Data Platform
    • AI for business
    • Security
    • DevOps tools
    • Serverless
    • Monitoring & Resources
  • All Solutions
    • By industry
    • By use case
    • Economics and Pricing
    • Security
    • Technical Support
    • Start testing with double trial credits
    • Cloud credits to scale your IT product
    • Gateway to Russia
    • Cloud for Startups
    • Center for Technologies and Society
    • Yandex Cloud Partner program
    • Price calculator
    • Pricing plans
  • Customer Stories
  • Documentation
  • Blog
© 2026 Direct Cursus Technology L.L.C.
Yandex Cloud Video
    • Overview
    • Control
      • Overview
        • Getting started
          • Environment
          • PictureInPictureController
          • VideoSurface
          • YaPlayer
            • PlayerError
            • Configuration
            • ClientUserId
            • ContentIdEndpoint
            • From
            • PlaybackConfig
            • PlaybackSpeed
            • PlayerStatus
            • QuasiEndpoint
            • Time
            • VideoType
    • Browser autoplay policy
  • Access management
  • Pricing policy
  • Audit Trails events
  • Release notes

In this article:

  • Contents
  • ClientInfoProvider
  • Discussion
  • Methods
  • Examples
  • Configuration
  • Discussion
  • Initializers
  • Examples
  1. Video Player
  2. SDK
  3. iOS
  4. CloudVideoPlayer
  5. Structs
  6. Configuration

Configuration

Written by
Yandex Cloud
Updated at May 28, 2026
  • Contents
  • ClientInfoProvider
    • Discussion
    • Methods
    • Examples
  • Configuration
    • Discussion
    • Initializers
    • Examples

ContentsContents

  • ClientInfoProvider
  • Configuration

ClientInfoProviderClientInfoProvider

public protocol ClientInfoProvider

Protocol for transmission of user information to the SDK.

DiscussionDiscussion

Implement this protocol to provide user ID to the telemetry.

MethodsMethods

func userId() -> ClientUserId?

Returns current user ID or nil if user unknown.

ExamplesExamples

struct MyClientInfoProvider: ClientInfoProvider {
  func userId() -> ClientUserId? {
    // Return your app's current user ID
    return ClientUserId(raw: currentUserId)
  }
}

ConfigurationConfiguration

public struct Configuration

SDK configuration.

DiscussionDiscussion

Provided when creating Environment. Contains the required application ID and an optional user information provider.

InitializersInitializers

public init(from: From, clientInfoProvider: ClientInfoProvider? = nil)

Creates an SDK configuration.

ExamplesExamples

let config = Configuration(
  from: From(raw: "my-ios-app"),
  clientInfoProvider: MyClientInfoProvider()
)
let environment = Environment(configuration: config)

Was the article helpful?

Previous
PlayerError
Next
ClientUserId
© 2026 Direct Cursus Technology L.L.C.