{Aurora}カスタムエンドポイントの使用

カスタムエンドポイントの作成

aws rds create-db-cluster-endpoint \
--db-cluster-identifier mycluster01 \
--db-cluster-endpoint-identifier myep01 \
--endpoint-type ANY \
--static-members mydb01 mydb02 \
--tags Key=Name,Value=myep01

カスタムエンドポイントの表示

aws rds describe-db-cluster-endpoints

aws rds describe-db-cluster-endpoints | jq -c '.DBClusterEndpoints[] | [.Endpoint, .EndpointType]'

 

カスタムエンドポイントの削除

aws rds delete-db-cluster-endpoint \
--db-cluster-endpoint-identifier myep01