Module Values.CapabilitySummarySource

A summary of a capability, containing basic information without the full configuration details. This is returned by the ListCapabilities operation.

Sourcetype nonrec t = {
  1. capabilityName : String_.t option;
    (*

    The unique name of the capability within the cluster.

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

    The Amazon Resource Name (ARN) of the capability.

    *)
  3. type_ : CapabilityType.t option;
    (*

    The type of capability. Valid values are ACK, ARGOCD, or KRO.

    *)
  4. status : CapabilityStatus.t option;
    (*

    The current status of the capability.

    *)
  5. version : String_.t option;
    (*

    The version of the capability software that is currently running.

    *)
  6. createdAt : Timestamp.t option;
    (*

    The Unix epoch timestamp in seconds for when the capability was created.

    *)
  7. modifiedAt : Timestamp.t option;
    (*

    The Unix epoch timestamp in seconds for when the capability was last modified.

    *)
}
Sourceval make : ?capabilityName:??? -> ?arn:??? -> ?type_:??? -> ?status:??? -> ?version:??? -> ?createdAt:??? -> ?modifiedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `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