UNPKG

cdk-iot-greengrass-fleet-provisioning

Version:

CDK Construct for AWS IoT Greengrass Fleet Provisioning (with AWS IoT Certificates)

15 lines (12 loc) 280 B
const TagPath = require("./TagPath"); class TagPathMatcher{ constructor(stack,node){ this.stack = stack; this.node= node; } match(path){ const tagPath = new TagPath(path); return tagPath.match(this.stack, this.node); } } module.exports = TagPathMatcher;