Unlabel Parameter Version
ssm_unlabel_parameter_version | R Documentation |
Remove a label or labels from a parameter¶
Description¶
Remove a label or labels from a parameter.
Usage¶
ssm_unlabel_parameter_version(Name, ParameterVersion, Labels)
Arguments¶
Name |
[required] 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. |
ParameterVersion |
[required] 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. |
Labels |
[required] One or more labels to delete from the specified parameter version. |
Value¶
A list with the following syntax:
list(
RemovedLabels = list(
"string"
),
InvalidLabels = list(
"string"
)
)
Request syntax¶
svc$unlabel_parameter_version(
Name = "string",
ParameterVersion = 123,
Labels = list(
"string"
)
)