如何使用C#.Net获取EC2实例的所有硬件信息。
我仅获得 InstanceType ,如t2.micro等。但是随着亚马逊网站的显示,我没有获得该Instancetype的任何硬件信息。附上截图以更好地理解。
我尝试使用下面的代码,但是没有成功。
DescribeInstancesResponse describeInstancesResponse = client.DescribeInstances();
List<Reservation> reservation = describeInstancesResponse.Reservations;
var allInstance = reservation.SelectMany(x => x.Instances).ToList();
这正在检索EC2的所有信息,但它仅包含实例类型,而不包含详细信息。
请提出建议!预先感谢。
答案 0 :(得分:0)
您要获取哪种硬件信息? ec2实例元数据包含一些信息,例如mac。