Module Values_1.UnlabelParameterVersionRequestSource

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. name : Values_0.PSParameterName.t;
    (*

    The name of the parameter from which you want to delete one or more labels. You can't enter the Amazon Resource Name (ARN) for a parameter, only the parameter name itself.

    *)
  2. parameterVersion : PSParameterVersion.t;
    (*

    The specific version of the parameter which you want to delete one or more labels from. If it isn't present, the call will fail.

    *)
  3. labels : ParameterLabelList.t;
    (*

    One or more labels to delete from the specified parameter version.

    *)
}
Sourceval context_ : string
Sourceval make : name:Values_0.PSParameterName.t -> parameterVersion:PSParameterVersion.t -> labels:ParameterLabelList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of ParameterLabel.t ] list | `Long of PSParameterVersion.t | `String of Values_0.PSParameterName.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