aws-cdk
Version:
CDK Toolkit, the command line tool for CDK apps
13 lines (12 loc) • 475 B
TypeScript
import { SdkProvider } from '../api/aws-auth/sdk-provider';
import { ContextProviderPlugin } from '../api/plugin';
/**
* Plugin to retrieve the Availability Zones for an endpoint service
*/
export declare class EndpointServiceAZContextProviderPlugin implements ContextProviderPlugin {
private readonly aws;
constructor(aws: SdkProvider);
getValue(args: {
[key: string]: any;
}): Promise<import("aws-sdk/clients/ec2").ValueStringList | undefined>;
}