Show / Hide Table of Contents

Namespace Pulumi.Aws.ServiceCatalog

Classes

Portfolio

Provides a resource to create a Service Catalog Portfolio.

Example Usage

using Pulumi;
using Aws = Pulumi.Aws;

class MyStack : Stack
{
public MyStack()
{
    var portfolio = new Aws.ServiceCatalog.Portfolio("portfolio", new Aws.ServiceCatalog.PortfolioArgs
    {
        Description = "List of my organizations apps",
        ProviderName = "Brett",
    });
}

}

PortfolioArgs

PortfolioState

Back to top Copyright 2016-2020, Pulumi Corporation.