Update Portfolio
servicecatalog_update_portfolio | R Documentation |
Updates the specified portfolio¶
Description¶
Updates the specified portfolio.
You cannot update a product that was shared with you.
Usage¶
servicecatalog_update_portfolio(AcceptLanguage, Id, DisplayName,
Description, ProviderName, AddTags, RemoveTags)
Arguments¶
AcceptLanguage
The language code.
jp
- Japanesezh
- Chinese
Id
[required] The portfolio identifier.
DisplayName
The name to use for display purposes.
Description
The updated description of the portfolio.
ProviderName
The updated name of the portfolio provider.
AddTags
The tags to add.
RemoveTags
The tags to remove.
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"
)
)
)