Creates a portfolio.
A delegated admin is authorized to invoke this command.
servicecatalog_create_portfolio(AcceptLanguage, DisplayName,
Description, ProviderName, Tags, IdempotencyToken)
A list with the following syntax:
list(
PortfolioDetail = list(
Id = "string",
ARN = "string",
DisplayName = "string",
Description = "string",
CreatedTime = as.POSIXct(
"2015-01-01"
),
ProviderName = "string"
),
Tags = list(
list(
Key = "string",
Value = "string"
)
)
)
The language code.
en
- English (default)
jp
- Japanese
zh
- Chinese
[required] The name to use for display purposes.
The description of the portfolio.
[required] The name of the portfolio provider.
One or more tags.
[required] A unique identifier that you provide to ensure idempotency. If multiple requests differ only by the idempotency token, the same response is returned for each repeated request.
svc$create_portfolio(
AcceptLanguage = "string",
DisplayName = "string",
Description = "string",
ProviderName = "string",
Tags = list(
list(
Key = "string",
Value = "string"
)
),
IdempotencyToken = "string"
)