Module Values.AggregatedSourceStatusSource

The current sync status between the source and the aggregator account.

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

    The source account ID or an organization.

    *)
  2. sourceType : AggregatedSourceType.t option;
    (*

    The source account or an organization.

    *)
  3. awsRegion : AwsRegion.t option;
    (*

    The region authorized to collect aggregated data.

    *)
  4. lastUpdateStatus : AggregatedSourceStatusType.t option;
    (*

    Filters the last updated status type. Valid value FAILED indicates errors while moving data. Valid value SUCCEEDED indicates the data was successfully moved. Valid value OUTDATED indicates the data is not the most recent.

    *)
  5. lastUpdateTime : Date.t option;
    (*

    The time of the last update.

    *)
  6. lastErrorCode : String_.t option;
    (*

    The error code that Config returned when the source account aggregation last failed.

    *)
  7. lastErrorMessage : String_.t option;
    (*

    The message indicating that the source account aggregation failed due to an error.

    *)
}
Sourceval make : ?sourceId:??? -> ?sourceType:??? -> ?awsRegion:??? -> ?lastUpdateStatus:??? -> ?lastUpdateTime:??? -> ?lastErrorCode:??? -> ?lastErrorMessage:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.t | `Timestamp of Date.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