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. certificateArn : string option;
    (*

    An Amazon Resource Name (ARN) of a Certificate Manager certificate that MediaPackage will use for enforcing secure end-to-end data transfer with the key provider service.

    *)
  2. encryptionContractConfiguration : EncryptionContractConfiguration.t option;
  3. resourceId : string;
    (*

    The resource ID to include in key requests.

    *)
  4. roleArn : string;
    (*

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

    *)
  5. systemIds : string list;
    (*

    The system IDs to include in key requests.

    *)
  6. url : string;
    (*

    The URL of the external key provider service.

    *)
}
Sourceval context_ : string
Sourceval make : ?certificateArn:??? -> ?encryptionContractConfiguration:??? -> resourceId:string -> 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