@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)
154 lines (153 loc) • 5.99 kB
TypeScript
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<pulumi.ID>, 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<outputs.ecs.ExpressGatewayServiceConfiguration[]>;
/**
* The short name or full ARN of the cluster that hosts the Express service.
*/
readonly cluster: pulumi.Output<string | undefined>;
/**
* The CPU allocation for tasks in this service revision.
*/
readonly cpu: pulumi.Output<string | undefined>;
/**
* The Unix timestamp for when the Express service was created.
*/
readonly createdAt: pulumi.Output<string>;
readonly ecsManagedResourceArns: pulumi.Output<outputs.ecs.ExpressGatewayServiceEcsManagedResourceArns>;
/**
* The Endpoint of the express service.
*/
readonly endpoint: pulumi.Output<string>;
/**
* The ARN of the task execution role for the service revision.
*/
readonly executionRoleArn: pulumi.Output<string>;
/**
* The health check path for this service revision.
*/
readonly healthCheckPath: pulumi.Output<string | undefined>;
/**
* The ARN of the infrastructure role that manages AWS resources for the Express service.
*/
readonly infrastructureRoleArn: pulumi.Output<string>;
/**
* The memory allocation for tasks in this service revision.
*/
readonly memory: pulumi.Output<string | undefined>;
/**
* The network configuration for tasks in this service revision.
*/
readonly networkConfiguration: pulumi.Output<outputs.ecs.ExpressGatewayServiceNetworkConfiguration | undefined>;
/**
* The primary container configuration for this service revision.
*/
readonly primaryContainer: pulumi.Output<outputs.ecs.ExpressGatewayServiceExpressGatewayContainer>;
/**
* The auto-scaling configuration for this service revision.
*/
readonly scalingTarget: pulumi.Output<outputs.ecs.ExpressGatewayServiceExpressGatewayScalingTarget | undefined>;
/**
* The ARN that identifies the Express service.
*/
readonly serviceArn: pulumi.Output<string>;
/**
* The name of the Express service.
*/
readonly serviceName: pulumi.Output<string | undefined>;
readonly status: pulumi.Output<outputs.ecs.ExpressGatewayServiceStatus>;
/**
* The metadata applied to the Express service.
*/
readonly tags: pulumi.Output<outputs.CreateOnlyTag[] | undefined>;
/**
* The ARN of the task role for the service revision.
*/
readonly taskRoleArn: pulumi.Output<string | undefined>;
/**
* The Unix timestamp for when the Express service was last updated.
*/
readonly updatedAt: pulumi.Output<string>;
/**
* 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<string>;
/**
* The CPU allocation for tasks in this service revision.
*/
cpu?: pulumi.Input<string>;
/**
* The ARN of the task execution role for the service revision.
*/
executionRoleArn: pulumi.Input<string>;
/**
* The health check path for this service revision.
*/
healthCheckPath?: pulumi.Input<string>;
/**
* The ARN of the infrastructure role that manages AWS resources for the Express service.
*/
infrastructureRoleArn: pulumi.Input<string>;
/**
* The memory allocation for tasks in this service revision.
*/
memory?: pulumi.Input<string>;
/**
* The network configuration for tasks in this service revision.
*/
networkConfiguration?: pulumi.Input<inputs.ecs.ExpressGatewayServiceNetworkConfigurationArgs>;
/**
* The primary container configuration for this service revision.
*/
primaryContainer: pulumi.Input<inputs.ecs.ExpressGatewayServiceExpressGatewayContainerArgs>;
/**
* The auto-scaling configuration for this service revision.
*/
scalingTarget?: pulumi.Input<inputs.ecs.ExpressGatewayServiceExpressGatewayScalingTargetArgs>;
/**
* The name of the Express service.
*/
serviceName?: pulumi.Input<string>;
/**
* The metadata applied to the Express service.
*/
tags?: pulumi.Input<pulumi.Input<inputs.CreateOnlyTagArgs>[]>;
/**
* The ARN of the task role for the service revision.
*/
taskRoleArn?: pulumi.Input<string>;
}