Class: Aws::MediaPackage::Types::MssEncryption
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaPackage::Types::MssEncryption
- Defined in:
- gems/aws-sdk-mediapackage/lib/aws-sdk-mediapackage/types.rb
Overview
Note:
When making an API call, you may pass MssEncryption data as a hash:
{
speke_key_provider: { # required
certificate_arn: "__string",
encryption_contract_configuration: {
preset_speke_20_audio: "PRESET-AUDIO-1", # required, accepts PRESET-AUDIO-1
preset_speke_20_video: "PRESET-VIDEO-1", # required, accepts PRESET-VIDEO-1
},
resource_id: "__string", # required
role_arn: "__string", # required
system_ids: ["__string"], # required
url: "__string", # required
},
}
A Microsoft Smooth Streaming (MSS) 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.
2132 2133 2134 2135 2136 |
# File 'gems/aws-sdk-mediapackage/lib/aws-sdk-mediapackage/types.rb', line 2132 class MssEncryption < Struct.new( :speke_key_provider) SENSITIVE = [] include Aws::Structure end |