aws-cdk
Version:
CDK Toolkit, the command line tool for CDK apps
12 lines (11 loc) • 514 B
TypeScript
import type { VpcContextQuery } from '@aws-cdk/cloud-assembly-schema';
import { type VpcContextResponse } from '@aws-cdk/cx-api';
import { type SdkProvider } from '../api/aws-auth/sdk-provider';
import { ContextProviderPlugin } from '../api/plugin';
export declare class VpcNetworkContextProviderPlugin implements ContextProviderPlugin {
private readonly aws;
constructor(aws: SdkProvider);
getValue(args: VpcContextQuery): Promise<VpcContextResponse>;
private findVpc;
private readVpcProps;
}