여러분, 저는 실행중인 컴퓨터의 인스턴스 ID뿐만 아니라 aws 콘솔에서 추가 한 별칭 이름도 검색하려고합니다.인스턴스 목록 풀다운
이렇게하는 것이 적절한 방법입니까? , 태그를 ec2tag : [태그 : 나는 흥미로운 아무것도 ....
import boto
botoEC2 = boto.connect_ec2('asdf','asdfasdfasdfasdf')
rsv = botoEC2.get_all_instances()
tags = botoEC2.get_all_tags()
print tags
dir (tags)
print tags
print tags.status
print tags.pop
print tags.count
print tags.tagSet
print tags.requestId
print tags.index
print tags.
print tags.requestId
print tags.index
print tags.key_marker
print tags
출력을 다시 받고 있지 않다 이름, 태그 : 이름, 태그 : 이름, 태그 : 이름, 태그 : 이름, 태그 : 이름, 태그 : 이름, 태그 : 이름, 태그 : 이름, 태그 : 이름, 태그 : 이름, 태그 : 이름, 태그 : 이름, 태그 : 이름, 태그 : 이름, 태그 : 이름]
감사!
api를 알아 내려고 시도한 적이 있다면, IPython을 사용해보십시오. 객체의 메소드와 속성에 대한 탭을 완성 할 수 있습니다. 이런 종류의 발견은 간단합니다. – aychedee
위의 내용은 ipython copy/pastees ....입니다. 그래서 나는 tags.tab를 잘못 인쇄하고 있습니다. – Cmag
글쎄, get_all_tags는 태그 객체의리스트를 반환하기 때문에 정상적인리스트 메소드 만 볼 수 있습니다. 'tag = tags [0]'목록에서 태그 객체를 꺼내고 그 태그 객체에 자동 완성을 시도해야합니다. – aychedee