Module Values.RemediationParameterValueSource

The value is either a dynamic (resource) value or a static value. You must select either a dynamic value or a static value.

Sourcetype nonrec t = {
  1. resourceValue : ResourceValue.t option;
    (*

    The value is dynamic and changes at run-time.

    *)
  2. staticValue : StaticValue.t option;
    (*

    The value is static and does not change at run-time.

    *)
}
Sourceval make : ?resourceValue:??? -> ?staticValue:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Enum of string | `List of [> `String of StringWithCharLimit256.t ] list ]) list ]) 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