untagResource

Removes a tag from a resource.

Samples

// The following example removes the CostCenter tag key from the specified component build version.
val resp = imagebuilderClient.untagResource {
    resourceArn = "arn:aws:imagebuilder:us-west-2:111122223333:component/my-example-tagged-component/1.0.0/1"
    tagKeys = listOf<String>(
        "CostCenter"
    )
}