import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
 * Resource Type definition for AWS::ECS::ExpressGatewayService
 */
export declare function getExpressGatewayService(args: GetExpressGatewayServiceArgs, opts?: pulumi.InvokeOptions): Promise<GetExpressGatewayServiceResult>;
export interface GetExpressGatewayServiceArgs {
    /**
     * The ARN that identifies the Express service.
     */
    serviceArn: string;
}
export interface GetExpressGatewayServiceResult {
    /**
     * The list of active service configurations for the Express service.
     */
    readonly activeConfigurations?: outputs.ecs.ExpressGatewayServiceConfiguration[];
    /**
     * The Unix timestamp for when the Express service was created.
     */
    readonly createdAt?: string;
    readonly ecsManagedResourceArns?: outputs.ecs.ExpressGatewayServiceEcsManagedResourceArns;
    /**
     * The Endpoint of the express service.
     */
    readonly endpoint?: string;
    /**
     * The ARN that identifies the Express service.
     */
    readonly serviceArn?: string;
    readonly status?: outputs.ecs.ExpressGatewayServiceStatus;
    /**
     * The Unix timestamp for when the Express service was last updated.
     */
    readonly updatedAt?: string;
}
/**
 * Resource Type definition for AWS::ECS::ExpressGatewayService
 */
export declare function getExpressGatewayServiceOutput(args: GetExpressGatewayServiceOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetExpressGatewayServiceResult>;
export interface GetExpressGatewayServiceOutputArgs {
    /**
     * The ARN that identifies the Express service.
     */
    serviceArn: pulumi.Input<string>;
}
