import { ResourceBase, ResourceTag } from '../resource'; import { Value, List } from '../dataTypes'; export declare class LambdaEndpointInput { Arn: Value; constructor(properties: LambdaEndpointInput); } export declare class UrlEndpointInput { HealthUrl?: Value; Url: Value; constructor(properties: UrlEndpointInput); } export interface ServiceProperties { LambdaEndpoint?: LambdaEndpointInput; UrlEndpoint?: UrlEndpointInput; Description?: Value; EnvironmentIdentifier: Value; VpcId?: Value; EndpointType: Value; ApplicationIdentifier: Value; Tags?: List; Name: Value; } export default class Service extends ResourceBase { static LambdaEndpointInput: typeof LambdaEndpointInput; static UrlEndpointInput: typeof UrlEndpointInput; constructor(properties: ServiceProperties); }