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)

58 lines (57 loc) 1.9 kB
import * as pulumi from "@pulumi/pulumi"; /** * Resource Schema for AWS::ServiceCatalogAppRegistry::Application */ export declare function getApplication(args: GetApplicationArgs, opts?: pulumi.InvokeOptions): Promise<GetApplicationResult>; export interface GetApplicationArgs { /** * The identifier of the application. */ id: string; } export interface GetApplicationResult { /** * The name of the application. */ readonly applicationName?: string; /** * The key of the AWS application tag, which is awsApplication. Applications created before 11/13/2023 or applications without the AWS application tag resource group return no value. */ readonly applicationTagKey?: string; /** * The value of the AWS application tag, which is the identifier of an associated resource. Applications created before 11/13/2023 or applications without the AWS application tag resource group return no value. */ readonly applicationTagValue?: string; /** * The Amazon resource name (ARN) that specifies the application across services. */ readonly arn?: string; /** * The description of the application. */ readonly description?: string; /** * The identifier of the application. */ readonly id?: string; /** * The name of the application. */ readonly name?: string; /** * Key-value pairs you can use to associate with the application. */ readonly tags?: { [key: string]: string; }; } /** * Resource Schema for AWS::ServiceCatalogAppRegistry::Application */ export declare function getApplicationOutput(args: GetApplicationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetApplicationResult>; export interface GetApplicationOutputArgs { /** * The identifier of the application. */ id: pulumi.Input<string>; }