Module Values.EcsClusterSource

Contains information about the Amazon ECS cluster involved in a GuardDuty finding, including cluster identification and status.

Sourcetype nonrec t = {
  1. status : EcsClusterStatus.t option;
    (*

    The current status of the Amazon ECS cluster.

    *)
  2. ec2InstanceUids : Ec2InstanceUids.t option;
    (*

    A list of unique identifiers for the Amazon EC2 instances that serve as container instances in the Amazon ECS cluster.

    *)
}
Sourceval make : ?status:??? -> ?ec2InstanceUids:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of Ec2InstanceUid.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