Class: Aws::MediaPackageVod::Types::HlsEncryption
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaPackageVod::Types::HlsEncryption
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-mediapackagevod/types.rb
Overview
An HTTP Live Streaming (HLS) encryption configuration.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#constant_initialization_vector ⇒ String
A constant initialization vector for encryption (optional).
-
#encryption_method ⇒ String
The encryption method to use.
-
#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
A constant initialization vector for encryption (optional). When not specified the initialization vector will be periodically rotated.
993 994 995 996 997 998 999 |
# File 'lib/aws-sdk-mediapackagevod/types.rb', line 993 class HlsEncryption < Struct.new( :constant_initialization_vector, :encryption_method, :speke_key_provider) SENSITIVE = [] include Aws::Structure end |
#encryption_method ⇒ String
The encryption method to use.
993 994 995 996 997 998 999 |
# File 'lib/aws-sdk-mediapackagevod/types.rb', line 993 class HlsEncryption < Struct.new( :constant_initialization_vector, :encryption_method, :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.
993 994 995 996 997 998 999 |
# File 'lib/aws-sdk-mediapackagevod/types.rb', line 993 class HlsEncryption < Struct.new( :constant_initialization_vector, :encryption_method, :speke_key_provider) SENSITIVE = [] include Aws::Structure end |