Module Values.CoverageResourceDetailsSource

Information about the resource for each individual EKS cluster.

Sourcetype nonrec t = {
  1. eksClusterDetails : CoverageEksClusterDetails.t option;
    (*

    EKS cluster details involved in the coverage statistics.

    *)
  2. ecsClusterDetails : CoverageEcsClusterDetails.t option;
    (*

    Information about the Amazon ECS cluster that is assessed for runtime coverage.

    *)
  3. ec2InstanceDetails : CoverageEc2InstanceDetails.t option;
    (*

    Information about the Amazon EC2 instance assessed for runtime coverage.

    *)
  4. resourceType : ResourceType.t option;
    (*

    The type of Amazon Web Services resource.

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