You can describe instances using the CLI:
aws ec2 desribe-instances
and with jq you can deserialize the JSON in your terminal. For instance if you wanted a list of all your InstanceIds:
aws ec2 describe-instances | jq -r '.Reservations.[].Instances.[].InstanceId'