Class: AWSCDK::MediaPackage::CfnOriginEndpoint::EncryptionContractConfigurationProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::MediaPackage::CfnOriginEndpoint::EncryptionContractConfigurationProperty
- Defined in:
- media_package/cfn_origin_endpoint.rb
Overview
Use encryptionContractConfiguration to configure one or more content encryption keys for your endpoints that use SPEKE Version 2.0. The encryption contract defines the content keys 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. For more information about these presets, see SPEKE Version 2.0 Presets .
Note the following considerations when using encryption_contract_configuration :
- You can use
encryption_contract_configurationfor DASH endpoints that use SPEKE Version 2.0. SPEKE Version 2.0 relies on the CPIX Version 2.3 specification. - You cannot combine an
UNENCRYPTEDpreset withUNENCRYPTEDorSHAREDpresets acrosspreset_speke20_audioandpreset_speke20_video. - When you use a
SHAREDpreset, you must use it for bothpreset_speke20_audioandpreset_speke20_video.
Instance Attribute Summary collapse
-
#preset_speke20_audio ⇒ String
readonly
A collection of audio encryption presets.
-
#preset_speke20_video ⇒ String
readonly
A collection of video encryption presets.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(preset_speke20_audio:, preset_speke20_video:) ⇒ EncryptionContractConfigurationProperty
constructor
A new instance of EncryptionContractConfigurationProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(preset_speke20_audio:, preset_speke20_video:) ⇒ EncryptionContractConfigurationProperty
Returns a new instance of EncryptionContractConfigurationProperty.
1170 1171 1172 1173 1174 1175 |
# File 'media_package/cfn_origin_endpoint.rb', line 1170 def initialize(preset_speke20_audio:, preset_speke20_video:) @preset_speke20_audio = preset_speke20_audio Jsii::Type.check_type(@preset_speke20_audio, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "presetSpeke20Audio") @preset_speke20_video = preset_speke20_video Jsii::Type.check_type(@preset_speke20_video, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "presetSpeke20Video") end |
Instance Attribute Details
#preset_speke20_audio ⇒ String (readonly)
A collection of audio encryption presets.
Value description:
PRESET-AUDIO-1- Use one content key to encrypt all of the audio tracks in your stream.PRESET-AUDIO-2- Use one content key to encrypt all of the stereo audio tracks and one content key to encrypt all of the multichannel audio tracks.PRESET-AUDIO-3- Use one content key to encrypt all of the stereo audio tracks, one content key to encrypt all of the multichannel audio tracks with 3 to 6 channels, and one content key to encrypt all of the multichannel audio tracks with more than 6 channels.SHARED- Use the same content key for all of the audio and video tracks in your stream.UNENCRYPTED- Don't encrypt any of the audio tracks in your stream.
1189 1190 1191 |
# File 'media_package/cfn_origin_endpoint.rb', line 1189 def preset_speke20_audio @preset_speke20_audio end |
#preset_speke20_video ⇒ String (readonly)
A collection of video encryption presets.
Value description:
PRESET-VIDEO-1- Use one content key to encrypt all of the video tracks in your stream.PRESET-VIDEO-2- Use one content key to encrypt all of the SD video tracks and one content key for all HD and higher resolutions video tracks.PRESET-VIDEO-3- Use one content key to encrypt all of the SD video tracks, one content key for HD video tracks and one content key for all UHD video tracks.PRESET-VIDEO-4- Use one content key to encrypt all of the SD video tracks, one content key for HD video tracks, one content key for all UHD1 video tracks and one content key for all UHD2 video tracks.PRESET-VIDEO-5- Use one content key to encrypt all of the SD video tracks, one content key for HD1 video tracks, one content key for HD2 video tracks, one content key for all UHD1 video tracks and one content key for all UHD2 video tracks.PRESET-VIDEO-6- Use one content key to encrypt all of the SD video tracks, one content key for HD1 video tracks, one content key for HD2 video tracks and one content key for all UHD video tracks.PRESET-VIDEO-7- Use one content key to encrypt all of the SD+HD1 video tracks, one content key for HD2 video tracks and one content key for all UHD video tracks.PRESET-VIDEO-8- Use one content key to encrypt all of the SD+HD1 video tracks, one content key for HD2 video tracks, one content key for all UHD1 video tracks and one content key for all UHD2 video tracks.SHARED- Use the same content key for all of the video and audio tracks in your stream.UNENCRYPTED- Don't encrypt any of the video tracks in your stream.
1207 1208 1209 |
# File 'media_package/cfn_origin_endpoint.rb', line 1207 def preset_speke20_video @preset_speke20_video end |
Class Method Details
.jsii_properties ⇒ Object
1209 1210 1211 1212 1213 1214 |
# File 'media_package/cfn_origin_endpoint.rb', line 1209 def self.jsii_properties { :preset_speke20_audio => "presetSpeke20Audio", :preset_speke20_video => "presetSpeke20Video", } end |
Instance Method Details
#to_jsii ⇒ Object
1216 1217 1218 1219 1220 1221 1222 1223 |
# File 'media_package/cfn_origin_endpoint.rb', line 1216 def to_jsii result = {} result.merge!({ "presetSpeke20Audio" => @preset_speke20_audio, "presetSpeke20Video" => @preset_speke20_video, }) result.compact end |