Module Values.BackupJobSummarySource

This is a summary of jobs created or running within the most recent 30 days. The returned summary may contain the following: Region, Account, State, RestourceType, MessageCategory, StartTime, EndTime, and Count of included jobs.

Sourcetype nonrec t = {
  1. region : Region.t option;
    (*

    The Amazon Web Services Regions within the job summary.

    *)
  2. accountId : AccountId.t option;
    (*

    The account ID that owns the jobs within the summary.

    *)
  3. state : BackupJobStatus.t option;
    (*

    This value is job count for jobs with the specified state.

    *)
  4. resourceType : ResourceType.t option;
    (*

    This value is the job count for the specified resource type. The request GetSupportedResourceTypes returns strings for supported resource types.

    *)
  5. messageCategory : MessageCategory.t option;
    (*

    This parameter is the job count for the specified message category. Example strings include AccessDenied, Success, and InvalidParameters. See Monitoring for a list of MessageCategory strings. The the value ANY returns count of all message categories. AGGREGATE_ALL aggregates job counts for all message categories and returns the sum.

    *)
  6. count : Integer.t option;
    (*

    The value as a number of jobs in a job summary.

    *)
  7. startTime : string option;
    (*

    The value of time in number format of a job start time. This value is the time in Unix format, Coordinated Universal Time (UTC), and accurate to milliseconds. For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087 AM.

    *)
  8. endTime : string option;
    (*

    The value of time in number format of a job end time. This value is the time in Unix format, Coordinated Universal Time (UTC), and accurate to milliseconds. For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087 AM.

    *)
}
Sourceval make : ?region:??? -> ?accountId:??? -> ?state:??? -> ?resourceType:??? -> ?messageCategory:??? -> ?count:??? -> ?startTime:??? -> ?endTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Integer.t | `String of Region.t | `Timestamp of string ]) 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