untagResource

Removes the specified tags from the given resource.

Samples


fun main() { 
   //sampleStart 
   // Removing tags on a Launch Wizard deployment resource.
val resp = launchWizardClient.untagResource {
    resourceArn = "arn:aws:launchwizard:us-east-1:123456789012:deployment/11111111-1111-1111-1111-111111111111"
    tagKeys = listOf<String>(
        "key1",
        "key2"
    )
} 
   //sampleEnd
}