Show / Hide Table of Contents

Class CfnPortfolioProps

Properties for defining a CfnPortfolio.

Inheritance
object
CfnPortfolioProps
Implements
ICfnPortfolioProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Servicecatalog
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnPortfolioProps : ICfnPortfolioProps
Syntax (vb)
Public Class CfnPortfolioProps Implements ICfnPortfolioProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.Servicecatalog;

             var cfnPortfolioProps = new CfnPortfolioProps {
                 DisplayName = "displayName",
                 ProviderName = "providerName",

                 // the properties below are optional
                 AcceptLanguage = "acceptLanguage",
                 Description = "description",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Constructors

CfnPortfolioProps()

Properties for defining a CfnPortfolio.

Properties

AcceptLanguage

The language code.

Description

The description of the portfolio.

DisplayName

The name to use for display purposes.

ProviderName

The name of the portfolio provider.

Tags

One or more tags.

Constructors

CfnPortfolioProps()

Properties for defining a CfnPortfolio.

public CfnPortfolioProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.Servicecatalog;

             var cfnPortfolioProps = new CfnPortfolioProps {
                 DisplayName = "displayName",
                 ProviderName = "providerName",

                 // the properties below are optional
                 AcceptLanguage = "acceptLanguage",
                 Description = "description",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Properties

AcceptLanguage

The language code.

public string? AcceptLanguage { get; set; }
Property Value

string

Remarks

    See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-acceptlanguage

    Description

    The description of the portfolio.

    public string? Description { get; set; }
    Property Value

    string

    Remarks

    See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-description

    DisplayName

    The name to use for display purposes.

    public string DisplayName { get; set; }
    Property Value

    string

    Remarks

    See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-displayname

    ProviderName

    The name of the portfolio provider.

    public string ProviderName { get; set; }
    Property Value

    string

    Remarks

    See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-providername

    Tags

    One or more tags.

    public ICfnTag[]? Tags { get; set; }
    Property Value

    ICfnTag[]

    Remarks

    See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolio.html#cfn-servicecatalog-portfolio-tags

    Implements

    ICfnPortfolioProps
    Back to top Generated by DocFX