aws ec2 describe-launch-template-versions \ --launch-template-name "MyTemplateName" \ --versions 1 \ --query 'LaunchTemplateVersions[0].LaunchTemplateData' \ --output json > launch-template-config.json Use code with caution.

: Filters the output to include only the essential configuration data needed for recreation.

: Since launch templates cannot be shared directly across accounts, you must "download" the configuration from the source account and "upload" it to the destination account. describe-launch-templates - AWS Documentation

: Replace with your actual template name.

To "download" an AWS launch template typically means exporting its configuration as a JSON or YAML file for local storage, version control, or migration. While the AWS Management Console doesn't have a single "Download" button, you can use the AWS CLI to retrieve template data and save it locally. 1. How to Export a Launch Template via AWS CLI