Files
2026-05-06 18:55:16 -05:00

12 lines
439 B
TypeScript

import type { AppMeshProxyConfigurationConfigProps } from './app-mesh-proxy-configuration';
import type { ProxyConfiguration } from './proxy-configuration';
/**
* The base class for proxy configurations.
*/
export declare class ProxyConfigurations {
/**
* Constructs a new instance of the ProxyConfiguration class.
*/
static appMeshProxyConfiguration(props: AppMeshProxyConfigurationConfigProps): ProxyConfiguration;
}