async def cloudformation_server(): async with MotoService('cloudformation') as svc: yield svc.endpoint_url
async def s3_server(): async with MotoService('s3') as svc: yield svc.endpoint_url
async def kinesis_server(): async with MotoService('kinesis') as svc: yield svc.endpoint_url
async def dynamodb2_server(): async with MotoService('dynamodb2') as svc: yield svc.endpoint_url
async def ec2_server(): async with MotoService('ec2') as svc: yield svc.endpoint_url
async def rds_server(): async with MotoService('rds') as svc: yield svc.endpoint_url
async def iam_server(): async with MotoService('iam') as svc: yield svc.endpoint_url
async def lambda_server(): async with MotoService('lambda') as svc: yield svc.endpoint_url
async def batch_server(): async with MotoService('batch') as svc: yield svc.endpoint_url