Values.RegisterCapabilityResponseSourceThe result of a RegisterCapability request. Contains details about the registered capability.
type nonrec t = {capabilityName : CapabilityName.t option;The name of the registered capability.
*)applicationId : ApplicationId.t option;The unique identifier of the OpenSearch UI application.
*)status : CapabilityStatus.t option;The current status of the capability. Possible values: creating, create_failed, active, updating, update_failed, deleting, delete_failed.
*)capabilityConfig : CapabilityBaseResponseConfig.t option;The configuration settings for the registered capability.
*)}type nonrec error = [ | `AccessDeniedException of AccessDeniedException.t| `ConflictException of ConflictException.t| `DisabledOperationException of DisabledOperationException.t| `InternalException of InternalException.t| `ResourceNotFoundException of ResourceNotFoundException.t| `ServiceQuotaExceededException of ServiceQuotaExceededException.t| `ValidationException of ValidationException.t| `Unknown_operation_error of string * string option ]val error_of_json :
string ->
Yojson.Safe.t ->
[> `AccessDeniedException of unit
| `ConflictException of unit
| `DisabledOperationException of unit
| `InternalException of unit
| `ResourceNotFoundException of unit
| `ServiceQuotaExceededException of unit
| `Unknown_operation_error of string * string option
| `ValidationException of unit ]val error_of_xml :
string ->
Awso.Xml.t ->
[> `AccessDeniedException of unit
| `ConflictException of unit
| `DisabledOperationException of unit
| `InternalException of unit
| `ResourceNotFoundException of unit
| `ServiceQuotaExceededException of unit
| `Unknown_operation_error of string * string option
| `ValidationException of unit ]val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of CapabilityName.t
| `Structure of (string * [> `Structure of 'a list ]) list ])
list ]