Module Values.ActionGroupSummarySource

Contains details about an action group.

Sourcetype nonrec t = {
  1. actionGroupId : Id.t option;
    (*

    The unique identifier of the action group.

    *)
  2. actionGroupName : Name.t option;
    (*

    The name of the action group.

    *)
  3. actionGroupState : ActionGroupState.t option;
    (*

    Specifies whether the action group is available for the agent to invoke or not when sending an InvokeAgent request.

    *)
  4. description : Description.t option;
    (*

    The description of the action group.

    *)
  5. updatedAt : DateTimestamp.t option;
    (*

    The time at which the action group was last updated.

    *)
}
Sourceval make : ?actionGroupId:??? -> ?actionGroupName:??? -> ?actionGroupState:??? -> ?description:??? -> ?updatedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Id.t | `Timestamp of DateTimestamp.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