Module Values_2.EdgeDeploymentPlanSummarySource

Contains information summarizing an edge deployment plan.

Sourcetype nonrec t = {
  1. edgeDeploymentPlanArn : Values_0.EdgeDeploymentPlanArn.t option;
    (*

    The ARN of the edge deployment plan.

    *)
  2. edgeDeploymentPlanName : Values_0.EntityName.t option;
    (*

    The name of the edge deployment plan.

    *)
  3. deviceFleetName : Values_0.EntityName.t option;
    (*

    The name of the device fleet used for the deployment.

    *)
  4. edgeDeploymentSuccess : Values_0.Integer.t option;
    (*

    The number of edge devices with the successful deployment.

    *)
  5. edgeDeploymentPending : Values_0.Integer.t option;
    (*

    The number of edge devices yet to pick up the deployment, or in progress.

    *)
  6. edgeDeploymentFailed : Values_0.Integer.t option;
    (*

    The number of edge devices that failed the deployment.

    *)
  7. creationTime : Values_0.Timestamp.t option;
    (*

    The time when the edge deployment plan was created.

    *)
  8. lastModifiedTime : Values_0.Timestamp.t option;
    (*

    The time when the edge deployment plan was last updated.

    *)
}
Sourceval make : ?edgeDeploymentPlanArn:??? -> ?edgeDeploymentPlanName:??? -> ?deviceFleetName:??? -> ?edgeDeploymentSuccess:??? -> ?edgeDeploymentPending:??? -> ?edgeDeploymentFailed:??? -> ?creationTime:??? -> ?lastModifiedTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Values_0.Integer.t | `String of Values_0.EdgeDeploymentPlanArn.t | `Timestamp of Values_0.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