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!

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年前

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ