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

CmafEncryption

import type { CmafEncryption } from "https://aws-api.deno.dev/v0.4/services/mediapackage.ts?docs=full";

A Common Media Application Format (CMAF) encryption configuration.

interface CmafEncryption {
ConstantInitializationVector?: string | null;
EncryptionMethod?: CmafEncryptionMethod | null;
KeyRotationIntervalSeconds?: number | null;
SpekeKeyProvider: SpekeKeyProvider;
}

§Properties

§
ConstantInitializationVector?: string | null
[src]

An optional 128-bit, 16-byte hex value represented by a 32-character string, used in conjunction with the key for encrypting blocks. If you don't specify a value, then MediaPackage creates the constant initialization vector (IV).

§
EncryptionMethod?: CmafEncryptionMethod | null
[src]
§
KeyRotationIntervalSeconds?: number | null
[src]

Time (in seconds) between each encryption key rotation.

§
SpekeKeyProvider: SpekeKeyProvider
[src]