Class: Aws::MediaConvert::Types::SpekeKeyProvider
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaConvert::Types::SpekeKeyProvider
- Defined in:
- gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb
Overview
When making an API call, you may pass SpekeKeyProvider data as a hash:
{
certificate_arn: "__stringPatternArnAwsUsGovAcm",
resource_id: "__string",
system_ids: ["__stringPattern09aFAF809aFAF409aFAF409aFAF409aFAF12"],
url: "__stringPatternHttps",
}
If your output group type is HLS, DASH, or Microsoft Smooth, use these settings when doing DRM encryption with a SPEKE-compliant key provider. If your output group type is CMAF, use the SpekeKeyProviderCmaf settings instead.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#certificate_arn ⇒ String
If you want your key provider to encrypt the content keys that it provides to MediaConvert, set up a certificate with a master key using AWS Certificate Manager.
-
#resource_id ⇒ String
Specify the resource ID that your SPEKE-compliant key provider uses to identify this content.
-
#system_ids ⇒ Array<String>
Relates to SPEKE implementation.
-
#url ⇒ String
Specify the URL to the key server that your SPEKE-compliant DRM key provider uses to provide keys for encrypting your content.
Instance Attribute Details
#certificate_arn ⇒ String
If you want your key provider to encrypt the content keys that it provides to MediaConvert, set up a certificate with a master key using AWS Certificate Manager. Specify the certificate's Amazon Resource Name (ARN) here.
22883 22884 22885 22886 22887 22888 22889 22890 |
# File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 22883 class SpekeKeyProvider < Struct.new( :certificate_arn, :resource_id, :system_ids, :url) SENSITIVE = [] include Aws::Structure end |
#resource_id ⇒ String
Specify the resource ID that your SPEKE-compliant key provider uses to identify this content.
22883 22884 22885 22886 22887 22888 22889 22890 |
# File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 22883 class SpekeKeyProvider < Struct.new( :certificate_arn, :resource_id, :system_ids, :url) SENSITIVE = [] include Aws::Structure end |
#system_ids ⇒ Array<String>
Relates to SPEKE implementation. DRM system identifiers. DASH output groups support a max of two system ids. Other group types support one system id. See https://dashif.org/identifiers/content_protection/ for more details.
22883 22884 22885 22886 22887 22888 22889 22890 |
# File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 22883 class SpekeKeyProvider < Struct.new( :certificate_arn, :resource_id, :system_ids, :url) SENSITIVE = [] include Aws::Structure end |
#url ⇒ String
Specify the URL to the key server that your SPEKE-compliant DRM key provider uses to provide keys for encrypting your content.
22883 22884 22885 22886 22887 22888 22889 22890 |
# File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 22883 class SpekeKeyProvider < Struct.new( :certificate_arn, :resource_id, :system_ids, :url) SENSITIVE = [] include Aws::Structure end |