Module Values.ECSTargetSource

Information about the target of an Amazon ECS deployment.

Sourcetype nonrec t = {
  1. deploymentId : DeploymentId.t option;
    (*

    The unique ID of a deployment.

    *)
  2. targetId : TargetId.t option;
    (*

    The unique ID of a deployment target that has a type of ecsTarget.

    *)
  3. targetArn : TargetArn.t option;
    (*

    The Amazon Resource Name (ARN) of the target.

    *)
  4. lastUpdatedAt : Time.t option;
    (*

    The date and time when the target Amazon ECS application was updated by a deployment.

    *)
  5. lifecycleEvents : LifecycleEventList.t option;
    (*

    The lifecycle events of the deployment to this target Amazon ECS application.

    *)
  6. status : TargetStatus.t option;
    (*

    The status an Amazon ECS deployment's target ECS application.

    *)
  7. taskSetsInfo : ECSTaskSetList.t option;
    (*

    The ECSTaskSet objects associated with the ECS target.

    *)
}
Sourceval make : ?deploymentId:??? -> ?targetId:??? -> ?targetArn:??? -> ?lastUpdatedAt:??? -> ?lifecycleEvents:??? -> ?status:??? -> ?taskSetsInfo:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Double of TrafficWeight.t | `Enum of string | `Long of ECSTaskSetCount.t | `String of LifecycleEventName.t | `Structure of (string * [> `Enum of string | `String of ScriptName.t ]) list | `Timestamp of Timestamp.t ]) list ] list | `String of DeploymentId.t | `Timestamp of Time.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