Class: Aws::MediaPackageVod::Types::CmafEncryption
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaPackageVod::Types::CmafEncryption
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-mediapackagevod/types.rb
Overview
A CMAF encryption configuration.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#constant_initialization_vector ⇒ String
An optional 128-bit, 16-byte hex value represented by a 32-character string, used in conjunction with the key for encrypting blocks.
-
#speke_key_provider ⇒ Types::SpekeKeyProvider
A configuration for accessing an external Secure Packager and Encoder Key Exchange (SPEKE) service that will provide encryption keys.
Instance Attribute Details
#constant_initialization_vector ⇒ String
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).
213 214 215 216 217 218 |
# File 'lib/aws-sdk-mediapackagevod/types.rb', line 213 class CmafEncryption < Struct.new( :constant_initialization_vector, :speke_key_provider) SENSITIVE = [] include Aws::Structure end |
#speke_key_provider ⇒ Types::SpekeKeyProvider
A configuration for accessing an external Secure Packager and Encoder Key Exchange (SPEKE) service that will provide encryption keys.
213 214 215 216 217 218 |
# File 'lib/aws-sdk-mediapackagevod/types.rb', line 213 class CmafEncryption < Struct.new( :constant_initialization_vector, :speke_key_provider) SENSITIVE = [] include Aws::Structure end |