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.4/services/mediapackage.ts?docs=full";

An HTTP Live Streaming (HLS) encryption configuration.

interface HlsEncryption {
ConstantInitializationVector?: string | null;
EncryptionMethod?: EncryptionMethod | null;
KeyRotationIntervalSeconds?: number | null;
RepeatExtXKey?: boolean | 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.

§
KeyRotationIntervalSeconds?: number | null
[src]

Interval (in seconds) between each encryption key rotation.

§
RepeatExtXKey?: boolean | null
[src]

When enabled, the EXT-X-KEY tag will be repeated in output manifests.

§
SpekeKeyProvider: SpekeKeyProvider
[src]