Class: Aws::MediaPackage::Types::DashEncryption
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaPackage::Types::DashEncryption
- Defined in:
- gems/aws-sdk-mediapackage/lib/aws-sdk-mediapackage/types.rb
Overview
Note:
When making an API call, you may pass DashEncryption data as a hash:
{
key_rotation_interval_seconds: 1,
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 Dynamic Adaptive Streaming over HTTP (DASH) encryption configuration.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#key_rotation_interval_seconds ⇒ Integer
Time (in seconds) between each encryption key rotation.
-
#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
#key_rotation_interval_seconds ⇒ Integer
Time (in seconds) between each encryption key rotation.
887 888 889 890 891 892 |
# File 'gems/aws-sdk-mediapackage/lib/aws-sdk-mediapackage/types.rb', line 887 class DashEncryption < Struct.new( :key_rotation_interval_seconds, :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.
887 888 889 890 891 892 |
# File 'gems/aws-sdk-mediapackage/lib/aws-sdk-mediapackage/types.rb', line 887 class DashEncryption < Struct.new( :key_rotation_interval_seconds, :speke_key_provider) SENSITIVE = [] include Aws::Structure end |