cdklabs / cdk-monitoring-constructs

Easy-to-use CDK constructs for monitoring your AWS infrastructure
https://constructs.dev/packages/cdk-monitoring-constructs
Apache License 2.0
443 stars 55 forks source link

feat: allow specifying regions/accounts at a more granular level #533

Open echeung-amzn opened 5 days ago

echeung-amzn commented 5 days ago

This is a WIP, it's still missing:

This in theory allows you 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