【发布时间】:2018-08-21 18:30:50
【问题描述】:
This blog post (here specifically) 详细介绍了如何使用 AWS::ElasticLoadBalancing::LoadBalancer 类型为“经典”版本 1 负载均衡器配置连接耗尽,如下所示:
"ElasticLoadBalancer": {
"Type": "AWS::ElasticLoadBalancing::LoadBalancer",
"Properties": {
"ConnectionDrainingPolicy": {
"Enabled": "true",
"Timeout": "300"
},
...
}
}
如何使用类型为 AWS::ElasticLoadBalancingV2::LoadBalancer 的版本 2 负载平衡器来执行此操作?
the documentation 我的最佳猜测是我应该使用LoadBalancerAttributes,但我在list of attributes here 中找不到与连接耗尽相关的任何内容。
【问题讨论】:
标签: amazon-cloudformation amazon-elb