[ aws . servicecatalog ]
Updates the specified portfolio.
You cannot update a product that was shared with you.
See also: AWS API Documentation
See ‘aws help’ for descriptions of global parameters.
update-portfolio
[--accept-language <value>]
--id <value>
[--display-name <value>]
[--description <value>]
[--provider-name <value>]
[--add-tags <value>]
[--remove-tags <value>]
[--cli-input-json | --cli-input-yaml]
[--generate-cli-skeleton <value>]
[--cli-auto-prompt <value>]
--accept-language
(string)
The language code.
en
- English (default)
jp
- Japanese
zh
- Chinese
--id
(string)
The portfolio identifier.
--display-name
(string)
The name to use for display purposes.
--description
(string)
The updated description of the portfolio.
--provider-name
(string)
The updated name of the portfolio provider.
--add-tags
(list)
The tags to add.
(structure)
Information about a tag. A tag is a key-value pair. Tags are propagated to the resources created when provisioning a product.
Key -> (string)
The tag key.
Value -> (string)
The value for this key.
Shorthand Syntax:
Key=string,Value=string ...
JSON Syntax:
[
{
"Key": "string",
"Value": "string"
}
...
]
--remove-tags
(list)
The tags to remove.
(string)
Syntax:
"string" "string" ...
--cli-input-json
| --cli-input-yaml
(string)
Reads arguments from the JSON string provided. The JSON string follows the format provided by --generate-cli-skeleton
. If other arguments are provided on the command line, those values will override the JSON-provided values. It is not possible to pass arbitrary binary values using a JSON-provided value as the string will be taken literally. This may not be specified along with --cli-input-yaml
.
--generate-cli-skeleton
(string)
Prints a JSON skeleton to standard output without sending an API request. If provided with no value or the value input
, prints a sample input JSON that can be used as an argument for --cli-input-json
. Similarly, if provided yaml-input
it will print a sample input YAML that can be used with --cli-input-yaml
. If provided with the value output
, it validates the command inputs and returns a sample output JSON for that command.
--cli-auto-prompt
(boolean)
Automatically prompt for CLI input parameters.
See ‘aws help’ for descriptions of global parameters.
To update a portfolio
The following update-portfolio
example updates the name of the specified portfolio.
aws servicecatalog update-portfolio \
--id port-5abcd3e5st4ei \
--display-name "New portfolio name"
Output:
{
"PortfolioDetail": {
"DisplayName": "New portfolio name",
"ProviderName": "provider",
"ARN": "arn:aws:catalog:us-west-2:123456789012:portfolio/port-5abcd3e5st4ei",
"Id": "port-5abcd3e5st4ei",
"CreatedTime": 1559665256.348
},
"Tags": []
}
PortfolioDetail -> (structure)
Information about the portfolio.
Id -> (string)
The portfolio identifier.
ARN -> (string)
The ARN assigned to the portfolio.
DisplayName -> (string)
The name to use for display purposes.
Description -> (string)
The description of the portfolio.
CreatedTime -> (timestamp)
The UTC time stamp of the creation time.
ProviderName -> (string)
The name of the portfolio provider.
Tags -> (list)
Information about the tags associated with the portfolio.
(structure)
Information about a tag. A tag is a key-value pair. Tags are propagated to the resources created when provisioning a product.
Key -> (string)
The tag key.
Value -> (string)
The value for this key.