Module Values.ResourceSyncAttemptSource

Information about a resource sync attempt.

Sourcetype nonrec t = {
  1. events : ResourceSyncEventList.t option;
    (*

    The events related to a resource sync attempt.

    *)
  2. initialRevision : Revision.t option;
    (*

    The current state of the resource as defined in the resource's config-file in the linked repository.

    *)
  3. startedAt : Timestamp.t option;
    (*

    The start time for a resource sync attempt.

    *)
  4. status : ResourceSyncStatus.t option;
    (*

    The status for a resource sync attempt. The follow are valid statuses: SYNC-INITIATED - A resource sync attempt has been created and will begin soon. SYNCING - Syncing has started and work is being done to reconcile state. SYNCED - Syncing has completed successfully. SYNC_FAILED - A resource sync attempt has failed.

    *)
  5. targetRevision : Revision.t option;
    (*

    The desired state of the resource as defined in the resource's config-file in the linked repository. Git sync attempts to update the resource to this state.

    *)
  6. target : Target.t option;
    (*

    The name of the Amazon Web Services resource that is attempted to be synchronized.

    *)
}
Sourceval make : ?events:??? -> ?initialRevision:??? -> ?startedAt:??? -> ?status:??? -> ?targetRevision:??? -> ?target:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of Event.t | `Timestamp of Timestamp.t ]) list ] list | `String of Target.t | `Structure of (string * [> `Enum of string | `String of BranchName.t ]) list | `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