in aws-batch-schedulingpolicy/src/main/java/software/amazon/batch/schedulingpolicy/Translator.java [122:128]
static UntagResourceRequest toUntagResourceRequest(final ResourceModel model, final List<String> tagsToRemove) {
return UntagResourceRequest
.builder()
.resourceArn(model.getArn())
.tagKeys(tagsToRemove)
.build();
}