Skip to content

Swagger with strip_prefixes #6092

Closed Answered by leandrodamascena
paulorangeljr asked this question in Q&A
Discussion options

You must be logged in to vote

Thanks for adding more details @paulorangeljr.

I will break down your code and explain what Powertools is doing and the result.

app = APIGatewayHttpResolver(strip_prefixes=["/api/v1"],enable_validation=True)
app.enable_swagger(path="/swagger')
app.include_router(catalog_route.router, prefix="/catalog")
app.include_router(contract_route.router, prefix="/contract")
app.include_router(dataquality_route.router, prefix="/dataquality")
app.include_router(lineage_route.router, prefix="/lineage")
app.include_router(jobstats_route.router, prefix="/jobstats")

In this code block, Powertools is stripping the /api/v1 prefix from the path (a key from the event) that APIGW is sending to Lambda. This is …

Replies: 2 comments 3 replies

Comment options

You must be logged in to vote
2 replies
@paulorangeljr
Comment options

@leandrodamascena
Comment options

Answer selected by leandrodamascena
Comment options

You must be logged in to vote
1 reply
@leandrodamascena
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants