Module Values.SpekeKeyProviderSource

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

Sourcetype nonrec t = {
  1. encryptionContractConfiguration : EncryptionContractConfiguration.t option;
  2. roleArn : string;
    (*

    An Amazon Resource Name (ARN) of an IAM role that AWS Elemental MediaPackage will assume when accessing the key provider service.

    *)
  3. systemIds : string list;
    (*

    The system IDs to include in key requests.

    *)
  4. url : string;
    (*

    The URL of the external key provider service.

    *)
}
Sourceval context_ : string
Sourceval make : ?encryptionContractConfiguration:??? -> roleArn:string -> systemIds:string list -> url:string -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of string ] list | `String of string | `Structure of (string * [> `Enum of string ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t