Class: Aws::MediaPackageVod::Types::HlsEncryption

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 HlsEncryption data as a hash:

{
  constant_initialization_vector: "__string",
  encryption_method: "AES_128", # accepts AES_128, SAMPLE_AES
  speke_key_provider: { # required
    role_arn: "__string", # required
    system_ids: ["__string"], # required
    url: "__string", # required
  },
}

An HTTP Live Streaming (HLS) encryption configuration.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#constant_initialization_vectorString

A constant initialization vector for encryption (optional). When not specified the initialization vector will be periodically rotated.

Returns:

  • (String)


1259
1260
1261
1262
1263
1264
1265
# File 'lib/aws-sdk-mediapackagevod/types.rb', line 1259

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

#encryption_methodString

The encryption method to use.

Returns:

  • (String)


1259
1260
1261
1262
1263
1264
1265
# File 'lib/aws-sdk-mediapackagevod/types.rb', line 1259

class HlsEncryption < Struct.new(
  :constant_initialization_vector,
  :encryption_method,
  :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.



1259
1260
1261
1262
1263
1264
1265
# File 'lib/aws-sdk-mediapackagevod/types.rb', line 1259

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