Values.ComponentStatusDataSourceData on the status of agent components.
type nonrec t = {componentType : ComponentTypeString.t;The Component type.
*)capabilityArn : CapabilityArn.t;Capability ARN of the component.
*)status : AgentStatus.t;Component status.
*)bytesSent : Long.t option;Bytes sent by the component.
*)bytesReceived : Long.t option;Bytes received by the component.
*)packetsDropped : Long.t option;Packets dropped by component.
*)dataflowId : Uuid.t;Dataflow UUID associated with the component.
*)}val make :
?bytesSent:??? ->
?bytesReceived:??? ->
?packetsDropped:??? ->
componentType:ComponentTypeString.t ->
capabilityArn:CapabilityArn.t ->
status:AgentStatus.t ->
dataflowId:Uuid.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Long of Long.t
| `String of ComponentTypeString.t ])
list ]