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)

49 lines (48 loc) 1.28 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Resource type definition for AWS::ServiceCatalog::Portfolio */ export declare function getPortfolio(args: GetPortfolioArgs, opts?: pulumi.InvokeOptions): Promise<GetPortfolioResult>; export interface GetPortfolioArgs { /** * The portfolio identifier. */ id: string; } export interface GetPortfolioResult { /** * The description of the portfolio. */ readonly description?: string; /** * The name to use for display purposes. */ readonly displayName?: string; /** * The portfolio identifier. */ readonly id?: string; /** * The name of the portfolio. */ readonly portfolioName?: string; /** * The name of the portfolio provider. */ readonly providerName?: string; /** * One or more tags. */ readonly tags?: outputs.Tag[]; } /** * Resource type definition for AWS::ServiceCatalog::Portfolio */ export declare function getPortfolioOutput(args: GetPortfolioOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetPortfolioResult>; export interface GetPortfolioOutputArgs { /** * The portfolio identifier. */ id: pulumi.Input<string>; }