Module Values.CoverageEcsClusterDetailsSource

Contains information about Amazon ECS cluster runtime coverage details.

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

    The name of the Amazon ECS cluster.

    *)
  2. fargateDetails : FargateDetails.t option;
    (*

    Information about the Fargate details associated with the Amazon ECS cluster.

    *)
  3. containerInstanceDetails : ContainerInstanceDetails.t option;
    (*

    Information about the Amazon ECS container running on Amazon EC2 instance.

    *)
}
Sourceval make : ?clusterName:??? -> ?fargateDetails:??? -> ?containerInstanceDetails:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.t | `Structure of (string * [> `Enum of string | `List of [> `String of String_.t ] list | `Long of Long.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