@pulumi/aws-native
Version:
The Pulumi AWS Cloud Control Provider enables you to build, deploy, and manage [any AWS resource that's supported by the AWS Cloud Control API](https://github.com/pulumi/pulumi-aws-native/blob/master/provider/cmd/pulumi-gen-aws-native/supported-types.txt)
47 lines (46 loc) • 1.69 kB
TypeScript
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>;
}