Boto3를 사용한 무효화 AWS CDN
2684 단어 cloudfrontdevopsawsboto3
파일을 무효화하려면 개별 파일의 경로 또는 * 와일드카드로 끝나는 경로를 지정합니다. 이 경로는 다음 예와 같이 하나의 파일 또는 여러 파일에 적용될 수 있습니다.
/images/image1.jpg
/images/image*
/images/*
import boto3
import time
import sys
""" Invalidate CDN at s3://static/demo/src """
DISTRIBUTION_ID = 'A1AA1AA11A11AA'
client = boto3.client('cloudfront')
def create_invalidation():
res = client.create_invalidation(
DistributionId=DISTRIBUTION_ID,
InvalidationBatch={
'Paths': {
'Quantity': 1,
'Items': [
'/demo/src/*'
]
},
'CallerReference': str(time.time()).replace(".", "")
}
)
invalidation_id = res['Invalidation']['Id']
return invalidation_id
def get_invalidation_status(inval_id):
res = client.get_invalidation(
DistributionId=DISTRIBUTION_ID,
Id=inval_id
)
return res['Invalidation']['Status']
def run():
the_id = create_invalidation()
count = 0
while True:
status = get_invalidation_status(the_id)
if status == 'Completed':
print("Completed, id: {}".format(the_id))
break
elif count < 10:
count += 1
time.sleep(30)
else:
print("Timeout, please check CDN")
sys.exit(1)
if __name__ == '__main__':
run()
~()⚡ $ python invalidatecdn_demo.py
Completed, id: I1CLODB5ZXEQUK
결과
Reference
이 문제에 관하여(Boto3를 사용한 무효화 AWS CDN), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/vumdao/invalidation-aws-cdn-using-boto3-2k9g텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)