Module Values.CustomParameterSource

The details of user parameters of an environment blueprint.

Sourcetype nonrec t = {
  1. keyName : CustomParameterKeyNameString.t;
    (*

    The key name of the parameter.

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

    The description of the parameter.

    *)
  3. fieldType : String_.t;
    (*

    The filed type of the parameter.

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

    The default value of the parameter.

    *)
  5. isEditable : Boolean.t option;
    (*

    Specifies whether the parameter is editable.

    *)
  6. isOptional : Boolean.t option;
    (*

    Specifies whether the custom parameter is optional.

    *)
  7. isUpdateSupported : Boolean.t option;
    (*

    Specifies whether a parameter value can be updated after creation.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?defaultValue:??? -> ?isEditable:??? -> ?isOptional:??? -> ?isUpdateSupported:??? -> keyName:CustomParameterKeyNameString.t -> fieldType:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of CustomParameterKeyNameString.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