Module Values.ActionSummarySource

Contains the summary of the actions, including information about where the action resolves to.

Sourcetype nonrec t = {
  1. actionId : ID.t option;
    (*

    The ID of the action.

    *)
  2. actionDefinitionId : ID.t option;
    (*

    The ID of the action definition.

    *)
  3. targetResource : TargetResource.t option;
    (*

    The resource the action will be taken on.

    *)
  4. resolveTo : ResolveTo.t option;
    (*

    The detailed resource this action resolves to.

    *)
}
Sourceval make : ?actionId:??? -> ?actionDefinitionId:??? -> ?targetResource:??? -> ?resolveTo:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ID.t | `Structure of (string * [> `String of ID.t ]) list ]) 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