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 Answers
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
answered 2 years ago
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.

EXPERT
answered 2 years ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions