Class SpekeDrmProvider

Export

SpekeDrmProvider

Constructors

Properties

apiKey?: string

Your API key for authentication via X-API-Key HTTP Header

Memberof

SpekeDrmProvider

externalId?: string

External ID used together with the IAM role identified by roleArn to assume access to the SPEKE server on AWS.

Memberof

SpekeDrmProvider

externalIdMode?: ExternalIdMode

Memberof

SpekeDrmProvider

gatewayRegion?: string

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'.

Memberof

SpekeDrmProvider

password?: string

Your password for Basic Authentication

Memberof

SpekeDrmProvider

roleArn?: string

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.

Memberof

SpekeDrmProvider

url?: string

URL of the endpoint (required)

Memberof

SpekeDrmProvider

username?: string

Your username for Basic Authentication

Memberof

SpekeDrmProvider