Module Values.GroupingStatusesItemSource

The information about a grouping or ungrouping resource action.

Sourcetype nonrec t = {
  1. resourceArn : ResourceArn.t option;
    (*

    The Amazon resource name (ARN) of a resource.

    *)
  2. action : GroupingType.t option;
    (*

    Describes the resource grouping action with values of GROUP or UNGROUP.

    *)
  3. status : GroupingStatus.t option;
    (*

    Describes the resource grouping status with values of SUCCESS, FAILED, IN_PROGRESS, or SKIPPED.

    *)
  4. errorMessage : ErrorMessage.t option;
    (*

    A message that explains the ErrorCode.

    *)
  5. errorCode : ErrorCode.t option;
    (*

    Specifies the error code that was raised.

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

    A timestamp of when the status was last updated.

    *)
}
Sourceval make : ?resourceArn:??? -> ?action:??? -> ?status:??? -> ?errorMessage:??? -> ?errorCode:??? -> ?updatedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ResourceArn.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