Module Values_1.OpsItemSummarySource

A count of OpsItems.

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

    The Amazon Resource Name (ARN) of the IAM entity that created the OpsItem.

    *)
  2. createdTime : Values_0.DateTime.t option;
    (*

    The date and time the OpsItem was created.

    *)
  3. lastModifiedBy : Values_0.String_.t option;
    (*

    The Amazon Resource Name (ARN) of the IAM entity that created the OpsItem.

    *)
  4. lastModifiedTime : Values_0.DateTime.t option;
    (*

    The date and time the OpsItem was last updated.

    *)
  5. priority : Values_0.OpsItemPriority.t option;
    (*

    The importance of this OpsItem in relation to other OpsItems in the system.

    *)
  6. source : Values_0.OpsItemSource.t option;
    (*

    The impacted Amazon Web Services resource.

    *)
  7. status : OpsItemStatus.t option;
    (*

    The OpsItem status.

    *)
  8. opsItemId : Values_0.OpsItemId.t option;
    (*

    The ID of the OpsItem.

    *)
  9. title : Values_0.OpsItemTitle.t option;
    (*

    A short heading that describes the nature of the OpsItem and the impacted resource.

    *)
  10. operationalData : Values_0.OpsItemOperationalData.t option;
    (*

    Operational data is custom data that provides useful reference details about the OpsItem.

    *)
  11. category : Values_0.OpsItemCategory.t option;
    (*

    A list of OpsItems by category.

    *)
  12. severity : Values_0.OpsItemSeverity.t option;
    (*

    A list of OpsItems by severity.

    *)
  13. opsItemType : Values_0.OpsItemType.t option;
    (*

    The type of OpsItem. Systems Manager supports the following types of OpsItems: /aws/issue This type of OpsItem is used for default OpsItems created by OpsCenter. /aws/changerequest This type of OpsItem is used by Change Manager for reviewing and approving or rejecting change requests. /aws/insight This type of OpsItem is used by OpsCenter for aggregating and reporting on duplicate OpsItems.

    *)
  14. actualStartTime : Values_0.DateTime.t option;
    (*

    The time a runbook workflow started. Currently reported only for the OpsItem type /aws/changerequest.

    *)
  15. actualEndTime : Values_0.DateTime.t option;
    (*

    The time a runbook workflow ended. Currently reported only for the OpsItem type /aws/changerequest.

    *)
  16. plannedStartTime : Values_0.DateTime.t option;
    (*

    The time specified in a change request for a runbook workflow to start. Currently supported only for the OpsItem type /aws/changerequest.

    *)
  17. plannedEndTime : Values_0.DateTime.t option;
    (*

    The time specified in a change request for a runbook workflow to end. Currently supported only for the OpsItem type /aws/changerequest.

    *)
}
Sourceval make : ?createdBy:??? -> ?createdTime:??? -> ?lastModifiedBy:??? -> ?lastModifiedTime:??? -> ?priority:??? -> ?source:??? -> ?status:??? -> ?opsItemId:??? -> ?title:??? -> ?operationalData:??? -> ?category:??? -> ?severity:??? -> ?opsItemType:??? -> ?actualStartTime:??? -> ?actualEndTime:??? -> ?plannedStartTime:??? -> ?plannedEndTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Values_0.OpsItemPriority.t | `Map of ([> `String of string ] * [> `Structure of (string * [> `Enum of string | `String of string ]) list ]) list | `String of Values_0.String_.t | `Timestamp of Values_0.DateTime.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