Module Values.DeploymentSource

Contains information about a deployment.

Sourcetype nonrec t = {
  1. targetArn : TargetARN.t option;
    (*

    The ARN of the target IoT thing or thing group. When creating a subdeployment, the targetARN can only be a thing group.

    *)
  2. revisionId : NonEmptyString.t option;
    (*

    The revision number of the deployment.

    *)
  3. deploymentId : NonEmptyString.t option;
    (*

    The ID of the deployment.

    *)
  4. deploymentName : NonEmptyString.t option;
    (*

    The name of the deployment.

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

    The time at which the deployment was created, expressed in ISO 8601 format.

    *)
  6. deploymentStatus : DeploymentStatus.t option;
    (*

    The status of the deployment.

    *)
  7. isLatestForTarget : IsLatestForTarget.t option;
    (*

    Whether or not the deployment is the latest revision for its target.

    *)
  8. parentTargetArn : ThingGroupARN.t option;
    (*

    The parent deployment's target ARN within a subdeployment.

    *)
}
Sourceval make : ?targetArn:??? -> ?revisionId:??? -> ?deploymentId:??? -> ?deploymentName:??? -> ?creationTimestamp:??? -> ?deploymentStatus:??? -> ?isLatestForTarget:??? -> ?parentTargetArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of IsLatestForTarget.t | `Enum of string | `String of TargetARN.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