Sort results from EC2 API

0

Hello,

I am starting with AWS SDK (for Go v2) and I cannot get my head wrapped around pagination - specifically I am unable to find out how do I sort list of any resource for example. It looks like DescribeInstanceTypes always return types in random order and there is literally nothing in the documentation about sort order. How pagination is useful when order is always random? I do not understand, is this only to workaround API limits/throttling? Are applications supposed to do ordering on their own?

Thanks for explanation, cheers!

lzap
已提問 2 年前檢視次數 681 次
2 個答案
2

Hello Lzap,

You can order your results in your own. For example, with the AWS CLI you can use JMESPath as it indicates the official documentation:

As an example, using AWS CLI you can order the DescribeInstanceTypes API invoking the API as:

aws ec2 describe-instance-types --query 'sort_by(InstanceTypes, &InstanceType)[].InstanceType'

Hope it helps.

Joan_B
已回答 2 年前
1

Sorting isn't supported server-side, so is done client-side after results are returned by the API (e.g. the CLI example Joan_B mentioned). You can filter server-side with some API calls by passing a Filter parameter. That, and pagination, are for coping with large numbers of records.

專家
已回答 2 年前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南