AWS Security ChangesHomeSearch

AWS cli documentation change

Service: cli · 2026-07-04 · Documentation low

File: cli/latest/reference/servicecatalog/describe-provisioning-parameters.md

Summary

Added examples section showing usage of describe-provisioning-parameters command with sample input/output

Security assessment

Change adds general usage examples without addressing security vulnerabilities or weaknesses. The example output includes a launch role ARN and tag update restrictions, but these are normal operational parameters rather than security fixes.

Diff

diff --git a/cli/latest/reference/servicecatalog/describe-provisioning-parameters.md b/cli/latest/reference/servicecatalog/describe-provisioning-parameters.md
index aebdba06d..0f7fab059 100644
--- a//cli/latest/reference/servicecatalog/describe-provisioning-parameters.md
+++ b//cli/latest/reference/servicecatalog/describe-provisioning-parameters.md
@@ -15 +15 @@
-  * [AWS CLI 2.35.13 Command Reference](../../index.html) »
+  * [AWS CLI 2.35.15 Command Reference](../../index.html) »
@@ -35,0 +36 @@
+    * Examples
@@ -293,0 +295,78 @@ The formatting style for error output. By default, errors are displayed in enhan
+## Examples¶
+
+### Note
+
+To use the following examples, you must have the AWS CLI installed and configured. See the [Getting started guide](https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-getting-started.html) in the _AWS CLI User Guide_ for more information.
+
+Unless otherwise stated, all examples have unix-like quotation rules. These examples will need to be adapted to your terminal’s quoting rules. See [Using quotation marks with strings](https://docs.aws.amazon.com/cli/latest/userguide/cli-usage-parameters-quoting-strings.html) in the _AWS CLI User Guide_ .
+
+**To describe provisioning parameters**
+
+The following `describe-provisioning-parameters` example describes provisioning parameters.
+    
+    
+    aws servicecatalog describe-provisioning-parameters \
+        --product-id prod-cfrfxmraxxxxx \
+        --provisioning-artifact-id pa-7wz4cu5cxxxxx \
+        --path-id lpv3-y3fnkeslpxxxx
+    
+
+Output:
+    
+    
+    {
+        "ProvisioningArtifactParameters": [
+            {
+                "ParameterKey": "Size",
+                "ParameterType": "String",
+                "IsNoEcho": false,
+                "ParameterConstraints": {
+                    "AllowedValues": []
+                }
+            }
+        ],
+        "ConstraintSummaries": [
+            {
+                "Type": "LAUNCH"
+            }
+        ],
+        "UsageInstructions": [
+            {
+                "Type": "rules",
+                "Value": "{}"
+            },
+            {
+                "Type": "version",
+                "Value": "2010-09-09"
+            },
+            {
+                "Type": "launchAsRole",
+                "Value": "arn:aws:iam::123456789012:role/NewLaunchRole"
+            },
+            {
+                "Type": "tagUpdateOnProvisionedProduct",
+                "Value": "NOT_ALLOWED"
+            }
+        ],
+        "TagOptions": [
+            {
+                "Key": "Application Name",
+                "Values": [
+                    "Testing Tag",
+                    "Testing Tag Options"
+                ]
+            }
+        ],
+        "ProvisioningArtifactPreferences": {},
+        "ProvisioningArtifactOutputs": [
+            {
+                "Key": "pa-7wz4cu5cxxxxx",
+                "Description": ""
+            }
+        ],
+        "ProvisioningArtifactOutputKeys": []
+    }
+    
+
+For more information, see [Launching a product](https://docs.aws.amazon.com/servicecatalog/latest/userguide/enduser-launch.html) in the _AWS Service Catalog User Guide_.
+
@@ -565 +644 @@ ProvisioningArtifactOutputKeys -> (list)
-  * [AWS CLI 2.35.13 Command Reference](../../index.html) »
+  * [AWS CLI 2.35.15 Command Reference](../../index.html) »