Origin Endpoint Encryption
data class OriginEndpointEncryption(val constantInitializationVector: String? = null, val encryptionMethod: OriginEndpointEncryptionMethod, val keyRotationIntervalSeconds: Int? = null, val spekeKeyProvider: OriginEndpointSpekeKeyProvider)
The parameters for encrypting content.
Constructors
Link copied to clipboard
fun OriginEndpointEncryption(constantInitializationVector: String? = null, encryptionMethod: OriginEndpointEncryptionMethod, keyRotationIntervalSeconds: Int? = null, spekeKeyProvider: OriginEndpointSpekeKeyProvider)
Types
Properties
Link copied to clipboard
Link copied to clipboard
The frequency (in seconds) of key changes for live workflows, in which content is streamed real time. The service retrieves content keys before the live content begins streaming, and then retrieves them as needed over the lifetime of the workflow. By default, key rotation is set to 300 seconds (5 minutes), the minimum rotation interval, which is equivalent to setting it to 300. If you don't enter an interval, content keys aren't rotated.
The following example setting causes the service to rotate keys every thirty minutes: 1800
Link copied to clipboard