[AWS] AWS Python 연결 - Boto3 문서 보기

AWS Python 연결 - Boto3 문서 보기

AWS EFS의 리스트를 가져오기 위해서 Boto3를 사용하던 도중 문서를 보고 작성하는 방법을 알아야했다.

AWS Boto3 공식 문서

https://boto3.amazonaws.com/v1/documentation/api/1.9.42/reference/services/efs.html

import boto3

client = boto3.cleint('efs')
efss = client.describe_file_systems()['FileSystems']

for efs in efss:
    efs_name = efs.get('Name')
    efs_size = efs.get('SizeInBytes').get('Value')

print(efs_name, efs_size)
함수

image-20210305165639154

변수

image-20210305165924399

# 모든 EFS의 'FileSystems'에 담긴 변수 가져오기
efss = client.describe_file_systems()['FileSystems']

# efss안에 있는 여러 개의 변수 중 원하는 변수 선택 
for efs in efss:
    name = efs.get(['Name'])