Show / Hide Table of Contents

Class CfnPackagingConfigurationPropsMixin.SpekeKeyProviderProperty

A configuration for accessing an external Secure Packager and Encoder Key Exchange (SPEKE) service that provides encryption keys.

Inheritance
object
CfnPackagingConfigurationPropsMixin.SpekeKeyProviderProperty
Implements
CfnPackagingConfigurationPropsMixin.ISpekeKeyProviderProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.MediaPackage.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnPackagingConfigurationPropsMixin.SpekeKeyProviderProperty : CfnPackagingConfigurationPropsMixin.ISpekeKeyProviderProperty
Syntax (vb)
Public Class CfnPackagingConfigurationPropsMixin.SpekeKeyProviderProperty Implements CfnPackagingConfigurationPropsMixin.ISpekeKeyProviderProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackage-packagingconfiguration-spekekeyprovider.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.Mixins.Preview.AWS.MediaPackage.Mixins;

             var spekeKeyProviderProperty = new SpekeKeyProviderProperty {
                 EncryptionContractConfiguration = new EncryptionContractConfigurationProperty {
                     PresetSpeke20Audio = "presetSpeke20Audio",
                     PresetSpeke20Video = "presetSpeke20Video"
                 },
                 RoleArn = "roleArn",
                 SystemIds = new [] { "systemIds" },
                 Url = "url"
             };

Synopsis

Constructors

SpekeKeyProviderProperty()

A configuration for accessing an external Secure Packager and Encoder Key Exchange (SPEKE) service that provides encryption keys.

Properties

EncryptionContractConfiguration

Use encryptionContractConfiguration to configure one or more content encryption keys for your endpoints that use SPEKE Version 2.0. The encryption contract defines which content keys are 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.

RoleArn

The ARN for the IAM role that's granted by the key provider to provide access to the key provider API.

SystemIds

List of unique identifiers for the DRM systems to use, as defined in the CPIX specification.

Url

URL for the key provider's key retrieval API endpoint.

Constructors

SpekeKeyProviderProperty()

A configuration for accessing an external Secure Packager and Encoder Key Exchange (SPEKE) service that provides encryption keys.

public SpekeKeyProviderProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackage-packagingconfiguration-spekekeyprovider.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.Mixins.Preview.AWS.MediaPackage.Mixins;

             var spekeKeyProviderProperty = new SpekeKeyProviderProperty {
                 EncryptionContractConfiguration = new EncryptionContractConfigurationProperty {
                     PresetSpeke20Audio = "presetSpeke20Audio",
                     PresetSpeke20Video = "presetSpeke20Video"
                 },
                 RoleArn = "roleArn",
                 SystemIds = new [] { "systemIds" },
                 Url = "url"
             };

Properties

EncryptionContractConfiguration

Use encryptionContractConfiguration to configure one or more content encryption keys for your endpoints that use SPEKE Version 2.0. The encryption contract defines which content keys are 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.

public object? EncryptionContractConfiguration { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackage-packagingconfiguration-spekekeyprovider.html#cfn-mediapackage-packagingconfiguration-spekekeyprovider-encryptioncontractconfiguration

Type union: either IResolvable or CfnPackagingConfigurationPropsMixin.IEncryptionContractConfigurationProperty

RoleArn

The ARN for the IAM role that's granted by the key provider to provide access to the key provider API.

public string? RoleArn { get; set; }
Property Value

string

Remarks

Valid format: arn:aws:iam::{accountID}:role/{name}

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackage-packagingconfiguration-spekekeyprovider.html#cfn-mediapackage-packagingconfiguration-spekekeyprovider-rolearn

SystemIds

List of unique identifiers for the DRM systems to use, as defined in the CPIX specification.

public string[]? SystemIds { get; set; }
Property Value

string[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackage-packagingconfiguration-spekekeyprovider.html#cfn-mediapackage-packagingconfiguration-spekekeyprovider-systemids

Url

URL for the key provider's key retrieval API endpoint.

public string? Url { get; set; }
Property Value

string

Remarks

Must start with https://.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackage-packagingconfiguration-spekekeyprovider.html#cfn-mediapackage-packagingconfiguration-spekekeyprovider-url

Implements

CfnPackagingConfigurationPropsMixin.ISpekeKeyProviderProperty
Back to top Generated by DocFX