Module Values.CodeDeployDeploymentSource

Information about a CodeDeploy deployment that occurred around the time of an incident and could be a possible cause of the incident.

Sourcetype nonrec t = {
  1. deploymentGroupArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the CodeDeploy deployment group associated with the deployment.

    *)
  2. deploymentId : CodeDeployDeploymentDeploymentIdString.t option;
    (*

    The ID of the CodeDeploy deployment.

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

    The timestamp for when the CodeDeploy deployment ended. Not reported for deployments that are still in progress.

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

    The timestamp for when the CodeDeploy deployment began.

    *)
}
Sourceval make : ?deploymentGroupArn:??? -> ?deploymentId:??? -> ?endTime:??? -> ?startTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Arn.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