Create Portfolio
servicecatalog_create_portfolio | R Documentation |
Creates a portfolio¶
Description¶
Creates a portfolio.
A delegated admin is authorized to invoke this command.
Usage¶
servicecatalog_create_portfolio(AcceptLanguage, DisplayName,
Description, ProviderName, Tags, IdempotencyToken)
Arguments¶
AcceptLanguage
The language code.
jp
- Japanesezh
- Chinese
DisplayName
[required] The name to use for display purposes.
Description
The description of the portfolio.
ProviderName
[required] The name of the portfolio provider.
Tags
One or more tags.
IdempotencyToken
[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.
Value¶
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"
)
)
)