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
示例#3
0
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
示例#5
0
async def ec2_server():
    async with MotoService('ec2') as svc:
        yield svc.endpoint_url
示例#6
0
async def rds_server():
    async with MotoService('rds') as svc:
        yield svc.endpoint_url
示例#7
0
async def iam_server():
    async with MotoService('iam') as svc:
        yield svc.endpoint_url
示例#8
0
async def lambda_server():
    async with MotoService('lambda') as svc:
        yield svc.endpoint_url
示例#9
0
async def batch_server():
    async with MotoService('batch') as svc:
        yield svc.endpoint_url