import { ResourceBase, ResourceTag } from '../resource'; import { Value, List } from '../dataTypes'; export declare class ApiGatewayProxyInput { StageName?: Value; EndpointType?: Value; constructor(properties: ApiGatewayProxyInput); } export interface ApplicationProperties { EnvironmentIdentifier: Value; VpcId: Value; ApiGatewayProxy?: ApiGatewayProxyInput; ProxyType: Value; Tags?: List; Name: Value; } export default class Application extends ResourceBase { static ApiGatewayProxyInput: typeof ApiGatewayProxyInput; constructor(properties: ApplicationProperties); }