Class 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",
});
}
}
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Aws.ServiceCatalog
Assembly: Pulumi.Aws.dll
Syntax
public class Portfolio : CustomResource
Constructors
View SourcePortfolio(String, PortfolioArgs, CustomResourceOptions)
Create a Portfolio resource with the given unique name, arguments, and options.
Declaration
public Portfolio(string name, PortfolioArgs args = null, CustomResourceOptions options = null)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | name | The unique name of the resource |
| PortfolioArgs | args | The arguments used to populate this resource's properties |
| CustomResourceOptions | options | A bag of options that control this resource's behavior |
Properties
View SourceArn
Declaration
public Output<string> Arn { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.String> |
CreatedTime
Declaration
public Output<string> CreatedTime { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.String> |
Description
Description of the portfolio
Declaration
public Output<string> Description { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.String> |
Name
The name of the portfolio.
Declaration
public Output<string> Name { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.String> |
ProviderName
Name of the person or organization who owns the portfolio.
Declaration
public Output<string> ProviderName { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.String> |
Tags
Tags to apply to the connection.
Declaration
public Output<ImmutableDictionary<string, object>> Tags { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.Collections.Immutable.ImmutableDictionary<System.String, System.Object>> |
Methods
View SourceGet(String, Input<String>, PortfolioState, CustomResourceOptions)
Get an existing Portfolio resource's state with the given name, ID, and optional extra properties used to qualify the lookup.
Declaration
public static Portfolio Get(string name, Input<string> id, PortfolioState state = null, CustomResourceOptions options = null)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | name | The unique name of the resulting resource. |
| Input<System.String> | id | The unique provider ID of the resource to lookup. |
| PortfolioState | state | Any extra arguments used during the lookup. |
| CustomResourceOptions | options | A bag of options that control this resource's behavior |
Returns
| Type | Description |
|---|---|
| Portfolio |