removeTagsFromResource
abstract suspend fun removeTagsFromResource(input: RemoveTagsFromResourceRequest): RemoveTagsFromResourceResponse
Removes tags from a directory.
Samples
fun main() {
//sampleStart
// The following example removes a tag from a specified directory.
val resp = directoryClient.removeTagsFromResource {
resourceId = "d-92654abfed"
tagKeys = listOf<String>(
"environment"
)
}
//sampleEnd
}