cdk-monitoring-constructs
cdk-monitoring-constructs copied to clipboard
feat: allow specifying regions/accounts at a more granular level
This allows users to target different regions/account for specific things within a facade rather than relying on 1 facade per region/account with the facade's global settings, so something like:
this.facade
.monitorDynamoTable({
...,
})
.monitorDynamoTable({
...,
region: <some_other_region>,
account: <some_other_account>,
})
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license