2017-01-23 2 views
0

아마존 웹 서비스 계정에서 특정 자동 확장 그룹의 일시 중지 된 프로세스를 나열하는 Python 스크립트를 작성하려고합니다.자동 확장 그룹을 설명하는 boto 명령?

내가 볼 수있는 것에서는 boto (Not boto3)을 사용하면 자동 크기 조정 그룹의 특정 속성을 나열하는 명령이 없습니다.

누구든지이 문제에 관해 밝힐 수 있습니까? 감사합니다. .

+1

[문서 (http://boto.cloudhackers.com/en/latest/ref/autoscale.html#boto.ec2.autoscale.AutoScaleConnection.get_all_groups) –

답변

1

거의 알려지지 않은 suspended_processes attribute을 자동 크기 조절 그룹에 사용할 수 있습니다.

import boto 
autoscale = boto.connect_autoscale() 
group = autoscale.get_all_groups(names=["mygroup"])[0] 
group.suspended_processes