我们通过cloudformation设置了一项粘合工作(大约8个),我需要为那些正在运行CF的人发出警报。
https://docs.aws.amazon.com/glue/latest/dg/automating-awsglue-with-cloudwatch-events.html 我已经看到了此链接,因为这对我来说是新的,如何将其放入CF脚本
我为Redshift创建了以下内容,对胶水也进行了同样的操作
$('.searchTag-container').each(function(){
cat = parseInt($('.searchResult__tag',this).children().length);
if (cat < 6) {
$(this).closest(".row").children(".share").addClass("remove");
console.log(cat);
}
});