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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnPortfolioPropsstatic final classAn implementation forCfnPortfolioProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnPortfolioProps.Builderbuilder()default StringThe language code.default StringThe description of the portfolio.The name to use for display purposes.The name of the portfolio provider.getTags()One or more tags.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDisplayName
The name to use for display purposes. -
getProviderName
The name of the portfolio provider. -
getAcceptLanguage
The language code.jp- Japanesezh- Chinese
-
getDescription
The description of the portfolio. -
getTags
One or more tags. -
builder
- Returns:
- a
CfnPortfolioProps.BuilderofCfnPortfolioProps
-