Module Values.PolicySource

A policy configures behavior that you allow or disallow for your account. For information about MediaConvert policies, see the user guide at http://docs.aws.amazon.com/mediaconvert/latest/ug/what-is.html

Sourcetype nonrec t = {
  1. httpInputs : InputPolicy.t option;
    (*

    Allow or disallow jobs that specify HTTP inputs.

    *)
  2. httpsInputs : InputPolicy.t option;
    (*

    Allow or disallow jobs that specify HTTPS inputs.

    *)
  3. s3Inputs : InputPolicy.t option;
    (*

    Allow or disallow jobs that specify Amazon S3 inputs.

    *)
}
Sourceval make : ?httpInputs:??? -> ?httpsInputs:??? -> ?s3Inputs:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string ]) 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