Class: Aws::MediaPackageVod::Types::CmafEncryption

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-mediapackagevod/types.rb

Overview

Note:

When making an API call, you may pass CmafEncryption data as a hash:

{
  constant_initialization_vector: "__string",
  speke_key_provider: { # required
    role_arn: "__string", # required
    system_ids: ["__string"], # required
    url: "__string", # required
  },
}

A CMAF encryption configuration.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#constant_initialization_vectorString

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).

Returns:

  • (String)


233
234
235
236
237
238
# File 'lib/aws-sdk-mediapackagevod/types.rb', line 233

class CmafEncryption < Struct.new(
  :constant_initialization_vector,
  :speke_key_provider)
  SENSITIVE = []
  include Aws::Structure
end

#speke_key_providerTypes::SpekeKeyProvider

A configuration for accessing an external Secure Packager and Encoder Key Exchange (SPEKE) service that will provide encryption keys.



233
234
235
236
237
238
# File 'lib/aws-sdk-mediapackagevod/types.rb', line 233

class CmafEncryption < Struct.new(
  :constant_initialization_vector,
  :speke_key_provider)
  SENSITIVE = []
  include Aws::Structure
end