import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Resource Type definition for AWS::ECS::ExpressGatewayService */ export declare class ExpressGatewayService extends pulumi.CustomResource { /** * Get an existing ExpressGatewayService resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): ExpressGatewayService; /** * Returns true if the given object is an instance of ExpressGatewayService. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is ExpressGatewayService; /** * The list of active service configurations for the Express service. */ readonly activeConfigurations: pulumi.Output; /** * The short name or full ARN of the cluster that hosts the Express service. */ readonly cluster: pulumi.Output; /** * The CPU allocation for tasks in this service revision. */ readonly cpu: pulumi.Output; /** * The Unix timestamp for when the Express service was created. */ readonly createdAt: pulumi.Output; readonly ecsManagedResourceArns: pulumi.Output; /** * The Endpoint of the express service. */ readonly endpoint: pulumi.Output; /** * The ARN of the task execution role for the service revision. */ readonly executionRoleArn: pulumi.Output; /** * The health check path for this service revision. */ readonly healthCheckPath: pulumi.Output; /** * The ARN of the infrastructure role that manages AWS resources for the Express service. */ readonly infrastructureRoleArn: pulumi.Output; /** * The memory allocation for tasks in this service revision. */ readonly memory: pulumi.Output; /** * The network configuration for tasks in this service revision. */ readonly networkConfiguration: pulumi.Output; /** * The primary container configuration for this service revision. */ readonly primaryContainer: pulumi.Output; /** * The auto-scaling configuration for this service revision. */ readonly scalingTarget: pulumi.Output; /** * The ARN that identifies the Express service. */ readonly serviceArn: pulumi.Output; /** * The name of the Express service. */ readonly serviceName: pulumi.Output; readonly status: pulumi.Output; /** * The metadata applied to the Express service. */ readonly tags: pulumi.Output; /** * The ARN of the task role for the service revision. */ readonly taskRoleArn: pulumi.Output; /** * The Unix timestamp for when the Express service was last updated. */ readonly updatedAt: pulumi.Output; /** * Create a ExpressGatewayService resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: ExpressGatewayServiceArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a ExpressGatewayService resource. */ export interface ExpressGatewayServiceArgs { /** * The short name or full ARN of the cluster that hosts the Express service. */ cluster?: pulumi.Input; /** * The CPU allocation for tasks in this service revision. */ cpu?: pulumi.Input; /** * The ARN of the task execution role for the service revision. */ executionRoleArn: pulumi.Input; /** * The health check path for this service revision. */ healthCheckPath?: pulumi.Input; /** * The ARN of the infrastructure role that manages AWS resources for the Express service. */ infrastructureRoleArn: pulumi.Input; /** * The memory allocation for tasks in this service revision. */ memory?: pulumi.Input; /** * The network configuration for tasks in this service revision. */ networkConfiguration?: pulumi.Input; /** * The primary container configuration for this service revision. */ primaryContainer: pulumi.Input; /** * The auto-scaling configuration for this service revision. */ scalingTarget?: pulumi.Input; /** * The name of the Express service. */ serviceName?: pulumi.Input; /** * The metadata applied to the Express service. */ tags?: pulumi.Input[]>; /** * The ARN of the task role for the service revision. */ taskRoleArn?: pulumi.Input; }