Skip to content

Commit e43c2c6

Browse files
authored
feature: no api gw cloud watch role (#584)
1 parent a7e6f54 commit e43c2c6

File tree

3 files changed

+423
-404
lines changed

3 files changed

+423
-404
lines changed

cdk/my_service/api_construct.py

+1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ def _build_api_gw(self) -> aws_apigateway.RestApi:
2929
rest_api_name='Service Rest API',
3030
description='This service handles /api/orders requests',
3131
deploy_options=aws_apigateway.StageOptions(throttling_rate_limit=2, throttling_burst_limit=10),
32+
cloud_watch_role=False,
3233
)
3334

3435
CfnOutput(self, id=constants.APIGATEWAY, value=rest_api.url).override_logical_id(constants.APIGATEWAY)

0 commit comments

Comments
 (0)