untagResource

Grants permission to remove a tag(s) from a designate resource.

Samples


fun main() { 
   //sampleStart 
   // Invoke UntagResource
securityIrClient.untagResource {
    resourceArn = "arn:aws:security-ir:us-west-1:123456789012:membership/m-abcd1234efgh"
    tagKeys = listOf<String>(
        "example-tag-key"
    )
} 
   //sampleEnd
}