Module Values.EcsClusterDetailsSource

Contains information about the details of the ECS Cluster.

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

    The name of the ECS Cluster.

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

    The Amazon Resource Name (ARN) that identifies the cluster.

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

    The status of the ECS cluster.

    *)
  4. activeServicesCount : Integer.t option;
    (*

    The number of services that are running on the cluster in an ACTIVE state.

    *)
  5. registeredContainerInstancesCount : Integer.t option;
    (*

    The number of container instances registered into the cluster.

    *)
  6. runningTasksCount : Integer.t option;
    (*

    The number of tasks in the cluster that are in the RUNNING state.

    *)
  7. tags : Tags.t option;
    (*

    The tags of the ECS Cluster.

    *)
  8. taskDetails : EcsTaskDetails.t option;
    (*

    Contains information about the details of the ECS Task.

    *)
}
Sourceval make : ?name:??? -> ?arn:??? -> ?status:??? -> ?activeServicesCount:??? -> ?registeredContainerInstancesCount:??? -> ?runningTasksCount:??? -> ?tags:??? -> ?taskDetails:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `List of [> `Structure of (string * [> `String of String_.t ]) list ] list | `String of String_.t | `Structure of (string * [> `List of [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of String_.t ]) list ] list | `String of String_.t | `Structure of (string * [> `Boolean of Boolean.t | `String of String_.t ]) list ]) list ] list | `String of String_.t | `Timestamp of Timestamp.t ]) list ]) 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