Values.CapabilitySummarySourceA summary of a capability, containing basic information without the full configuration details. This is returned by the ListCapabilities operation.
type nonrec t = {capabilityName : String_.t option;The unique name of the capability within the cluster.
*)arn : String_.t option;The Amazon Resource Name (ARN) of the capability.
*)type_ : CapabilityType.t option;The type of capability. Valid values are ACK, ARGOCD, or KRO.
*)status : CapabilityStatus.t option;The current status of the capability.
*)version : String_.t option;The version of the capability software that is currently running.
*)createdAt : Timestamp.t option;The Unix epoch timestamp in seconds for when the capability was created.
*)modifiedAt : Timestamp.t option;The Unix epoch timestamp in seconds for when the capability was last modified.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of String_.t
| `Timestamp of Timestamp.t ])
list ]