Module Values.GenericRevisionInfoSource

Information about an application revision.

Sourcetype nonrec t = {
  1. description : Description.t option;
    (*

    A comment about the revision.

    *)
  2. deploymentGroups : DeploymentGroupsList.t option;
    (*

    The deployment groups for which this is the current target revision.

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

    When the revision was first used by CodeDeploy.

    *)
  4. lastUsedTime : Timestamp.t option;
    (*

    When the revision was last used by CodeDeploy.

    *)
  5. registerTime : Timestamp.t option;
    (*

    When the revision was registered with CodeDeploy.

    *)
}
Sourceval make : ?description:??? -> ?deploymentGroups:??? -> ?firstUsedTime:??? -> ?lastUsedTime:??? -> ?registerTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of DeploymentGroupName.t ] list | `String of Description.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