Module Values_0.DocumentParameterSource

Parameters specified in a Systems Manager document that run on the server when the command is run.

Sourcetype nonrec t = {
  1. name : DocumentParameterName.t option;
    (*

    The name of the parameter.

    *)
  2. type_ : DocumentParameterType.t option;
    (*

    The type of parameter. The type can be either String or StringList.

    *)
  3. description : DocumentParameterDescrption.t option;
    (*

    A description of what the parameter does, how to use it, the default value, and whether or not the parameter is optional.

    *)
  4. defaultValue : DocumentParameterDefaultValue.t option;
    (*

    If specified, the default values for the parameters. Parameters without a default value are required. Parameters with a default value are optional.

    *)
}
Sourceval make : ?name:??? -> ?type_:??? -> ?description:??? -> ?defaultValue:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of DocumentParameterName.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