Skip to content

Instantly share code, notes, and snippets.

@nerdalert
Last active April 28, 2022 17:45
Show Gist options
  • Save nerdalert/e048f0bfd2c2eb7061db0ed1d4154f80 to your computer and use it in GitHub Desktop.
Save nerdalert/e048f0bfd2c2eb7061db0ed1d4154f80 to your computer and use it in GitHub Desktop.
############################################################################
aws ec2 describe-instance-types --filters "Name=instance-type,Values=c5.*" --query "InstanceTypes[].[InstanceType, NetworkInfo.NetworkPerformance]" --output table
-------------------------------------
| DescribeInstanceTypes |
+--------------+--------------------+
| c5.4xlarge | Up to 10 Gigabit |
| c5.xlarge | Up to 10 Gigabit |
| c5.12xlarge | 12 Gigabit |
| c5.9xlarge | 10 Gigabit |
| c5.24xlarge | 25 Gigabit |
| c5.metal | 25 Gigabit |
| c5.large | Up to 10 Gigabit |
| c5.2xlarge | Up to 10 Gigabit |
| c5.18xlarge | 25 Gigabit |
+--------------+--------------------+
aws ec2 describe-instance-types --filters "Name=instance-type,Values=m5.*" --query "InstanceTypes[].[InstanceType, NetworkInfo.NetworkPerformance]" --output table
-------------------------------------
| DescribeInstanceTypes |
+--------------+--------------------+
| m5.24xlarge | 25 Gigabit |
| m5.12xlarge | 10 Gigabit |
| m5.8xlarge | 10 Gigabit |
| m5.xlarge | Up to 10 Gigabit |
| m5.metal | 25 Gigabit |
| m5.4xlarge | Up to 10 Gigabit |
| m5.large | Up to 10 Gigabit |
| m5.16xlarge | 20 Gigabit |
| m5.2xlarge | Up to 10 Gigabit |
+--------------+--------------------+
aws ec2 describe-instance-types --filters "Name=instance-type,Values=m4.*" --query "InstanceTypes[].[InstanceType, NetworkInfo.NetworkPerformance]" --output table
-------------------------------
| DescribeInstanceTypes |
+--------------+--------------+
| m4.4xlarge | High |
| m4.xlarge | High |
| m4.large | Moderate |
| m4.16xlarge | 25 Gigabit |
| m4.10xlarge | 10 Gigabit |
| m4.2xlarge | High |
+--------------+--------------+
aws ec2 describe-instance-types --filters "Name=instance-type,Values=t2.*" --query "InstanceTypes[].[InstanceType, NetworkInfo.NetworkPerformance]" --output table
-----------------------------------
| DescribeInstanceTypes |
+-------------+-------------------+
| t2.2xlarge | Moderate |
| t2.micro | Low to Moderate |
| t2.large | Low to Moderate |
| t2.xlarge | Moderate |
| t2.medium | Low to Moderate |
| t2.nano | Low to Moderate |
| t2.small | Low to Moderate |
+-------------+-------------------+
aws ec2 describe-instance-types --filters "Name=instance-type,Values=t3.*" --query "InstanceTypes[].[InstanceType, NetworkInfo.NetworkPerformance]" --output table
-----------------------------------
| DescribeInstanceTypes |
+-------------+-------------------+
| t3.large | Up to 5 Gigabit |
| t3.xlarge | Up to 5 Gigabit |
| t3.medium | Up to 5 Gigabit |
| t3.2xlarge | Up to 5 Gigabit |
| t3.nano | Up to 5 Gigabit |
| t3.micro | Up to 5 Gigabit |
| t3.small | Up to 5 Gigabit |
+-------------+-------------------+
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment