Module Values_0.UpdateCommandRequestSource

Update information about a command or mark a command for deprecation.

Sourcetype nonrec t = {
  1. commandId : CommandId.t;
    (*

    The unique identifier of the command to be updated.

    *)
  2. displayName : DisplayName.t option;
    (*

    The new user-friendly name to use in the console for the command.

    *)
  3. description : CommandDescription.t option;
    (*

    A short text description of the command.

    *)
  4. deprecated : DeprecationFlag.t option;
    (*

    A boolean that you can use to specify whether to deprecate a command.

    *)
}
Sourceval context_ : string
Sourceval make : ?displayName:??? -> ?description:??? -> ?deprecated:??? -> commandId:CommandId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of DeprecationFlag.t | `String of CommandId.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