Module Values_0.DocumentParameterSource

A map of key-value pairs containing the patterns that need to be replaced in a managed template job document schema. You can use the description of each key as a guidance to specify the inputs during runtime when creating a job. documentParameters can only be used when creating jobs from Amazon Web Services managed templates. This parameter can't be used with custom job templates or to create jobs from them.

Sourcetype nonrec t = {
  1. key : ParameterKey.t option;
    (*

    Key of the map field containing the patterns that need to be replaced in a managed template job document schema.

    *)
  2. description : JobDescription.t option;
    (*

    Description of the map field containing the patterns that need to be replaced in a managed template job document schema.

    *)
  3. regex : Regex.t option;
    (*

    A regular expression of the patterns that need to be replaced in a managed template job document schema.

    *)
  4. example : Example.t option;
    (*

    An example illustrating a pattern that need to be replaced in a managed template job document schema.

    *)
  5. optional : Optional.t option;
    (*

    Specifies whether a pattern that needs to be replaced in a managed template job document schema is optional or required.

    *)
}
Sourceval make : ?key:??? -> ?description:??? -> ?regex:??? -> ?example:??? -> ?optional:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Optional.t | `String of ParameterKey.t ]) 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