Module Values.ConfigurationCheckDefinitionSource

Represents a configuration check definition supported by AWS Systems Manager for SAP.

Sourcetype nonrec t = {
  1. id : ConfigurationCheckType.t option;
    (*

    The unique identifier of the configuration check.

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

    The name of the configuration check.

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

    A description of what the configuration check validates.

    *)
  4. applicableApplicationTypes : ApplicationTypeList.t option;
    (*

    The list of SSMSAP application types that this configuration check can be evaluated against.

    *)
}
Sourceval make : ?id:??? -> ?name:??? -> ?description:??? -> ?applicableApplicationTypes:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Enum of string ] list | `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