Class: Aws::MediaPackageVod::Types::EncryptionContractConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaPackageVod::Types::EncryptionContractConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-mediapackagevod/types.rb
Overview
Use encryptionContractConfiguration to configure one or more content encryption keys for your endpoints that use SPEKE 2.0. The encryption contract defines which content keys are used to encrypt the audio and video tracks in your stream. To configure the encryption contract, specify which audio and video encryption presets to use. Note the following considerations when using encryptionContractConfiguration: encryptionContractConfiguration can be used for DASH endpoints that use SPEKE 2.0. SPEKE 2.0 relies on the CPIX 2.3 specification. You must disable key rotation for this endpoint by setting keyRotationIntervalSeconds to 0.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#preset_speke_20_audio ⇒ String
A collection of audio encryption presets.
-
#preset_speke_20_video ⇒ String
A collection of video encryption presets.
Instance Attribute Details
#preset_speke_20_audio ⇒ String
A collection of audio encryption presets.
956 957 958 959 960 961 |
# File 'lib/aws-sdk-mediapackagevod/types.rb', line 956 class EncryptionContractConfiguration < Struct.new( :preset_speke_20_audio, :preset_speke_20_video) SENSITIVE = [] include Aws::Structure end |
#preset_speke_20_video ⇒ String
A collection of video encryption presets.
956 957 958 959 960 961 |
# File 'lib/aws-sdk-mediapackagevod/types.rb', line 956 class EncryptionContractConfiguration < Struct.new( :preset_speke_20_audio, :preset_speke_20_video) SENSITIVE = [] include Aws::Structure end |