2 回答
TA贡献1804条经验 获得超7个赞
从我用来更新 route53 记录集的一个记录文件中。希望能帮助到你
try:
route53 = boto3.client('route53')
route53.change_resource_record_sets(
HostedZoneId = hosted_zone_id,
ChangeBatch={
'Changes': [
{
'Action': 'UPSERT',
'ResourceRecordSet': {
'Name': record_name,
'Type': 'A',
'ResourceRecords': [
{
'Value': ipForRecord
}
],
'TTL': 300
}
}
]
}
)
except Exception as e:
print 'Exception while updating cloud 53 record'
print e
添加回答
举报