Module Values.BaselineSummarySource

Returns a summary of information about a Baseline object.

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

    The full ARN of a Baseline.

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

    The human-readable name of a Baseline.

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

    A summary description of a Baseline.

    *)
}
Sourceval make : ?arn:??? -> ?name:??? -> ?description:??? -> unit -> t
Sourceval to_value : t -> [> `Structure 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