Module Values_0.UpdateCommandResponseSource

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

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

    The unique identifier of the command.

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

    The updated user-friendly display name in the console for the command.

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

    The updated text description of the command.

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

    The boolean that indicates whether the command was deprecated.

    *)
  5. lastUpdatedAt : DateType.t option;
    (*

    The date and time (epoch timestamp in seconds) when the command was last updated.

    *)
}
Sourcetype nonrec error = [
  1. | `ConflictException of ConflictException.t
  2. | `InternalServerException of InternalServerException.t
  3. | `ResourceNotFoundException of ResourceNotFoundException.t
  4. | `ThrottlingException of ThrottlingException.t
  5. | `ValidationException of ValidationException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?commandId:??? -> ?displayName:??? -> ?description:??? -> ?deprecated:??? -> ?lastUpdatedAt:??? -> unit -> t
Sourceval 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 ]
Sourceval 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 ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of DeprecationFlag.t | `String of CommandId.t | `Timestamp of DateType.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