raindancers-network
Version:
Extensions to the ec2.Vpc Constructs
23 lines (22 loc) • 644 B
TypeScript
import { custom_resources as cr } from 'aws-cdk-lib';
import * as constructs from 'constructs';
export declare class EnterpriseVpcLambda extends constructs.Construct {
/**
* A custom resource to use for adding routes
*/
readonly addRoutesProvider: cr.Provider;
/**
* A check to see if transitgateway is ready to route to.
*/
readonly tgWaiterProvider: cr.Provider;
/**
* attach to cloudwan with a water
*/
readonly attachToCloudwanProvider: cr.Provider;
/**
*
* @param scope
* @param id
*/
constructor(scope: constructs.Construct, id: string);
}