get_aws_instance_storage_info
Retrieve detailed storage information for an AWS EC2 instance, including disk type, IOPS, and throughput, using the instance ID as input.
Instructions
获取AWS EC2实例的存储详细信息
Args:
instance_id (str): EC2实例ID
Returns:
Dict: 存储信息,包括磁盘类型、IOPS、吞吐量等
Input Schema
Name | Required | Description | Default |
---|---|---|---|
instance_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"instance_id": {
"title": "Instance Id",
"type": "string"
}
},
"required": [
"instance_id"
],
"title": "get_aws_instance_storage_infoArguments",
"type": "object"
}