Values_0.UpdateCommandResponseSourceUpdate information about a command or mark a command for deprecation.
type nonrec t = {commandId : CommandId.t option;The unique identifier of the command.
*)displayName : DisplayName.t option;The updated user-friendly display name in the console for the command.
*)description : CommandDescription.t option;The updated text description of the command.
*)deprecated : DeprecationFlag.t option;The boolean that indicates whether the command was deprecated.
*)lastUpdatedAt : DateType.t option;The date and time (epoch timestamp in seconds) when the command was last updated.
*)}type nonrec error = [ | `ConflictException of ConflictException.t| `InternalServerException of InternalServerException.t| `ResourceNotFoundException of ResourceNotFoundException.t| `ThrottlingException of ThrottlingException.t| `ValidationException of ValidationException.t| `Unknown_operation_error of string * string option ]val error_of_json :
string ->
Yojson.Safe.t ->
[> `ConflictException of ConflictException.t
| `InternalServerException of InternalServerException.t
| `ResourceNotFoundException of ResourceNotFoundException.t
| `ThrottlingException of ThrottlingException.t
| `Unknown_operation_error of string * string option
| `ValidationException of ValidationException.t ]val error_of_xml :
string ->
Awso.Xml.t ->
[> `ConflictException of ConflictException.t
| `InternalServerException of InternalServerException.t
| `ResourceNotFoundException of ResourceNotFoundException.t
| `ThrottlingException of ThrottlingException.t
| `Unknown_operation_error of string * string option
| `ValidationException of ValidationException.t ]val to_value :
t ->
[> `Structure of
(string
* [> `Boolean of DeprecationFlag.t
| `String of CommandId.t
| `Timestamp of DateType.t ])
list ]