Module Values.GroupSource

This structure contains information about one group.

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

    The unique ID of the group.

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

    The name of the group.

    *)
  3. arn : GroupArn.t option;
    (*

    The ARN of the group.

    *)
  4. tags : TagMap.t option;
    (*

    The list of key-value pairs that are associated with the canary.

    *)
  5. createdTime : Timestamp.t option;
    (*

    The date and time that the group was created.

    *)
  6. lastModifiedTime : Timestamp.t option;
    (*

    The date and time that the group was most recently updated.

    *)
}
Sourceval make : ?id:??? -> ?name:??? -> ?arn:??? -> ?tags:??? -> ?createdTime:??? -> ?lastModifiedTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of String_.t | `Timestamp of Timestamp.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