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¶
AcceptLanguageThe language code.
jp- Japanesezh- Chinese
Id[required] The portfolio identifier.
DisplayNameThe name to use for display purposes.
DescriptionThe updated description of the portfolio.
ProviderNameThe updated name of the portfolio provider.
AddTagsThe tags to add.
RemoveTagsThe 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"
)
)
)