Remove Tags From Resource
ssm_remove_tags_from_resource | R Documentation |
Removes tag keys from the specified resource¶
Description¶
Removes tag keys from the specified resource.
Usage¶
ssm_remove_tags_from_resource(ResourceType, ResourceId, TagKeys)
Arguments¶
ResourceType |
[required] The type of resource from which you want to remove a tag. The |
ResourceId |
[required] The ID of the resource from which you want to remove tags. For example: ManagedInstance: mi-012345abcde MaintenanceWindow: mw-012345abcde
PatchBaseline: pb-012345abcde OpsMetadata object: For the Document and Parameter values, use the name of the resource. The |
TagKeys |
[required] Tag keys that you want to remove from the specified resource. |
Value¶
An empty list.
Request syntax¶
svc$remove_tags_from_resource(
ResourceType = "Document"|"ManagedInstance"|"MaintenanceWindow"|"Parameter"|"PatchBaseline"|"OpsItem"|"OpsMetadata"|"Automation"|"Association",
ResourceId = "string",
TagKeys = list(
"string"
)
)