Class: Aws::MediaPackageVod::Types::DashEncryption
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaPackageVod::Types::DashEncryption
- Defined in:
- gems/aws-sdk-mediapackagevod/lib/aws-sdk-mediapackagevod/types.rb
Overview
Note:
When making an API call, you may pass DashEncryption data as a hash:
{
speke_key_provider: { # required
role_arn: "__string", # required
system_ids: ["__string"], # required
url: "__string", # required
},
}
A Dynamic Adaptive Streaming over HTTP (DASH) encryption configuration.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#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
#speke_key_provider ⇒ Types::SpekeKeyProvider
A configuration for accessing an external Secure Packager and Encoder Key Exchange (SPEKE) service that will provide encryption keys.
766 767 768 769 770 |
# File 'gems/aws-sdk-mediapackagevod/lib/aws-sdk-mediapackagevod/types.rb', line 766 class DashEncryption < Struct.new( :speke_key_provider) SENSITIVE = [] include Aws::Structure end |