Interface CfnPortfolioProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnPortfolioProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:39.763Z") @Stability(Stable) public interface CfnPortfolioProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnPortfolio.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.servicecatalog.*;
 CfnPortfolioProps cfnPortfolioProps = CfnPortfolioProps.builder()
         .displayName("displayName")
         .providerName("providerName")
         // the properties below are optional
         .acceptLanguage("acceptLanguage")
         .description("description")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 
  • Method Details

    • getDisplayName

      @Stability(Stable) @NotNull String getDisplayName()
      The name to use for display purposes.
    • getProviderName

      @Stability(Stable) @NotNull String getProviderName()
      The name of the portfolio provider.
    • getAcceptLanguage

      @Stability(Stable) @Nullable default String getAcceptLanguage()
      The language code.

      • jp - Japanese
      • zh - Chinese
    • getDescription

      @Stability(Stable) @Nullable default String getDescription()
      The description of the portfolio.
    • getTags

      @Stability(Stable) @Nullable default List<CfnTag> getTags()
      One or more tags.
    • builder

      @Stability(Stable) static CfnPortfolioProps.Builder builder()
      Returns:
      a CfnPortfolioProps.Builder of CfnPortfolioProps