import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; import * as enums from "../types/enums"; /** * Definition of AWS::RefactorSpaces::Application Resource Type */ export declare class Application extends pulumi.CustomResource { /** * Get an existing Application 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): Application; /** * Returns true if the given object is an instance of Application. 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 Application; /** * The resource ID of the ABP for the proxy. */ readonly apiGatewayId: pulumi.Output; /** * The endpoint URL of the Amazon API Gateway proxy. */ readonly apiGatewayProxy: pulumi.Output; /** * The unique identifier of the application. */ readonly applicationIdentifier: pulumi.Output; /** * The Amazon Resource Name (ARN) of the application. */ readonly arn: pulumi.Output; /** * The unique identifier of the environment. */ readonly environmentIdentifier: pulumi.Output; /** * The name of the application. */ readonly name: pulumi.Output; /** * The Amazon Resource Name (ARN) of the Network Load Balancer . */ readonly nlbArn: pulumi.Output; /** * The name of the Network Load Balancer configured by the API Gateway proxy. */ readonly nlbName: pulumi.Output; /** * The proxy type of the proxy created within the application. */ readonly proxyType: pulumi.Output; /** * The endpoint URL of the ABPlong proxy. */ readonly proxyUrl: pulumi.Output; /** * The name of the ABP stage. The name defaults to `prod` . */ readonly stageName: pulumi.Output; /** * Metadata that you can assign to help organize the frameworks that you create. Each tag is a key-value pair. */ readonly tags: pulumi.Output; /** * The ID of the virtual private cloud (VPC). */ readonly vpcId: pulumi.Output; /** * The `VpcLink` ID of the ABP proxy. */ readonly vpcLinkId: pulumi.Output; /** * Create a Application 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: ApplicationArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a Application resource. */ export interface ApplicationArgs { /** * The endpoint URL of the Amazon API Gateway proxy. */ apiGatewayProxy?: pulumi.Input; /** * The unique identifier of the environment. */ environmentIdentifier: pulumi.Input; /** * The name of the application. */ name?: pulumi.Input; /** * The proxy type of the proxy created within the application. */ proxyType: pulumi.Input; /** * Metadata that you can assign to help organize the frameworks that you create. Each tag is a key-value pair. */ tags?: pulumi.Input[]>; /** * The ID of the virtual private cloud (VPC). */ vpcId: pulumi.Input; }