Module Values_1.PatchBaselineIdentitySource

Defines the basic information about a patch baseline.

Sourcetype nonrec t = {
  1. baselineId : Values_0.BaselineId.t option;
    (*

    The ID of the patch baseline.

    *)
  2. baselineName : Values_0.BaselineName.t option;
    (*

    The name of the patch baseline.

    *)
  3. operatingSystem : Values_0.OperatingSystem.t option;
    (*

    Defines the operating system the patch baseline applies to. The default value is WINDOWS.

    *)
  4. baselineDescription : Values_0.BaselineDescription.t option;
    (*

    The description of the patch baseline.

    *)
  5. defaultBaseline : Values_0.DefaultBaseline.t option;
    (*

    Indicates whether this is the default baseline. Amazon Web Services Systems Manager supports creating multiple default patch baselines. For example, you can create a default patch baseline for each operating system.

    *)
}
Sourceval make : ?baselineId:??? -> ?baselineName:??? -> ?operatingSystem:??? -> ?baselineDescription:??? -> ?defaultBaseline:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Values_0.DefaultBaseline.t | `Enum of string | `String of Values_0.BaselineId.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