Module Values.ComponentStatusDataSource

Data on the status of agent components.

Sourcetype nonrec t = {
  1. componentType : ComponentTypeString.t;
    (*

    The Component type.

    *)
  2. capabilityArn : CapabilityArn.t;
    (*

    Capability ARN of the component.

    *)
  3. status : AgentStatus.t;
    (*

    Component status.

    *)
  4. bytesSent : Long.t option;
    (*

    Bytes sent by the component.

    *)
  5. bytesReceived : Long.t option;
    (*

    Bytes received by the component.

    *)
  6. packetsDropped : Long.t option;
    (*

    Packets dropped by component.

    *)
  7. dataflowId : Uuid.t;
    (*

    Dataflow UUID associated with the component.

    *)
}
Sourceval context_ : string
Sourceval make : ?bytesSent:??? -> ?bytesReceived:??? -> ?packetsDropped:??? -> componentType:ComponentTypeString.t -> capabilityArn:CapabilityArn.t -> status:AgentStatus.t -> dataflowId:Uuid.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Long of Long.t | `String of ComponentTypeString.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