lex_exporter/create_lex_template.py [59:69]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    paginator = client.get_paginator('get_bots')
    marker = None
    pages = paginator.paginate(nameContains=name_contains, PaginationConfig={
        'MaxItems': 1000,
        'PageSize': 10,
        'StartingToken': marker
    })
    for page in pages:
        for bot in page["bots"]:
            bot_resource_name = re.sub(r'[\W_]+', '', bot["name"])
            template["Resources"].update(
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



lex_exporter/create_lex_template.py [86:96]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    paginator = client.get_paginator('get_bots')
    marker = None
    pages = paginator.paginate(nameContains=name_contains, PaginationConfig={
        'MaxItems': 1000,
        'PageSize': 10,
        'StartingToken': marker
    })
    for page in pages:
        for bot in page["bots"]:
            bot_resource_name = re.sub(r'[\W_]+', '', bot["name"])
            template["Resources"].update(
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



