Module Values.ParameterSource

Specifies a parameter.

Sourcetype nonrec t = {
  1. parameterName : String_.t option;
    (*

    Specifies the name of the parameter.

    *)
  2. parameterValue : String_.t option;
    (*

    Specifies the value of the parameter.

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

    Provides a description of the parameter.

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

    Indicates the source of the parameter value.

    *)
  5. applyType : String_.t option;
    (*

    Specifies the engine specific parameters type.

    *)
  6. dataType : String_.t option;
    (*

    Specifies the valid data type for the parameter.

    *)
  7. allowedValues : String_.t option;
    (*

    Specifies the valid range of values for the parameter.

    *)
  8. isModifiable : Boolean.t option;
    (*

    Indicates whether (true) or not (false) the parameter can be modified. Some parameters have security or operational implications that prevent them from being changed.

    *)
  9. minimumEngineVersion : String_.t option;
    (*

    The earliest engine version to which the parameter can apply.

    *)
  10. applyMethod : ApplyMethod.t option;
    (*

    Indicates when to apply parameter updates.

    *)
}
Sourceval make : ?parameterName:??? -> ?parameterValue:??? -> ?description:??? -> ?source:??? -> ?applyType:??? -> ?dataType:??? -> ?allowedValues:??? -> ?isModifiable:??? -> ?minimumEngineVersion:??? -> ?applyMethod:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `String of String_.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