BitmovinApiSdk\Models\SpekeDrmProvider

Synopsis

class SpekeDrmProvider extends ApiResource {
  • // Inherited methods from ApiResource
  • public void __construct()
  • public static $this create()
  • public void toArray()
}

Hierarchy

Members

public

  • $apiKey — string
  • $externalId — string
  • $externalIdModeBitmovinApiSdk\Models\ExternalIdMode
  • $gatewayRegion — string
  • $password — string
  • $roleArn — string
  • $url — string
  • $username — string

Methods

public

  • __construct()
  • apiKey() — Your API key for authentication via X-API-Key HTTP Header
  • externalId() — External ID used together with the IAM role identified by `roleArn` to assume access to the SPEKE server on AWS.
  • externalIdMode() — externalIdMode
  • gatewayRegion() — Describes the region of the AWS API Gateway that is used to access the SPEKE server. This property is mandatory when setting 'roleArn' and has to indicate in which region the AWS API Gateway is setup. This usually corresponds to the `{{region}}` one sets in the execute-api policy for the role as described in 'roleArn'.
  • password() — Your password for Basic Authentication
  • roleArn() — AWS role that will be assumed for the key exchange in case the provider runs on AWS. During the key exchange the role will be assumed to be able to access the key provider. This role is to be created in the customer's account and must be granted access to the API Gateway of the SPEKE server. For Bitmovin to be able to assume this role, the following has to be added to the trust policy of the role: ``` { \"Effect\": \"Allow\", \"Principal\": { \"AWS\": \"arn:aws:iam::630681592166:user/bitmovinCustomerSpekeAccess\" }, \"Action\": \"sts:AssumeRole\", \"Condition\": { \"StringEquals\": { \"sts:ExternalId\": \"{{externalId}}\" } } } ``` It is recommended to also set the {{externalId}} due to security reasons but it can also be ommitted. Additionally the role needs a policy similar to the following to be able to invoke the API gateway: ``` { \"Version\": \"2012-10-17\", \"Statement\": [ { \"Effect\": \"Allow\", \"Action\": [ \"execute-api:Invoke\" ], \"Resource\": [ \"arn:aws:execute-api:{{region}}:*:*_/_*_/POST/_*\" ] } ] } ``` where `{{region}}` is the region of the API gateway (for example `us-west-2`), the same has to be set in the property 'gatewayRegion'. It's also possible to set `{{region}` to `*` to give the role access to all regions.
  • url() — URL of the endpoint (required)
  • username() — Your username for Basic Authentication

Inherited from BitmovinApiSdk\Common\ApiResource

public