Module Values.EcsTaskSource

Contains information about Amazon ECS task involved in a GuardDuty finding, including task definition and container identifiers.

Sourcetype nonrec t = {
  1. createdAt : Timestamp.t option;
    (*

    The timestamp indicating when the Amazon ECS task was created, in UTC format.

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

    The ARN of task definition which describes the container and volume definitions of the Amazon ECS task.

    *)
  3. launchType : EcsLaunchType.t option;
    (*

    The infrastructure type on which the Amazon ECS task runs.

    *)
  4. containerUids : ContainerUids.t option;
    (*

    A list of unique identifiers for the containers associated with the Amazon ECS task.

    *)
}
Sourceval make : ?createdAt:??? -> ?taskDefinitionArn:??? -> ?launchType:??? -> ?containerUids:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of ContainerUid.t ] list | `String of String_.t | `Timestamp of Timestamp.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