1 Answer
- Newest
- Most votes
- Most comments
0
EBS IO Balance is a property of the t3.small instance not the EBS volumes. That instance type has burst IOPS of 11800, and baseline IOPS of 1000.
aws ec2 describe-instance-types --instance-types t3.small --query "InstanceTypes[*].[InstanceType, EbsInfo.EbsOptimizedSupport, EbsInfo.EbsOptimizedInfo]" --output json
[
[
"t3.small",
{
"BaselineBandwidthInMbps": 174,
"BaselineThroughputInMBps": 21.75,
"BaselineIops": 1000,
"MaximumBandwidthInMbps": 2085,
"MaximumThroughputInMBps": 260.625,
"MaximumIops": 11800
}
]
]
Relevant content
- asked 3 years ago
- asked a year ago
- AWS OFFICIALUpdated 2 years ago
- AWS OFFICIALUpdated 8 months ago
- AWS OFFICIALUpdated 8 months ago
- AWS OFFICIALUpdated 4 years ago