How to remove Global Accelerator Endpoint from Group programmatically?

0

I can add an endpoint to a group using aws globalaccelerator update-endpoint-group, but how do I remove an endpoint from an endpoint group?? Closest thing I can find is remove-custom-routing-endpoints but I'm using a Standard GA, not an custom one.

已提問 2 年前檢視次數 325 次
1 個回答
1
已接受的答案

The update-endpoint-group or UpdateEndpointGroup API can be used to both add or remove Endpoints. The contents of the property --endpoint-configurations is a list which must contain the end state desired endpoints ie if you wanted to add one endpoint you need to include the current endpoints and the new endpoint, if you want to remove an endpoint you supply an --endpoint-configurations list without the endpoint you want to remove and this will then remove the endpoint from the group

You might want to consider using cloudformation or other IaC tool as you might find easier to manage adding/removing operations

AWS
專家
Peter_G
已回答 2 年前
  • Thank you for this most complete and excellent answer! To delete all endpoints in a group, calling update-endpoint-group with an empty --endpoint-configurations clears all entries -- exactly what I was looking for!

    It would be nice if this removal process was documented in the cli/api docs, even if just as an example.

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南