UNPKG

@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)

69 lines (68 loc) 2.12 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Definition of AWS::RefactorSpaces::Application Resource Type */ export declare function getApplication(args: GetApplicationArgs, opts?: pulumi.InvokeOptions): Promise<GetApplicationResult>; export interface GetApplicationArgs { /** * The unique identifier of the application. */ applicationIdentifier: string; /** * The unique identifier of the environment. */ environmentIdentifier: string; } export interface GetApplicationResult { /** * The resource ID of the API Gateway for the proxy. */ readonly apiGatewayId?: string; /** * The unique identifier of the application. */ readonly applicationIdentifier?: string; /** * The Amazon Resource Name (ARN) of the application. */ readonly arn?: string; /** * The Amazon Resource Name (ARN) of the Network Load Balancer . */ readonly nlbArn?: string; /** * The name of the Network Load Balancer configured by the API Gateway proxy. */ readonly nlbName?: string; /** * The endpoint URL of the Amazon API Gateway proxy. */ readonly proxyUrl?: string; /** * The name of the API Gateway stage. The name defaults to `prod` . */ readonly stageName?: string; /** * Metadata that you can assign to help organize the frameworks that you create. Each tag is a key-value pair. */ readonly tags?: outputs.Tag[]; /** * The `VpcLink` ID of the API Gateway proxy. */ readonly vpcLinkId?: string; } /** * Definition of AWS::RefactorSpaces::Application Resource Type */ export declare function getApplicationOutput(args: GetApplicationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetApplicationResult>; export interface GetApplicationOutputArgs { /** * The unique identifier of the application. */ applicationIdentifier: pulumi.Input<string>; /** * The unique identifier of the environment. */ environmentIdentifier: pulumi.Input<string>; }