Module Values.ParameterSource

A value such as an Amazon Resource Name (ARN) or an Amazon Simple Notification Service topic entered in an extension when invoked. Parameter values are specified in an extension association. For more information about extensions, see Extending workflows in the AppConfig User Guide.

Sourcetype nonrec t = {
  1. description : Description.t option;
    (*

    Information about the parameter.

    *)
  2. required : Boolean.t option;
    (*

    A parameter value must be specified in the extension association.

    *)
  3. dynamic : Boolean.t option;
    (*

    Indicates whether this parameter's value can be supplied at the extension's action point instead of during extension association. Dynamic parameters can't be marked Required.

    *)
}
Sourceval make : ?description:??? -> ?required:??? -> ?dynamic:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of Description.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