UNPKG

aws-cdk-lib

Version:

Version 2 of the AWS Cloud Development Kit library

17 lines (16 loc) 927 B
import { Template } from './template'; export declare function findResources(template: Template, type: string, props?: any): { [key: string]: { [key: string]: any; }; }; export declare function getResourceId(template: Template, type: string, props?: any): { resourceId?: string; matchError?: string; }; export declare function allResources(template: Template, type: string, props: any): string | void; export declare function allResourcesProperties(template: Template, type: string, props: any): string | void; export declare function hasResource(template: Template, type: string, props: any): string | void; export declare function hasResourceProperties(template: Template, type: string, props: any): string | void; export declare function countResources(template: Template, type: string): number; export declare function countResourcesProperties(template: Template, type: string, props: any): number;