Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

HlsEncryption

import type { HlsEncryption } from "https://aws-api.deno.dev/v0.3/services/mediapackagevod.ts?docs=full";

An HTTP Live Streaming (HLS) encryption configuration.

interface HlsEncryption {
ConstantInitializationVector?: string | null;
EncryptionMethod?: EncryptionMethod | null;
SpekeKeyProvider: SpekeKeyProvider;
}

§Properties

§
ConstantInitializationVector?: string | null
[src]

A constant initialization vector for encryption (optional). When not specified the initialization vector will be periodically rotated.

§
EncryptionMethod?: EncryptionMethod | null
[src]

The encryption method to use.

§
SpekeKeyProvider: SpekeKeyProvider
[src]