[ aws . servicecatalog ]
Creates a portfolio.
A delegated admin is authorized to invoke this command.
See also: AWS API Documentation
See ‘aws help’ for descriptions of global parameters.
create-portfolio
[--accept-language <value>]
--display-name <value>
[--description <value>]
--provider-name <value>
[--tags <value>]
[--idempotency-token <value>]
[--cli-input-json | --cli-input-yaml]
[--generate-cli-skeleton <value>]
--accept-language
(string)
The language code.
en
- English (default)
jp
- Japanese
zh
- Chinese
--display-name
(string)
The name to use for display purposes.
--description
(string)
The description of the portfolio.
--provider-name
(string)
The name of the portfolio provider.
--tags
(list)
One or more tags.
(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"
}
...
]
--idempotency-token
(string)
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.
--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.
See ‘aws help’ for descriptions of global parameters.
To create a portfolio
The following create-portfolio
example creates a portfolio.
aws servicecatalog create-portfolio \
--provider-name my-provider \
--display-name my-portfolio
Output:
{
"PortfolioDetail": {
"ProviderName": "my-provider",
"DisplayName": "my-portfolio",
"CreatedTime": 1571337221.555,
"ARN": "arn:aws:catalog:us-east-2:123456789012:portfolio/port-2s6xmplq5wdh4",
"Id": "port-2s6xmplq5wdh4"
}
}
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.