Module Values_1.UnlabelParameterVersionResultSource

Remove a label or labels from a parameter. Parameter names can't contain spaces. The service removes any spaces specified for the beginning or end of a parameter name. If the specified name for a parameter contains spaces between characters, the request fails with a ValidationException error.

Sourcetype nonrec t = {
  1. removedLabels : ParameterLabelList.t option;
    (*

    A list of all labels deleted from the parameter.

    *)
  2. invalidLabels : ParameterLabelList.t option;
    (*

    The labels that aren't attached to the given parameter version.

    *)
}
Sourcetype nonrec error = [
  1. | `InternalServerError of Values_0.InternalServerError.t
  2. | `ParameterNotFound of Values_0.ParameterNotFound.t
  3. | `ParameterVersionNotFound of ParameterVersionNotFound.t
  4. | `TooManyUpdates of Values_0.TooManyUpdates.t
  5. | `Unknown_operation_error of string * string option
]
Sourceval make : ?removedLabels:??? -> ?invalidLabels:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `InternalServerError of Values_0.InternalServerError.t | `ParameterNotFound of Values_0.ParameterNotFound.t | `ParameterVersionNotFound of ParameterVersionNotFound.t | `TooManyUpdates of Values_0.TooManyUpdates.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `InternalServerError of Values_0.InternalServerError.t | `ParameterNotFound of Values_0.ParameterNotFound.t | `ParameterVersionNotFound of ParameterVersionNotFound.t | `TooManyUpdates of Values_0.TooManyUpdates.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of ParameterLabel.t ] list ]) 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