Module Values.DeployActionExecutionTargetSource

The target for the deploy action.

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

    The ID of the target for the deploy action.

    *)
  2. targetType : String_.t option;
    (*

    The type of target for the deploy action.

    *)
  3. status : String_.t option;
    (*

    The status of the deploy action.

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

    The start time for the deploy action.

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

    The end time for the deploy action.

    *)
  6. events : DeployTargetEventList.t option;
    (*

    The lifecycle events for the deploy action.

    *)
}
Sourceval make : ?targetId:??? -> ?targetType:??? -> ?status:??? -> ?startTime:??? -> ?endTime:??? -> ?events:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of String_.t | `Structure of (string * [> `String of String_.t ]) list | `Timestamp of Timestamp.t ]) list ] list | `String of String_.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