src/lambdas/modular_api_handler/processors/policies_processor.py [93:103]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            customer=event.customer_id,
            limit=event.limit,
            last_evaluated_key=NextToken.from_input(event.next_token).value
        )
        items = list(cursor)
        return ResponseFactory().items(
            it=map(self.rbac_service.get_dto, items),
            next_token=NextToken(cursor.last_evaluated_key)
        ).build()

    @validate_kwargs
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/lambdas/modular_api_handler/processors/role_processor.py [89:99]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            customer=event.customer_id,
            limit=event.limit,
            last_evaluated_key=NextToken.from_input(event.next_token).value
        )
        items = list(cursor)
        return ResponseFactory().items(
            it=map(self.rbac_service.get_dto, items),
            next_token=NextToken(cursor.last_evaluated_key)
        ).build()

    @validate_kwargs
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



